/* Cross-browser compatibility fixes */
/* CSS Grid fallbacks for older browsers */
@supports not (display: grid) {
    .events-grid,
    .features-grid,
    .testimonial-grid,
    .footer-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2rem;
    }
    
    @media (min-width: 768px) {
        .footer-content {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }
    }
    
    @media (min-width: 900px) {
        .features-grid,
        .testimonial-grid {
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }
    }
}

/* Flexbox fallbacks for very old browsers */
@supports not (display: flex) {
    .nav-container,
    .hero-cta,
    .event-meta,
    .footer-content {
        display: block;
        text-align: center;
    }
    
    .nav-container {
        text-align: left;
    }
    
    .nav-links {
        display: inline-block;
        margin-top: 1rem;
    }
    
    .nav-links li {
        display: inline-block;
        margin-right: 2rem;
    }
}

/* Custom properties fallbacks */
@supports not (color: var(--test)) {
    body {
        background-color: #fefefe;
        color: #0a0a0a;
    }
    
    .navbar {
        background: rgba(254, 254, 254, 0.95);
    }
    
    .cta-button,
    .cta-primary {
        background: #2d4f3f;
        color: #fefefe;
    }
    
    .section-title,
    .logo {
        color: #2d4f3f;
    }
    
    .hero h1,
    .hero-subtitle {
        color: white;
    }
}

/* Backdrop filter fallbacks */
@supports not (backdrop-filter: blur(10px)) {
    .navbar {
        background: rgba(254, 254, 254, 0.98) !important;
    }
    
    .nav-links {
        background: #ffffff !important;
    }
    
    .testimonial-card {
        background: rgba(255, 255, 255, 0.2) !important;
    }
}

/* Safari specific fixes */
@supports (-webkit-appearance: none) {
    /* Fix for iOS Safari video playback */
    .hero-video {
        -webkit-playsinline: true;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    /* Fix for Safari smooth scrolling */
    html {
        -webkit-scroll-behavior: smooth;
        scroll-behavior: smooth;
    }
    
    /* Fix for Safari input styling */
    input, textarea, select {
        -webkit-appearance: none;
        appearance: none;
        -webkit-border-radius: 0;
        border-radius: 4px;
    }
}

/* Universal input styling */
input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Universal scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #f2f0eb;
}

