/* ============================================
   ABHITHA Movie Website - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --gold: #D4AF37;
    --gold-600: #B5952F;
    --gold-dark: #9A7B2A;
    --cinema-900: #0a0a0a;
    --cinema-800: #121212;
    --cinema-700: #1a1a1a;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-30: rgba(255, 255, 255, 0.3);
    --white-10: rgba(255, 255, 255, 0.1);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Figtree', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cinema-900);
    color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-white-80 { color: var(--white-80); }
.text-white-70 { color: var(--white-70); }
.text-white-60 { color: var(--white-60); }
.text-white-50 { color: var(--white-50); }

.bg-cinema-900 { background-color: var(--cinema-900); }
.bg-cinema-800 { background-color: var(--cinema-800); }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.2em; }

.hidden { display: none !important; }

[x-cloak] { display: none !important; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav--hidden {
    transform: translateY(-100%);
}

.nav--scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-main {
    background: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.7), transparent);
    backdrop-filter: blur(4px);
}

.nav-solid {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--white-10);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

@media (min-width: 640px) {
    .nav-container { height: 100px; }
}

@media (min-width: 1024px) {
    .nav-container { height: 110px; }
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

@media (min-width: 640px) {
    .nav-logo-img { height: 80px; }
}

@media (min-width: 1024px) {
    .nav-logo-img { height: 90px; }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links { display: flex; }
}

@media (min-width: 1024px) {
    .nav-links { gap: 2rem; }
}

.nav-link {
    color: var(--white-80);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

@media (min-width: 1024px) {
    .nav-link { font-size: 0.875rem; }
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-btn {
    background-color: var(--gold);
    color: var(--cinema-900);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
    .nav-btn { padding: 0.5rem 1.5rem; font-size: 0.875rem; }
}

.nav-btn:hover {
    background-color: var(--gold-600);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    margin-right: -0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
}

@media (min-width: 768px) {
    .mobile-menu-btn { display: none; }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.mobile-menu {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 1rem;
}

[x-cloak] {
    display: none !important;
}

@media (min-width: 768px) {
    .mobile-menu { display: none !important; }
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    display: block;
    color: var(--white-80);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--gold);
}

.mobile-menu-btn-primary {
    display: block;
    background-color: var(--gold);
    color: var(--cinema-900);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn-primary:hover {
    background-color: var(--gold-600);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    background-color: var(--cinema-900);
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
}

.hero .swiper {
    height: 100%;
}

.hero .swiper-wrapper {
    height: 100%;
}

.hero .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center; /* Slightly right on mobile */
}

@media (min-width: 768px) {
    .hero-slide-bg img {
        object-position: right center;
    }
}

/* Mobile: Gradient from bottom for better text readability */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.85) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 10;
}

/* Tablet and Desktop: Gradient from left */
@media (min-width: 768px) {
    .hero-slide-overlay {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.85) 25%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 85%,
            transparent 100%
        );
    }
}

/* Additional top/bottom vignette for cinematic feel */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.7) 100%);
    z-index: 5;
}

/* Mobile: Content at bottom */
.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end; /* Align to bottom on mobile */
    justify-content: flex-start;
    z-index: 20;
    padding: 0 1rem 6rem 1rem; /* Bottom padding for pagination dots */
    padding-top: 100px; /* Space for navbar */
}

/* Tablet: Move to center-left */
@media (min-width: 768px) {
    .hero-content {
        align-items: center;
        padding: 120px 0 0 8%;
    }
}

/* Desktop: Left aligned with more padding */
@media (min-width: 1024px) {
    .hero-content {
        padding-left: 10%;
        padding-top: 130px;
    }
}

.hero-content-inner {
    max-width: 100%;
    text-align: left;
}

@media (min-width: 768px) {
    .hero-content-inner {
        max-width: 550px;
    }
}

@media (min-width: 1024px) {
    .hero-content-inner {
        max-width: 600px;
    }
}

