* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #8B7332;
    --gold-light: #C5A55A;
    --gold-glow: #D4AF37;
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --white: #FAFAF8;
    --cream: #F5F0E8;
    --teal: #1A8A7D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== UTILITIES ===== */
.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 165, 90, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.btn-secondary:hover {
    background: var(--gold-light);
    color: var(--black);
}

.btn-gold {
    background: transparent;
    border: 2px solid var(--gold-light);
    color: var(--gold-light);
}

.btn-gold:hover {
    background: var(--gold-light);
    color: var(--black);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 165, 90, 0.15);
}

.nav-logo img {
    height: 45px;
    width: auto;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== SECTION 1: HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('public/images/event-banner-less.png') center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-glow), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-dates {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 2.5rem;
}

.hero-dates span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

/* ===== SECTION 2: PRODUCTIONS CAROUSEL ===== */
.productions {
    padding: 5rem 2rem;
    background: var(--black-light);
}

.carousel {
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}

.carousel::-webkit-scrollbar {
    height: 6px;
}

.carousel::-webkit-scrollbar-track {
    background: transparent;
}

.carousel::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    padding: 0 2rem;
    min-width: max-content;
}

.show-card {
    width: 260px;
    height: 360px;
    border-radius: 16px;
    background: var(--accent);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.show-card:hover {
    transform: scale(1.03);
}

.show-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.show-year {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.show-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

/* ===== SECTION 3: ABOUT ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    background: var(--black);
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    gap: 1.2rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.8;
}

.about-motto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light) !important;
    font-size: 1.1rem !important;
    border-left: 3px solid var(--gold);
    padding-left: 1rem;
}

/* ===== SECTION 4: TICKETS ===== */
.tickets {
    padding: 5rem 2rem;
    background: var(--black-light);
}

.ticket-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 165, 90, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ticket-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
}

.ticket-date {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.ticket-venue {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.ticket-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.ticket-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.ticket-phone {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

/* ===== SECTION 5: MISSION ===== */
.mission {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.mission-pillars {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pillar-icon {
    font-size: 2rem;
}

.pillar h4 {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ===== SECTION 6: FOOTER ===== */
.footer {
    background: #000;
    padding: 4rem 2rem 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: var(--gold-light);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.8rem;
}

.footer-brand {
    text-align: right;
}

.footer-logo {
    width: 80px;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    max-width: 240px;
    margin-left: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--gold-light);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-text {
        padding: 3rem 2rem;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-tagline {
        margin-left: 0;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        width: 100px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ticket-cards {
        flex-direction: column;
        align-items: center;
    }

    .mission-pillars {
        gap: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
