/* ==========================================================================
   THE EXPAT CHIRO - COMING SOON PAGE
   Minimal single-page design
   ========================================================================== */

/* CSS VARIABLES */
:root {
    --stormy-teal: #006466;
    --dark-teal: #065a60;
    --deep-teal: #0b525b;
    --charcoal-blue: #1b3a4b;
    --space-blue: #212f45;
    --space-indigo: #272640;
    --midnight-violet: #312244;
    --deep-violet: #3e1f47;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.7);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--charcoal-blue) 0%, var(--midnight-violet) 100%);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* CONTAINER */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    text-align: center;
    position: relative;
}

/* CONTENT */
.content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-out;
}

h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* DIVIDER */
.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--stormy-teal), transparent);
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--stormy-teal);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-top: 1rem;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

/* FOOTER NOTE */
.footer-note {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.footer-note p {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    font-weight: 300;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h1 {
        letter-spacing: 4px;
    }

    h2 {
        letter-spacing: 2px;
    }

    .footer-note {
        bottom: 2rem;
    }
}

/* Landscape Phone Optimization */
@media (max-width: 1023px) and (max-height: 500px) {
    .container {
        padding: 1rem 5%;
    }

    h1 {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .divider {
        margin: 0 auto 1.5rem;
    }

    h2 {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
    }

    .tagline {
        font-size: clamp(0.85rem, 2vw, 1.1rem);
    }

    .footer-note {
        bottom: 1rem;
    }

    .footer-note p {
        font-size: 0.7rem;
    }
}
