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

:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --burgundy: #800020;
    --deep-burgundy: #5c0016;
    --cream: #faf6f0;
    --dark-cream: #e8dcc8;
    --charcoal: #2a2a2a;
    --black: #0d0d0d;
}

body {
    font-family: 'Georgia', 'Garamond', serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--deep-burgundy) 100%);
    color: var(--cream);
    line-height: 1.6;
    min-height: 100vh;
}

/* Marquee Border */
.marquee-border {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--gold);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.6);
}

.marquee-lights {
    height: 100%;
    background: linear-gradient(90deg,
        var(--dark-gold) 0%,
        var(--gold) 25%,
        var(--dark-gold) 50%,
        var(--gold) 75%,
        var(--dark-gold) 100%);
    background-size: 200% 100%;
    animation: marqueeShine 3s linear infinite;
}

@keyframes marqueeShine {
    0% { background-position: 200% 0; }
    100% { background-position: 0 0; }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, var(--deep-burgundy) 0%, var(--black) 100%);
}

.curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    background:
        linear-gradient(90deg,
            var(--burgundy) 0%,
            var(--deep-burgundy) 50%,
            var(--burgundy) 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
    transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.curtain-left {
    left: 0;
    transform-origin: left;
    background:
        repeating-linear-gradient(90deg,
            var(--burgundy) 0px,
            var(--deep-burgundy) 40px,
            var(--burgundy) 80px);
}

.curtain-right {
    right: 0;
    transform-origin: right;
    background:
        repeating-linear-gradient(90deg,
            var(--burgundy) 0px,
            var(--deep-burgundy) 40px,
            var(--burgundy) 80px);
}

body.loaded .curtain-left {
    transform: translateX(-100%);
}

body.loaded .curtain-right {
    transform: translateX(100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.9);
    animation: heroFadeIn 1s ease-out 1s forwards;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.3),
        3px 3px 0 var(--dark-gold),
        6px 6px 0 var(--burgundy);
    font-family: 'Georgia', serif;
    line-height: 1;
    margin-bottom: 0.2em;
}

.tagline {
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 0.5em;
    color: var(--dark-cream);
    text-transform: uppercase;
    font-weight: 300;
    margin-top: -1rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--cream);
    margin-top: 2rem;
    font-style: italic;
    letter-spacing: 0.1em;
}

/* Navigation */
.navigation {
    position: sticky;
    top: 8px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
    border-bottom: 3px solid var(--gold);
    border-top: 3px solid var(--gold);
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-btn {
    background: transparent;
    color: var(--dark-cream);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    letter-spacing: 0.15em;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-btn:last-child {
    border-right: none;
}

.nav-btn:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-btn.active {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    display: none;
    animation: fadeInSection 0.6s ease-out;
}

.section.active {
    display: block;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--gold);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.art-deco-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    position: relative;
}

.art-deco-divider::before,
.art-deco-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.8rem;
}

.art-deco-divider::before {
    left: -20px;
}

.art-deco-divider::after {
    right: -20px;
}

/* Films Grid */
.films-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.film-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    border: 2px solid var(--dark-gold);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.film-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.film-poster {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.poster-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy), var(--deep-burgundy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--gold);
    position: relative;
}

.poster-placeholder::before {
    content: '🎬';
    font-size: 5rem;
    opacity: 0.3;
}

.poster-casablanca { background: linear-gradient(135deg, #1a1a1a, #4a4a4a); }
.poster-vertigo { background: linear-gradient(135deg, #2d5016, #1a3010); }
.poster-singin { background: linear-gradient(135deg, #ffcc00, #ff9900); }
.poster-sunset { background: linear-gradient(135deg, #4a2c2a, #2a1a1a); }
.poster-maltese { background: linear-gradient(135deg, #1a1a2a, #3a3a4a); }
.poster-philadelphia { background: linear-gradient(135deg, #6a5a4a, #3a2a2a); }

.film-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.film-info {
    padding: 1.5rem;
}

.film-info h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.film-meta {
    color: var(--dark-cream);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.film-description {
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.showtimes {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.time {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--dark-gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.05);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(128, 0, 32, 0.1) 100%);
    border: 2px solid var(--dark-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
}

.location-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
}

.location-address {
    color: var(--dark-cream);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.location-details {
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.feature {
    color: var(--dark-cream);
    font-size: 0.9rem;
}

/* Heritage Section */
.heritage-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.heritage-story {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.heritage-story:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
    transform: translateX(5px);
}

.heritage-year {
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
}

.heritage-story h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-weight: 400;
}

.heritage-story p {
    color: var(--dark-cream);
    line-height: 1.8;
}

.heritage-quote {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid var(--gold);
    border-radius: 8px;
    margin-top: 2rem;
}

.heritage-quote blockquote {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.heritage-quote cite {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-cream);
    font-style: normal;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--black) 0%, var(--deep-burgundy) 100%);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.footer-section p {
    color: var(--dark-cream);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--dark-cream);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 5rem;
    }

    .nav-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .films-grid,
    .locations-grid,
    .heritage-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 4rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: 1rem;
    }

    .navigation {
        flex-direction: column;
    }

    .nav-btn {
        border-right: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-btn:last-child {
        border-bottom: none;
    }
}