/* Accessibility improvements */
/* Focus indicators */
*:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-black: #000000;
        --warm-white: #ffffff;
        --charcoal: #000000;
        --accent-gold: #ffcc00;
    }
    
    .nav-links a {
        border: 1px solid currentColor;
    }
    
    .cta-button,
    .cta-primary,
    .cta-secondary {
        border: 2px solid currentColor;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-video {
        animation-play-state: paused !important;
    }
    
    .fade-in {
        animation: none;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links {
        transition: none;
    }
    
    .hamburger-line {
        transition: none;
    }
}

/* Keyboard navigation improvements */
.nav-links a:focus,
.cta-button:focus,
.mobile-cta-button:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

.hamburger-menu:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Ensure interactive elements are large enough for touch */
@media (max-width: 768px) {
    .nav-links a,
    .mobile-cta-button,
    .hamburger-menu {
        min-height: 44px;
        min-width: 44px;
    }
    
    .dot {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dot::before {
        content: '';
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }
    
    .dot.active::before {
        background: white;
        transform: scale(1.2);
    }
}

/* Color contrast improvements */
.event-status {
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.video-duration {
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Focus management for modal */
.modal-overlay[aria-hidden="true"] {
    display: none;
}

.modal-overlay:not([aria-hidden="true"]) {
    display: flex;
}

/* Skip link positioning */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-black);
    color: var(--warm-white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 6px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Error message styles */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Image error styling */
.image-error {
    filter: grayscale(100%);
    opacity: 0.7;
    border: 1px dashed #ccc;
}

:root {
    --primary-black: #0a0a0a;
    --soft-black: #1a1a1a;
    --charcoal: #2d2d2d;
    --warm-white: #fefefe;
    --cream: #f8f6f2;
    --light-beige: #f2f0eb;
    --medium-beige: #e6e2d8;
    --accent-gold: #d4af37;
    --navbar-height: 80px;
    --max-width: 1400px;
}

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

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

.garamond {
    font-family: 'EB Garamond', serif;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #2d4f3f;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Landing page specific hamburger styles */
body.landing-page .hamburger-line {
    background-color: white;
}

body.landing-page .navbar.scrolled .hamburger-line {
    background-color: #2d4f3f;
}

/* Hamburger animation when active */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Landing page specific navbar styles */
body.landing-page .navbar {
    background: transparent;
}

body.landing-page .navbar.scrolled {
    background: white;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    width: 100%;
    /* Ensure consistent navigation spacing */
    gap: 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2d4f3f;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
    /* Ensure consistent spacing */
    flex-shrink: 0;
}

/* Landing page specific logo styles */
body.landing-page .logo {
    color: white !important;
}

body.landing-page .navbar.scrolled .logo {
    color: #2d4f3f !important;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 2.5rem;
    margin: 0 2rem;
    /* Ensure consistent spacing across all pages */
    width: auto;
    min-width: 0;
    /* Prevent flex items from shrinking */
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #2d4f3f;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    /* Ensure consistent spacing */
    white-space: nowrap;
    flex-shrink: 0;
    /* Consistent width for all nav items */
    min-width: fit-content;
}

/* Landing page specific nav links styles */
body.landing-page .nav-links a {
    color: white !important;
}

body.landing-page .navbar.scrolled .nav-links a {
    color: #2d4f3f !important;
}

.nav-links a:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

.cta-button {
    background: #2d4f3f;
    color: var(--warm-white);
    padding: 0.75rem 1.5rem;
    border: 2px solid #2d4f3f;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(45, 79, 63, 0.1);
    text-align: center;
    min-width: 120px;
    /* Ensure consistent spacing */
    flex-shrink: 0;
    /* Consistent margin for spacing */
    margin-left: 1rem;
}

/* Landing page specific CTA button styles */
body.landing-page .cta-button {
    background: transparent;
    color: white !important;
    border: 2px solid white;
}

body.landing-page .navbar.scrolled .cta-button {
    background: #2d4f3f;
    color: var(--warm-white) !important;
    border: 2px solid #2d4f3f;
}

.cta-button:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 79, 63, 0.2);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(45, 79, 63, 0.1);
}

/* Hide mobile CTA on desktop */
.mobile-cta-container {
    display: none !important;
}

/* Hide Home button on desktop - only show on mobile */
.mobile-only {
    display: none !important;
}

/* Force hide on larger screens */
@media (min-width: 769px) {
    .mobile-cta-container,
    .mobile-only {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    background: var(--charcoal);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Dark overlay to improve text readability */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Documentary Button Overlay */
.hero-documentary-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-documentary-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-documentary-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-documentary-button:active {
    transform: translateY(0);
}

.hero-documentary-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.hero-documentary-button:hover svg {
    transform: scale(1.1);
}

.cta-primary {
    background: #2d4f3f;
    color: var(--warm-white);
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-primary:hover {
    background: var(--accent-gold);
}

.cta-secondary:hover {
    background: white;
    color: var(--primary-black);
}

/* Section Styling */
.section {
    padding: 6rem 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #2d4f3f;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Upcoming Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.event-card-large {
    background: var(--warm-white);
    border: 1px solid var(--medium-beige);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.event-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.event-carousel {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.event-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.event-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.event-carousel-slide.active {
    opacity: 1;
}

.event-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2d4f3f;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-date, .event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.event-description {
    color: var(--charcoal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d4f3f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-cta:hover {
    color: var(--accent-gold);
    transform: translateX(4px);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.feature-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #2d4f3f;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--charcoal);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #2d4f3f 0%, #1a3329 100%);
    color: var(--warm-white);
    padding: 6rem 0;
    margin: 6rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    color: var(--accent-gold);
    font-style: normal;
}

/* About Section */
.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 4px solid var(--warm-white);
}

.founder-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.6;
}

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

/* Documentary Section */
.documentary-section {
    background: url('/assets/documentary-image.jpg') center center/cover no-repeat;
    color: var(--warm-white);
    padding: 6rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    position: relative;
}

.documentary-content {
    position: relative;
}

.documentary-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.documentary-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--warm-white);
}

.documentary-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.documentary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.documentary-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.documentary-button:active {
    transform: translateY(0);
}

.documentary-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.documentary-button:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d4f3f 0%, #1a2f25 100%);
    color: var(--warm-white);
    padding: 4rem 0 2rem;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(254, 254, 254, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(254, 254, 254, 0.6);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-content {
    background: var(--warm-white);
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    z-index: 10;
}

.auth-container {
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #2d4f3f;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--medium-beige);
    margin-bottom: 2rem;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.auth-tab.active {
    border-bottom-color: var(--accent-gold);
    color: var(--accent-gold);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--charcoal);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-beige);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.auth-submit {
    width: 100%;
    padding: 1rem;
    background: #2d4f3f;
    color: var(--warm-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.auth-submit:hover {
    background: var(--accent-gold);
}

.auth-link {
    text-align: center;
    color: var(--charcoal);
}

.auth-link a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .hero-inner {
        max-width: 700px;
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-inner {
        max-width: 600px;
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .documentary-title {
        font-size: 2.5rem;
    }
    
    .documentary-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .about-image {
        width: 250px;
        height: 250px;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        z-index: 10000;
    }
    
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        right: 20px;
        width: 300px;
        max-height: calc(100vh - var(--navbar-height) - 40px);
        background: #ffffff;
        border: 2px solid #2d4f3f;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 20px;
        gap: 12px;
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        z-index: 9999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }
    
    .nav-links a {
        display: block;
        padding: 14px 16px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a3329 !important;
        text-decoration: none;
        background: #ffffff;
        border: 2px solid #2d4f3f;
        border-radius: 10px;
        transition: all 0.2s ease;
        width: 100%;
        text-align: left;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* Consistent spacing for mobile nav items */
        margin: 0;
    }
    
    .nav-links a:hover {
        background: #2d4f3f !important;
        color: white !important;
        transform: translateX(4px);
    }
    
    /* Override all landing page styles for mobile navigation */
    body.landing-page .nav-links,
    body.landing-page .navbar.scrolled .nav-links {
        background: #ffffff !important;
        border: 2px solid #2d4f3f !important;
    }
    
    body.landing-page .nav-links a,
    body.landing-page .navbar.scrolled .nav-links a {
        color: #1a3329 !important;
        background: #ffffff !important;
        border: 2px solid #2d4f3f !important;
    }
    
    body.landing-page .nav-links a:hover,
    body.landing-page .navbar.scrolled .nav-links a:hover {
        background: #2d4f3f !important;
        color: white !important;
    }
    
    /* Show Home button on mobile */
    .mobile-only {
        display: block !important;
    }

    /* Mobile CTA Button */
    .mobile-cta-container {
        display: block !important;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid rgba(45, 79, 63, 0.2);
    }
    
    .mobile-cta-button {
        background: #2d4f3f !important;
        color: white !important;
        border: 2px solid #2d4f3f !important;
        padding: 12px 18px !important;
        border-radius: 10px !important;
        font-size: 0.9rem !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        transition: all 0.3s ease !important;
        text-align: center !important;
    }
    
    .mobile-cta-button:hover {
        background: var(--accent-gold) !important;
        border-color: var(--accent-gold) !important;
        transform: translateY(-2px) !important;
    }
    
    /* Hide desktop CTA on mobile */
    .cta-button {
        display: none;
    }
    
    /* Events grid becomes single column */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-carousel {
        height: 300px;
    }
    
    .event-content {
        padding: 1.5rem;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .documentary-section {
        padding: 4rem 0;
    }
    
    .documentary-title {
        font-size: 2rem;
    }
    
    .documentary-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .documentary-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-documentary-overlay {
        bottom: 1rem;
        right: 1rem;
    }
    
    .hero-documentary-button {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-documentary-button svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 280px;
        padding: 16px;
        gap: 10px;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
    
    .mobile-cta-button {
        font-size: 0.8rem !important;
        padding: 10px 14px !important;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .event-carousel {
        height: 250px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .documentary-section {
        padding: 3rem 0;
    }
    
    .documentary-title {
        font-size: 1.75rem;
    }
    
    .documentary-subtitle {
        font-size: 0.95rem;
    }
    
    .documentary-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-documentary-overlay {
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .hero-documentary-button {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .hero-documentary-button svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-image {
        width: 200px;
        height: 200px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-inner {
        padding: 0 0.8rem;
    }
    
    .section {
        padding: 1.5rem 0.8rem;
    }
    
    .cta-primary, .cta-secondary {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Performance optimizations */
.hero-video,
.event-carousel-slide img,
.feature-image {
    will-change: transform;
}

.nav-links.active {
    will-change: transform, opacity;
}

.hamburger-menu.active .hamburger-line {
    will-change: transform;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
    transition: color 0.3s ease;
    /* Ensure consistent spacing with other nav items */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-trigger:hover {
    color: var(--accent-gold);
}

.dropdown-menu {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid #f0f0f0;
    max-height: calc(100vh - var(--navbar-height));
    overflow-y: auto;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.section-header h3 {
    margin: 0;
    font-size: 24px;
    color: var(--charcoal);
    position: relative;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.view-all {
    font-size: 14px;
    color: var(--charcoal);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.view-all:hover {
    color: var(--accent-gold);
}

/* Events Section */
.events-section {
    border-right: 1px solid #f0f0f0;
    padding-right: 48px;
}

.dropdown-content .events-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dropdown-content .event-card {
    display: flex;
    gap: 20px;
    padding: 16px;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-content .event-card:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-content .event-image {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.dropdown-content .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-status {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-status.limited {
    background: #ff4a4a;
    color: white;
}

.event-status.early-bird {
    background: var(--accent-gold);
    color: white;
}

.dropdown-content .event-info {
    flex: 1;
}

.dropdown-content .event-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 600;
}

.dropdown-content .event-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-content .event-date, 
.dropdown-content .event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--charcoal);
}

/* Video Section */
.video-section {
    border-right: 1px solid #f0f0f0;
    padding-right: 48px;
}

.video-thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.video-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: var(--charcoal);
    font-weight: 600;
}

.video-info p {
    margin: 0;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

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

.newsletter-text p {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form .form-group {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #fafafa;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: white;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-gold);
    transform: translateY(-1px);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--charcoal);
    cursor: pointer;
}

.consent-checkbox input {
    margin-top: 3px;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: none;
        background: rgba(248, 248, 248, 0.95);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(45, 79, 63, 0.1);
        margin-top: 6px;
        border-radius: 10px;
        padding: 6px;
        display: none;
        transition: all 0.3s ease;
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu.mobile-active {
        display: block !important;
    }
    
    .dropdown-trigger::after {
        content: ' ▼';
        font-size: 0.8rem;
        margin-left: 0.3rem;
        transition: transform 0.3s ease;
    }
    
    .dropdown-trigger[aria-expanded="true"]::after {
        content: ' ▲';
        transform: rotate(180deg);
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 20px;
        display: block;
    }
    
    .dropdown-section {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(45, 79, 63, 0.1);
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    
    .dropdown-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    
    .section-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .section-header h3 {
        font-size: 18px;
        color: #2d4f3f;
        font-weight: 600;
    }
    
    .dropdown-content .events-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .dropdown-content .event-card {
        padding: 12px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 8px;
    }
    
    .dropdown-content .event-image {
        width: 80px;
        height: 60px;
    }
    
    .dropdown-content .event-info h4 {
        font-size: 14px;
        margin-bottom: 4px;
        color: #2d4f3f;
        font-weight: 600;
    }
    
    .dropdown-content .event-meta {
        font-size: 12px;
    }
    
    .video-thumbnail {
        margin-bottom: 12px;
    }
    
    .video-thumbnail img {
        height: 140px;
        border-radius: 8px;
    }
    
    .video-info h4 {
        font-size: 14px;
        color: #2d4f3f;
        margin-bottom: 6px;
    }
    
    .video-info p {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }
    
    .newsletter-image {
        height: 120px;
        margin-bottom: 12px;
    }
    
    .newsletter-text p {
        font-size: 12px;
        color: #666;
        margin-bottom: 12px;
    }
    
    .newsletter-form input {
        padding: 8px 12px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .newsletter-form button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .newsletter-content {
        flex-direction: column;
    }
}

/* --- HERO SEQUENTIAL ANIMATION (IMMEDIATE CASCADE) --- */
.hero-animate-title {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-animate-title.animated {
  opacity: 1;
  transition-delay: 0s;
}
.hero-animate-tagline,
.hero-animate-cta,
.hero-animate-docu-shine {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hero-animate-tagline.animated,
.hero-animate-cta.animated {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.hero-animate-docu-shine.animated {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

/* --- HERO DOCUMENTARY BUTTON: SLIMMER, SINGLE-LINE, ANIMATED BORDER --- */
.hero-documentary-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  border-radius: 40px;
  white-space: nowrap;
  border: 3px solid transparent;
  background-clip: padding-box;
  z-index: 1;
  transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.hero-documentary-button > span,
.hero-documentary-button > svg {
  position: relative;
  z-index: 2;
}

/* Animated border using a pseudo-element */
.hero-documentary-button::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(120deg, #244f3f, #1e6650, #2ca88c 60%, #244f3f 100%);
  background-size: 200% 200%;
  animation: border-gradient-move 5s ease-in-out infinite;
}
@keyframes border-gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.hero-documentary-button {
  box-shadow: 0 2px 12px rgba(36,79,63,0.10);
}
.hero-documentary-button::before {
  border: 3px solid transparent;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

/* Ensure shine is above border */
.shine-effect {
  z-index: 3;
}

/* Minimalistic but eye-catching hover effect */
.hero-documentary-button:hover {
  box-shadow: 0 0 0 4px rgba(36,79,63,0.12), 0 6px 24px rgba(36,79,63,0.18);
  transform: scale(1.045);
}