.hero-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-subtitle {
        letter-spacing: 0.2em;
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        letter-spacing: 0.3em;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

@media (min-width: 640px) {
    .hero-title { 
        font-size: 2.75rem; 
        margin-bottom: 1rem; 
    }
}

@media (min-width: 768px) {
    .hero-title { 
        font-size: 4rem;
        margin-bottom: 1.5rem; 
    }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 5rem; }
}

@media (min-width: 1280px) {
    .hero-title { font-size: 6rem; }
}

.hero-description {
    color: var(--white-80);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    max-width: 90%;
}

@media (min-width: 640px) {
    .hero-description { 
        font-size: 1rem; 
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .hero-description { 
        font-size: 1.125rem; 
        margin-bottom: 2rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    .hero-description { font-size: 1.25rem; }
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (min-width: 640px) {
    .hero-buttons { 
        gap: 1rem;
        flex-wrap: nowrap;
    }
}

/* Mobile button adjustments */
.hero-buttons .btn {
    padding: 0.625rem 1rem;
    font-size: 0.65rem;
    flex: 1;
    min-width: 0;
}

@media (min-width: 640px) {
    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.75rem;
        flex: none;
    }
}

@media (min-width: 768px) {
    .hero-buttons .btn {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

@media (min-width: 640px) {
    .btn { padding: 1rem 2rem; font-size: 0.875rem; }
}

.btn-primary {
    background-color: var(--gold);
    color: var(--cinema-900);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: var(--gold-600);
    border-color: var(--gold-600);
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background-color: var(--gold);
    color: var(--cinema-900);
}

.btn-link {
    background: none;
    border: none;
    color: var(--gold);
    padding: 0;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--white);
}

.btn svg {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .btn svg { width: 20px; height: 20px; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .section { padding: 5rem 0; }
}

@media (min-width: 768px) {
    .section { padding: 7rem 0; }
}

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

@media (min-width: 640px) {
    .section-header { margin-bottom: 4rem; }
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .section-subtitle { 
        letter-spacing: 0.3em;
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.25rem; }
}

@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 3.75rem; }
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ============================================
   TRAILER SECTION
   ============================================ */
.trailer-container {
    max-width: 1024px;
    margin: 0 auto;
}

.trailer-wrapper {
    position: relative;
}

.trailer-video {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-900));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-10);
}

/* HTML5 Video Player Styles */
.trailer-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
}

.trailer-video-player::-webkit-media-controls-panel {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.trailer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.trailer-play-btn {
    margin-bottom: 1.5rem;
    cursor: pointer;
}

@media (min-width: 640px) {
    .trailer-play-btn { margin-bottom: 2rem; }
}

.trailer-play-outer {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

@media (min-width: 640px) {
    .trailer-play-outer { width: 96px; height: 96px; }
}

@media (min-width: 768px) {
    .trailer-play-outer { width: 112px; height: 112px; }
}

.trailer-play-outer:hover {
    background-color: rgba(212, 175, 55, 0.3);
}

.trailer-play-inner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

@media (min-width: 640px) {
    .trailer-play-inner { width: 80px; height: 80px; }
}

@media (min-width: 768px) {
    .trailer-play-inner { width: 96px; height: 96px; }
}

.trailer-play-outer:hover .trailer-play-inner {
    transform: scale(1.1);
}

.trailer-play-inner svg {
    width: 24px;
    height: 24px;
    color: var(--cinema-900);
    margin-left: 4px;
}

@media (min-width: 640px) {
    .trailer-play-inner svg { width: 32px; height: 32px; }
}

@media (min-width: 768px) {
    .trailer-play-inner svg { width: 40px; height: 40px; }
}

.trailer-frame {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    z-index: -1;
    display: none;
}

@media (min-width: 640px) {
    .trailer-frame { display: block; }
}

.trailer-tagline {
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .trailer-tagline { margin-top: 3rem; }
}

.trailer-tagline-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .trailer-tagline-text { font-size: 1.5rem; }
}

@media (min-width: 768px) {
    .trailer-tagline-text { font-size: 1.875rem; }
}

.trailer-description {
    color: var(--white-70);
    font-size: 1rem;
    max-width: 768px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .trailer-description { font-size: 1.125rem; }
}

.trailer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .trailer-buttons { flex-direction: row; }
}

