/* Contact Tape Design */
.contact-tape-section {
    width: 100%;
    padding: 0;
    margin: 2rem 0 0 0;
}

.contact-tape-container {
    position: relative;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.contact-tape {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                rgba(248, 247, 244, 0.95) 0%, 
                rgba(240, 238, 235, 0.98) 50%, 
                rgba(248, 247, 244, 0.95) 100%);
    box-shadow: 
        0 -2px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

.contact-tape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 6px,
        rgba(0, 0, 0, 0.1) 6px,
        rgba(0, 0, 0, 0.1) 10px
    );
    opacity: 0.3;
}

.contact-tape::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 6px,
        rgba(0, 0, 0, 0.1) 6px,
        rgba(0, 0, 0, 0.1) 10px
    );
    opacity: 0.3;
}

.contact-tape-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollContactTape 25s linear infinite;
    will-change: transform;
    white-space: nowrap;
    padding: 0 2rem;
    gap: 3rem;
}

.contact-tape-track:hover {
    animation-play-state: paused;
}

@keyframes scrollContactTape {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(26, 26, 28, 0.8);
    text-transform: uppercase;
    margin-right: 2rem;
    position: relative;
}

.contact-label::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background: rgba(26, 26, 28, 0.3);
}

.contact-tape-item {
    display: inline-block;
}

.contact-tape-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: rgba(26, 26, 28, 0.8);
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
}

.contact-tape-link:hover {
    color: rgba(26, 26, 28, 1);
    background: rgba(26, 26, 28, 0.05);
    transform: translateY(-1px);
}

.contact-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.contact-text {
    font-size: 0.85rem;
    font-weight: 200;
    letter-spacing: 0.01em;
}

.contact-tape-separator {
    font-size: 1rem;
    color: rgba(26, 26, 28, 0.4);
    margin: 0 1rem;
}

/* Section Title Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
    text-transform: uppercase;
    font-style: normal;
    line-height: 1.1;
}

.section-title::after {
    content: '• • •';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: rgba(248, 247, 244, 0.3);
    letter-spacing: 0.3em;
}

/* Festivals Tape Scroller */
.festivals-tape-section {
    width: 100%;
    padding: 0;
    margin: 0;
    background: var(--background-dark);
    scroll-margin-top: 120px; /* Prevent navbar overlap */
    position: relative;
    z-index: 50;
}

.festivals-tape-container {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.festivals-tape {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
                rgba(248, 247, 244, 0.95) 0%, 
                rgba(240, 238, 235, 0.98) 50%, 
                rgba(248, 247, 244, 0.95) 100%);
    box-shadow: 
        0 -2px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.festivals-tape::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(0, 0, 0, 0.1) 8px,
        rgba(0, 0, 0, 0.1) 12px
    );
    opacity: 0.3;
}

.festivals-tape::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 8px,
        rgba(0, 0, 0, 0.1) 8px,
        rgba(0, 0, 0, 0.1) 12px
    );
    opacity: 0.3;
}

.festivals-tape-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollTape 45s linear infinite;
    will-change: transform;
    white-space: nowrap;
    padding: 0 2rem;
    gap: 3rem;
}

.festivals-tape-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTape {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.festivals-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(26, 26, 28, 0.8);
    text-transform: uppercase;
    margin-right: 2rem;
    position: relative;
}

.festivals-label::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background: rgba(26, 26, 28, 0.3);
}

.festival-tape-item {
    display: inline-block;
}

.festival-tape-link {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: rgba(26, 26, 28, 0.8);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 4px;
}

.festival-tape-link:hover {
    color: rgba(26, 26, 28, 1);
    background: rgba(26, 26, 28, 0.05);
    transform: translateY(-1px);
}

.festival-tape-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.festival-tape-year {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26, 26, 28, 0.6);
    letter-spacing: 0.02em;
}

.festival-tape-film {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(26, 26, 28, 0.7);
    letter-spacing: 0.01em;
}

.festival-tape-separator {
    font-size: 1.2rem;
    color: rgba(26, 26, 28, 0.4);
    margin: 0 1rem;
}

:root {
    --primary-accent: #E8E6E3;
    --primary-accent-hover: #D0CCC7;
    --secondary-charcoal: #2C2C2E;
    --light-cream: #F8F7F4;
    --dark-charcoal: #1A1A1C;
    --background-dark: #0A0A0B;
    --background-secondary: #141416;
    --text-primary: #F8F7F4;
    --text-secondary: #B8B5B0;
    --accent-warm: #8B7355;
    --border-color: rgba(232, 230, 227, 0.15);
    --gradient-primary: linear-gradient(135deg, #E8E6E3 0%, #D0CCC7 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1C 0%, #0A0A0B 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    opacity: 0;
    transition: opacity 0.8s ease;
}

body.loaded {
    opacity: 1;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: 'Work Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInText 1s ease 0.5s forwards;
}

.progress-bar {
    width: 300px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 0%;
    border-radius: 1px;
    animation: loadProgress 2.5s ease-out forwards;
}

@keyframes fadeInText {
    to { opacity: 1; }
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Hero Section with Film Carousel */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-video, .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.2) contrast(1.3) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    transform: translateY(-1rem);
    animation: fadeInUp 2s ease-out;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 0;
    margin-top: 4rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 20px rgba(0,0,0,0.8);
    color: #ffffff;
    line-height: 1.1;
    text-transform: none;
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 10px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.hero-subtitle.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.hero-read-more {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    display: inline-block;
    letter-spacing: 0.02em;
}

.hero-read-more:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

/* Hero Watch Button Container */
.hero-watch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.hero-watch-btn {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 0;
}

/* Bottom Arrow Positioning */
.hero-bottom-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.watch-arrow {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: arrowBounce 2s infinite;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.watch-arrow:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px) scale(1.1);
    animation-play-state: paused;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}



