/* ============================================
   RESPONSIVE - Media Queries (Mobile First)
   ============================================ */

/* --- Mobile: default styles are mobile-first --- */

/* Nav hamburger visible on mobile */
.nav__hamburger {
    display: flex;
}

/* Mobile menu - full screen overlay */
.nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
}

.nav__menu--open {
    opacity: 1;
    pointer-events: auto;
}

.nav__menu--open .nav__link {
    font-size: var(--text-xl);
}

/* Hero mobile adjustments */
.hero__title {
    font-size: var(--text-3xl);
}

.hero__title-accent {
    font-size: 0.45em;
    letter-spacing: 0.3em;
}

.hero__tagline {
    font-size: var(--text-lg);
}

.hero__cta {
    padding: 14px 36px;
    font-size: var(--text-xs);
}

/* Section spacing mobile */
.section {
    padding: var(--space-3xl) 0;
}

.section__title {
    font-size: var(--text-2xl);
}

/* About mobile */
.about__image {
    height: 350px;
}

.about__stats {
    gap: var(--space-lg);
    justify-content: center;
}

.about__stat-number {
    font-size: var(--text-2xl);
}

/* Footer mobile */
.footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer__links {
    justify-content: center;
}

/* ==========================================
   TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__title-accent {
        font-size: 0.5em;
    }

    .hero__tagline {
        font-size: var(--text-xl);
    }

    .section__title {
        font-size: var(--text-3xl);
    }

    /* Shows: 2 columns */
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cast: 3 columns */
    .cast-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery: 3 columns */
    .gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Contact: 2 columns */
    .contact {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: start;
    }

    .contact-info {
        padding-top: var(--space-lg);
    }
}

/* ==========================================
   DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    /* Nav: inline links, no hamburger */
    .nav__hamburger {
        display: none;
    }

    .nav__menu {
        position: static;
        flex-direction: row;
        background: none;
        opacity: 1;
        pointer-events: auto;
        gap: var(--space-xl);
    }

    .nav__link {
        font-size: var(--text-sm);
    }

    /* Hero: full size */
    .hero__title {
        font-size: var(--text-hero);
    }

    .hero__tagline {
        font-size: var(--text-2xl);
    }

    .hero__cta {
        padding: 16px 48px;
        font-size: var(--text-sm);
    }

    /* Section spacing */
    .section {
        padding: var(--space-4xl) 0;
    }

    .section__title {
        font-size: var(--text-4xl);
    }

    /* About: 2 columns */
    .about {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .about__image {
        height: 550px;
    }

    /* Shows: 3 columns */
    .shows-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Cast: 3 columns with bigger photos */
    .cast-member__photo-wrapper {
        width: 180px;
        height: 180px;
    }

    /* Gallery: 4 columns */
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Footer */
    .footer__content {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

/* ==========================================
   LARGE DESKTOP (1440px+)
   ========================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1300px;
    }

    .hero__title {
        font-size: 6rem;
    }

    /* Cast: 6 columns for all members */
    .cast-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .cast-member__photo-wrapper {
        width: 200px;
        height: 200px;
    }
}

/* ==========================================
   CURTAIN MOBILE ADJUSTMENTS
   ========================================== */
@media (max-width: 767px) {
    .curtain-panel {
        /* Faster animation on mobile */
        transition-duration: 1.5s;
    }

    .curtain-valance {
        height: 35px;
    }

    .curtain-valance::before {
        bottom: -10px;
        height: 10px;
    }
}