/* Movie Stats */
.movie-stats {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--white-10);
}

@media (min-width: 640px) {
    .movie-stats { margin-top: 5rem; }
}

.movie-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .movie-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.movie-stat-label {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.movie-stat-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
}

@media (min-width: 640px) {
    .movie-stat-value { font-size: 1.25rem; }
}

/* ============================================
   CAST SECTION
   ============================================ */
.cast-slider {
    padding-bottom: 3rem;
}

.cast-card {
    position: relative;
}

.cast-card-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-800));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: border-color 0.3s ease;
}

.cast-card:hover .cast-card-image {
    border-color: rgba(212, 175, 55, 0.5);
}

.cast-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.cast-card-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cast-card-fallback svg {
    width: 48px;
    height: 48px;
    color: rgba(212, 175, 55, 0.3);
}

.cast-card-info {
    margin-top: 0.75rem;
    text-align: center;
}

.cast-card-name {
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .cast-card-name { font-size: 1rem; }
}

.cast-card-role {
    color: rgba(212, 175, 55, 0.8);
    font-size: 0.75rem;
}

@media (min-width: 640px) {
    .cast-card-role { font-size: 0.875rem; }
}

.cast-view-all {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
    position: relative;
    cursor: pointer;
}

.gallery-item-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-900));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: border-color 0.3s ease;
}

.gallery-item:hover .gallery-item-image {
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

@media (min-width: 640px) {
    .gallery-item-overlay svg { width: 32px; height: 32px; }
}

.gallery-item-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-fallback span {
    font-family: var(--font-serif);
    color: var(--white-10);
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    .gallery-item-fallback span { font-size: 2.5rem; }
}

.gallery-item-featured .gallery-item-fallback span {
    font-size: 2.5rem;
}

@media (min-width: 640px) {
    .gallery-item-featured .gallery-item-fallback span { font-size: 3.75rem; }
}

.gallery-view-all {
    text-align: center;
    margin-top: 2.5rem;
}

@media (min-width: 640px) {
    .gallery-view-all { margin-top: 3rem; }
}

/* ============================================
   PAGE HERO BANNER
   ============================================ */
.page-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
    background-color: var(--cinema-800);
    overflow: hidden;
}

@media (min-width: 640px) {
    .page-hero { padding-top: 140px; padding-bottom: 5rem; }
}

@media (min-width: 1024px) {
    .page-hero { padding-top: 160px; padding-bottom: 6rem; }
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .page-hero-title { font-size: 3rem; }
}

@media (min-width: 768px) {
    .page-hero-title { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
    .page-hero-title { font-size: 4.5rem; }
}

.page-hero-description {
    color: var(--white-70);
    font-size: 1rem;
    max-width: 672px;
    margin: 0 auto;
    margin-top: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .page-hero-description { font-size: 1.125rem; }
}

/* ============================================
   DIRECTOR/ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.director-photo {
    position: relative;
}

.director-photo-inner {
    aspect-ratio: 3/4;
    max-width: 448px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-900));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-10);
}

.director-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.director-photo-frame {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    z-index: -1;
    display: none;
}

@media (min-width: 640px) {
    .director-photo-frame { display: block; }
}

.director-bio-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .director-bio-subtitle { font-size: 0.875rem; }
}

.director-bio-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .director-bio-title { font-size: 2.25rem; }
}

@media (min-width: 768px) {
    .director-bio-title { font-size: 3rem; }
}

.director-bio-divider {
    width: 64px;
    height: 4px;
    background-color: var(--gold);
    margin-bottom: 2rem;
}

.director-bio-text {
    color: var(--white-80);
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .director-bio-text { font-size: 1.125rem; }
}

.director-bio-text p {
    margin-bottom: 1.25rem;
}

.director-bio-text p:last-child {
    margin-bottom: 0;
}

.director-bio-highlight {
    color: var(--gold);
    font-weight: 500;
}

.director-achievements {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--white-10);
}

.director-achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.director-achievement-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

@media (min-width: 640px) {
    .director-achievement-value { font-size: 1.875rem; }
}

.director-achievement-label {
    color: var(--white-60);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================
   FILM DETAILS
   ============================================ */
.film-details-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .film-details-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.film-poster {
    position: relative;
}

.film-poster-inner {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-900));
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--white-10);
}