/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow-left {
    left: 2rem;
}

.hero-arrow-right {
    right: 2rem;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}



/* Inline Video Player */
.inline-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 28, 0.95) 100%);
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    padding: 2rem;
}

.inline-video-player.active {
    display: flex;
}

.video-player-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--secondary-charcoal) 0%, var(--dark-charcoal) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 10px 40px rgba(232, 230, 227, 0.1);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(40px);
}

.video-player-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.video-player-container iframe {
    width: 100%;
    height: calc(100% - 1.5rem);
    border: none;
    border-radius: 12px;
    background: #000;
    position: relative;
    top: 1.5rem;
}

.close-inline-video {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 21;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.close-inline-video:hover {
    transform: scale(1.1);
    background: var(--gradient-primary);
    color: var(--background-dark);
    border-color: var(--primary-accent);
    box-shadow: 0 8px 24px rgba(232, 230, 227, 0.3);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 100;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: transparent;
    padding: 1rem 2rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 200;
    letter-spacing: 0.03em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    line-height: 1.1;
    text-transform: uppercase;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-accent);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
    border-radius: 1px;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 28, 0.98) 0%, rgba(10, 10, 11, 0.98) 100%);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 100;
    padding-top: 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-links a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 20px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-accent);
    padding-left: 40px;
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-links a:hover::before {
    transform: scaleY(1);
}

/* Mobile menu overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--dark-charcoal);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 3rem;
    text-align: left;
    letter-spacing: 0.01em;
}

.about-highlight {
    color: var(--primary-accent);
    font-weight: 500;
}





/* Video Section */
.video-section {
    padding: 5rem 2rem;
    background: var(--background-secondary);
}

.video-container-section {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 4rem auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--dark-charcoal);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(1.1) contrast(1.2);
}

/* Film Stills Gallery */
.film-stills {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--background-dark) 0%, var(--dark-charcoal) 100%);
}

.stills-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.stills-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 3rem;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.still-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.still-slide.active {
    opacity: 1;
    z-index: 2;
}

.still-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.1) contrast(1.2) saturate(1.1);
}

/* Still Navigation Dots */
.still-nav-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.still-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.still-dot.active {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.still-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        filter: blur(8px);
    }
    30% {
        opacity: 0.3;
        transform: translateY(30px) scale(0.95);
        filter: blur(4px);
    }
    60% {
        opacity: 0.7;
        transform: translateY(15px) scale(0.98);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 1em;
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
        letter-spacing: 0.4em;
    }
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
    color: var(--primary-accent);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.3rem);
    }
    
    .hero-content {
        padding: 7rem 2rem 2rem;
    }
    
    .nav-content {
        padding: 0 1rem;
    }
    
    .stills-carousel {
        max-width: 90%;
    }
    
    .hero-watch-btn {
        padding: 13px 26px;
        font-size: 1.05rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
        letter-spacing: 0.02em;
        line-height: 1.1;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
        font-weight: 400;
        font-style: italic;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 3vw, 1.1rem);
        margin-bottom: 1rem;
        line-height: 1.4;
        max-width: 95%;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .hero-content {
        transform: translateY(0);
        padding: 2rem 1rem;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        padding-top: 80px;
        box-sizing: border-box;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-play-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    

    
    .hero-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: 50%;
    }
    
    .hero-arrow-left {
        left: 1rem;
    }
    
    .hero-arrow-right {
        right: 1rem;
    }
    

    .stills-carousel {
        max-width: 95%;
        margin: 3rem auto 2rem;
        border-radius: 16px;
    }
    
    .still-nav-dots {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .still-dot {
        width: 10px;
        height: 10px;
    }
    
    .about-text {
        text-align: center;
    }
    

    .hero-read-more {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-watch-container {
        margin-top: 0.5rem;
        align-items: center;
        width: 100%;
    }
    
    .hero-watch-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .hero-bottom-arrow {
        bottom: 1.5rem;
    }
    

    .video-player-container {
        width: 95%;
        max-width: none;
        padding: 1rem;
        border-radius: 16px;
    }
    
    .video-player-container iframe {
        height: calc(100% - 1rem);
        top: 1rem;
        border-radius: 8px;
    }
    
    .close-inline-video {
        top: -45px;
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .festivals-tape-section {
        background: var(--background-dark);
        margin: 0;
        padding: 0;
    }
    
    .festivals-tape-container {
        height: 60px;
    }
    
    .festivals-tape-track {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .festivals-label {
        font-size: 0.8rem;
        margin-right: 1rem;
    }
    
    .festival-tape-link {
        gap: 0.8rem;
    }
    
    .festival-tape-name {
        font-size: 0.8rem;
    }
    
    .festival-tape-year {
        font-size: 0.7rem;
    }
    
    .festival-tape-film {
        font-size: 0.7rem;
    }
    
    .festival-tape-separator {
        margin: 0 0.5rem;
        font-size: 1rem;
    }
    
    .contact-tape-container {
        height: 60px;
    }
    
    .contact-tape-track {
        padding: 0 1rem;
        gap: 2rem;
        animation: scrollContactTape 17s linear infinite;
    }
    
    .festivals-tape-track {
        animation: scrollTape 30s linear infinite;
    }
    
    .contact-label {
        font-size: 0.75rem;
        margin-right: 1rem;
    }
    
    .contact-tape-link {
        gap: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    
    .contact-text {
        font-size: 0.75rem;
    }
    
    .contact-tape-separator {
        margin: 0 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Video Section Mobile */
    .video-wrapper {
        max-width: 95%;
        margin: 3rem auto 2rem;
        border-radius: 16px;
    }
    
    .video-wrapper iframe {
        border-radius: 12px;
    }
}
