/* 
   Amariah Morales - Main Stylesheet
   Consolidated from multiple HTML files
*/

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ HEADER & NAVIGATION ============ */
header {
    background: rgba(10, 14, 39, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(219, 39, 119, 0.2);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo svg {
    width: 40px;
    height: 40px;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
    font-size: 14px;
    font-weight: 600;
}

nav a:hover {
    color: #db2777;
}

/* ============ PAGE HEADERS (Non-Home) ============ */
.page-header {
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============ HERO SECTION (Home Only) ============ */
.hero {
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: headlineSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}

.hero h1 .accent {
    color: #db2777;
}

.hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: subheadlineSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

/* ============ BUTTONS & CTAs ============ */
.cta-btn,
.submit-btn,
.btn {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #db2777 0%, #e63b8f 100%);
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(219, 39, 119, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Pulse animation only for hero CTA */
.hero .cta-btn {
    animation: buttonPulse 1.2s ease-in-out 0.4s infinite, buttonSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.submit-btn {
    animation: buttonSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.cta-btn::before,
.submit-btn::before,
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero .cta-btn::before,
.btn::before {
    animation: buttonShine 2s ease-in-out infinite;
}

.cta-btn:hover,
.submit-btn:hover,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(219, 39, 119, 0.6);
}

.btn:active {
    transform: translateY(0);
}

/* ============ GALLERY ============ */
.gallery {
    padding: 0px 20px;
}

.gallery h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    background: rgba(219, 39, 119, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-btn {
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #db2777;
    background: transparent;
    color: #db2777;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: #db2777;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============ FEATURES ============ */
.features {
    padding: 80px 20px;
    background: rgba(26, 31, 58, 0.5);
}

.features h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(219, 39, 119, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(219, 39, 119, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #db2777;
    background: rgba(219, 39, 119, 0.1);
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #db2777;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* ============ CONTENT SECTIONS (About) ============ */
.content-section {
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #db2777;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 800px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(219, 39, 119, 0.3);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(219, 39, 119, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(219, 39, 119, 0.2);
}

.value-card h3 {
    color: #db2777;
    margin-bottom: 15px;
    font-size: 20px;
}

.value-card p {
    font-size: 15px;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: rgba(219, 39, 119, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(219, 39, 119, 0.2);
    text-align: center;
}

.contact-card h3 {
    color: #db2777;
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.contact-card a {
    color: #db2777;
    text-decoration: none;
    margin-top: 15px;
    display: block;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #e63b8f;
}

.form-section {
    background: rgba(219, 39, 119, 0.05);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(219, 39, 119, 0.2);
    margin-bottom: 80px;
}

.form-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    color: #db2777;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(219, 39, 119, 0.3);
    border-radius: 6px;
    background: rgba(10, 14, 39, 0.5);
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #db2777;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============ LEGAL CONTENT (Disclaimer/Privacy/Terms) ============ */
.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 40px 0 20px 0;
    color: #db2777;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px 0;
    color: rgba(255, 255, 255, 0.9);
}

.legal-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.warning-box {
    background: rgba(219, 39, 119, 0.1);
    border-left: 4px solid #db2777;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

/* ============ SPECIAL EXAMPLES (Index) ============ */
.section {
    margin-bottom: 60px;
}

.section-title {
    color: #db2777;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.example-box {
    background: rgba(219, 39, 119, 0.05);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #db2777;
    margin-bottom: 30px;
}

.headline-1 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.headline-2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.headline-2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.headline-3 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
}

.red-accent {
    color: #db2777;
    display: inline;
}

.subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    font-weight: 500;

    margin: 15px 0px;
}

.code-block {
    background: #0a0e27;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid rgba(219, 39, 119, 0.2);
}

.code-block code {
    color: #64c8ff;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.code-label {
    color: #db2777;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* ============ FOOTER ============ */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 40px 20px;
    border-top: 1px solid rgba(219, 39, 119, 0.2);
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #db2777;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #db2777;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(219, 39, 119, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============ ANIMATIONS ============ */
@keyframes headlineSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headlineSweep {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes subheadlineSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(219, 39, 119, 0.4), 0 0 0 0 rgba(219, 39, 119, 0.7);
    }

    50% {
        box-shadow: 0 8px 24px rgba(219, 39, 119, 0.6), 0 0 0 15px rgba(219, 39, 119, 0);
    }
}

@keyframes buttonSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }
}

/* ============ MARKETING ANIMATION STYLES ============ */
.marketing-hero {
    width: 100%;
    max-width: 1920px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
}

.background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.city-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 31, 58, 0.7) 0%,
            rgba(10, 14, 39, 0.5) 50%,
            rgba(8, 12, 32, 0.9) 100%);
    pointer-events: none;
}

.office-blur {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at 50% 50%, rgba(219, 39, 119, 0.08), transparent 70%);
    filter: blur(80px);
    animation: officeShift 8s ease-in-out infinite;
}

.particles {
    position: absolute;
    inset: 0;
    opacity: 0.3;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.seo-graph-container {
    position: absolute;
    right: 15%;
    top: 20%;
    width: 280px;
    height: 200px;
    opacity: 0.15;
    z-index: 0;
}

.graph-line {
    stroke: #db2777;
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation: drawLine 3s ease-in-out 0.5s infinite;
}

.headline {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-transform: uppercase;
    animation: headlineSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both !important;
}

.headline-sweep {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.headline-sweep::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: headlineSweep 2s ease-in-out 0.8s infinite !important;
}

.cta-button {
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #db2777 0%, #e63b8f 100%);
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(219, 39, 119, 0.4);
    animation: buttonPulse 1.2s ease-in-out 0.4s infinite, buttonSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both !important;
    transition: all 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: buttonShine 2s ease-in-out 0.8s infinite;
}

.character-section {
    position: relative;
    z-index: 15;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    position: relative;
    width: 450px;
    height: 600px;
    animation: characterFloat 3s ease-in-out infinite !important;
}

.character {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 20px 40px rgba(219, 39, 119, 0.2));
}

.laptop-glow {
    position: absolute;
    bottom: 100px;
    right: 20px;
    width: 120px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(100, 200, 255, 0.4), transparent 70%);
    filter: blur(20px);
    animation: laptopPulse 2s ease-in-out infinite;
    z-index: 5;
}

/* ============ ANIMATION DEMO STYLES ============ */
.demo-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(26, 31, 58, 0.5);
    border-radius: 12px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    margin: 20px auto;
}

/* ============ EXTRA ANIMATIONS ============ */
@keyframes officeShift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes drawLine {

    0%,
    5% {
        stroke-dasharray: 0 300;
        stroke-dashoffset: 0;
    }

    40%,
    100% {
        stroke-dasharray: 300 0;
        stroke-dashoffset: 0;
    }
}

@keyframes characterFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes laptopPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Marketing Hero Media Queries */
@media (max-width: 1400px) {
    .marketing-hero {
        padding: 40px 60px;
        flex-direction: column;
        gap: 40px;
    }

    .character-container {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .marketing-hero {
        padding: 30px 20px;
        aspect-ratio: auto;
    }

    .character-container {
        width: 280px;
        height: 350px;
    }
}