.film-poster-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.film-poster-frame {
    position: absolute;
    inset: -1rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    z-index: -1;
    display: none;
}

@media (min-width: 640px) {
    .film-poster-frame { display: block; }
}

.film-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.film-info-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .film-info-title { font-size: 2.25rem; }
}

.film-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.film-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--white-10);
}

.film-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.film-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.film-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.film-info-label {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.film-info-value {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   SYNOPSIS PAGE
   ============================================ */
.synopsis-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .synopsis-quote { font-size: 1.5rem; margin-bottom: 4rem; }
}

@media (min-width: 768px) {
    .synopsis-quote { font-size: 1.875rem; }
}

.synopsis-part {
    margin-bottom: 3rem;
}

.synopsis-part-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.synopsis-part-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--gold);
    flex-shrink: 0;
}

.synopsis-part-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

@media (min-width: 640px) {
    .synopsis-part-title { font-size: 1.875rem; }
}

.synopsis-part-content {
    padding-left: 0;
    color: var(--white-80);
    font-size: 1rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .synopsis-part-content { padding-left: 4rem; font-size: 1.125rem; }
}

.synopsis-part-content p {
    margin-bottom: 1.5rem;
}

.synopsis-part-content p:last-child {
    margin-bottom: 0;
}

.synopsis-highlight {
    color: var(--white);
    font-weight: 600;
}

.synopsis-gold-highlight {
    color: var(--gold);
    font-weight: 600;
}

.synopsis-quote-block {
    border-left: 4px solid var(--gold);
    padding-left: 1.5rem;
    font-style: italic;
    color: rgba(212, 175, 55, 0.9);
}

.synopsis-ending {
    background-color: var(--cinema-800);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (min-width: 640px) {
    .synopsis-ending { padding: 2.5rem; }
}

.synopsis-ending-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .synopsis-ending-title { font-size: 1.875rem; }
}

.synopsis-ending-text {
    color: var(--white-80);
    font-size: 1rem;
    line-height: 1.8;
}

@media (min-width: 640px) {
    .synopsis-ending-text { font-size: 1.125rem; }
}

.synopsis-ending-text p {
    margin-bottom: 1.5rem;
}

.synopsis-ending-finale {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 2rem;
}

/* ============================================
   CAST PAGE
   ============================================ */
.cast-section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cast-section-title { font-size: 1.875rem; }
}

.cast-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .cast-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
    .cast-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.cast-grid-supporting {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
    .cast-grid-supporting { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .cast-grid-supporting { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
    .cast-grid-supporting { grid-template-columns: repeat(6, 1fr); }
}

/* Crew Section */
.crew-section {
    background-color: var(--cinema-800);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--white-10);
}

@media (min-width: 640px) {
    .crew-section { padding: 3rem; }
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .crew-grid { grid-template-columns: repeat(4, 1fr); }
}

.crew-member {
    text-align: center;
}

.crew-member-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-900));
    border: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.crew-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crew-member-photo svg {
    width: 32px;
    height: 32px;
    color: rgba(212, 175, 55, 0.5);
}

.crew-member-role {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.crew-member-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
}

.crew-additional {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--white-10);
}

.crew-additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .crew-additional-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .crew-additional-grid { grid-template-columns: repeat(6, 1fr); }
}

.crew-additional-role {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.crew-additional-name {
    color: var(--white);
    font-size: 0.875rem;
}

/* Crew Grid for 2 columns (Director & Producer) */
.crew-grid-2 {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .crew-grid-2 { gap: 6rem; }
}

/* Premium Crew Credits */
.crew-credits {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--white-10);
    text-align: center;
}

.crew-credits-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .crew-credits-row {
        gap: 1rem 3rem;
        margin-bottom: 1rem;
    }
}

.crew-credit {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}

.crew-credit-role {
    color: var(--white-60);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .crew-credit-role { font-size: 0.75rem; }
}

.crew-credit-name {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .crew-credit-name { font-size: 1rem; }
}

@media (min-width: 1024px) {
    .crew-credit-name { font-size: 1.1rem; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .gallery-filters { gap: 1rem; margin-bottom: 4rem; }
}

.gallery-filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    color: var(--gold);
}

@media (min-width: 640px) {
    .gallery-filter-btn { padding: 0.75rem 1.5rem; font-size: 0.875rem; }
}

.gallery-filter-btn:hover {
    border-color: var(--gold);
}

.gallery-filter-btn.active {
    background-color: var(--gold);
    color: var(--cinema-900);
    border-color: var(--gold);
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .gallery-category-title { font-size: 1.875rem; }
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .gallery-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 1024px) {
    .gallery-page-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-page-item {
    position: relative;
    cursor: pointer;
}

.gallery-page-item-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-800));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: border-color 0.3s ease;
}

.gallery-page-item:hover .gallery-page-item-image {
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-page-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-posters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .gallery-posters-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
    .gallery-posters-grid { grid-template-columns: repeat(5, 1fr); }
}

.gallery-poster-item {
    position: relative;
    cursor: pointer;
}

.gallery-poster-item-image {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-800));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: border-color 0.3s ease;
}

.gallery-poster-item:hover .gallery-poster-item-image {
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-poster-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-locations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .gallery-locations-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-location-item {
    position: relative;
    cursor: pointer;
}

.gallery-location-item-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--cinema-700), var(--cinema-800));
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--white-10);
    transition: border-color 0.3s ease;
}

.gallery-location-item:hover .gallery-location-item-image {
    border-color: rgba(212, 175, 55, 0.5);
}

.gallery-location-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent, transparent);
    border-radius: 8px;
}

.gallery-location-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.gallery-location-label {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.gallery-location-name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
}

/* ============================================
   PRODUCTION TEAM SECTION
   ============================================ */
.production-team {
    background-color: var(--cinema-800);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--white-10);
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .production-team { padding: 3rem; margin-bottom: 5rem; }
}

.production-team-title {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .production-team-title { font-size: 2.25rem; }
}

/* ============================================
   THEMES SECTION
   ============================================ */
.themes-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .themes-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.theme-card {
    background-color: rgba(18, 18, 18, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--white-10);
    text-align: center;
}

@media (min-width: 640px) {
    .theme-card { padding: 2rem; }
}

.theme-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.theme-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.theme-card-text {
    color: var(--white-70);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--cinema-900);
    border-top: 1px solid var(--white-10);
    padding: 2.5rem 0;
}

.footer-content {
    text-align: center;
}

.footer-production {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.footer-text {
    text-align: center;
    color: var(--white-50);
    font-size: 0.875rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    margin-top: 4rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

/* ============================================
   SWIPER OVERRIDES
   ============================================ */
.swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--gold-600);
}

@media (max-width: 640px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.decorative-blur {
    position: absolute;
    width: 384px;
    height: 384px;
    background-color: var(--gold);
    border-radius: 50%;
    filter: blur(128px);
    opacity: 0.05;
}

.decorative-circle {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    opacity: 0.05;
}

/* ============================================
   INTRO/QUOTE SECTION
   ============================================ */
.intro-section {
    max-width: 896px;
    margin: 0 auto 4rem;
    text-align: center;
}

@media (min-width: 640px) {
    .intro-section { margin-bottom: 5rem; }
}

.intro-quote {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .intro-quote { font-size: 1.5rem; }
}

@media (min-width: 768px) {
    .intro-quote { font-size: 1.875rem; }
}

.intro-text {
    color: var(--white-80);
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 640px) {
    .intro-text { font-size: 1.125rem; }
}


