/* Import Professional Film Festival Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.75;
    color: #1a1a1a;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #404040;
    font-size: 1.0625rem;
    line-height: 1.8;
    font-weight: 400;
    max-width: 75ch;
}

/* Lead Paragraph Style */
.lead-text,
.page-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #505050;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

/* Container System */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* Content Width Control */
.content-section > p,
.content-section > ul,
.content-section > ol {
    max-width: 70ch;
}

/* Section Spacing */
.content-section {
    margin-bottom: 5rem;
    padding-bottom: 3rem;
    text-align: center;
}

.content-section:not(:last-child) {
    border-bottom: 1px solid #e5e5e5;
}

/* Header Navigation - Modern Film Festival Style */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-top {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.festival-info {
    text-align: center;
    color: #666;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    gap: 3rem;
}

.logo {
    text-decoration: none;
    color: #0a0a0a;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.logo h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    font-weight: 500;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    color: #404040;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #0a0a0a;
    background-color: #f5f5f5;
}

.main-nav a.active {
    color: #ffffff;
    background-color: #0a0a0a;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    left: 0;
    border: 1px solid #dee2e6;
}

.dropdown-content a {
    color: #495057 !important;
    padding: 15px 20px !important;
    text-decoration: none;
    display: block;
    border-bottom: none !important;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #8b956f !important;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #1a252f;
    border-bottom-color: #8b956f;
    background-color: rgba(139, 149, 111, 0.1);
}

/* Hero Section - Modern Design */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: clamp(5rem, 12vh, 9rem) 0 clamp(4rem, 10vh, 7rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 149, 111, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 149, 111, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero Banner with custom image */
.hero-banner {
    min-height: 500px;
    height: 60vh;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background-img {
    position: absolute;
    top: -5%;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.6) 0%, rgba(139, 149, 111, 0.2) 100%);
    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 3;
    height: 100%;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #8b956f;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
    display: block;
    font-weight: 600;
}

.hero-section .hero-content h1 {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-section .hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner .hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 680px;
    width: 90%;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-banner .hero-content .hero-subtitle {
    color: #8b956f;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.hero-banner .hero-content h1 {
    color: white;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-banner .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* Main Content - Clean Modern Layout */
.main-content {
    background: white;
    padding: clamp(3rem, 8vh, 6rem) 0;
}

.page-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vh, 5rem);
    padding-bottom: 2.5rem;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b956f, transparent);
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Sections - Enhanced Typography */
.content-section h2 {
    color: #0a0a0a;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    position: relative;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #8b956f;
}

.content-section > p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.content-card {
    background: #fafafa;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #8b956f;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
}

.content-card:hover::before {
    opacity: 1;
}

.content-card h3 {
    color: #0a0a0a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.content-card p {
    color: #505050;
    font-size: 1rem;
    line-height: 1.7;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    border: 2px dashed #dee2e6;
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    margin: 30px 0;
    border-radius: 8px;
}

.image-placeholder-large {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder-small {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-description {
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* Tables - Clean Modern Design */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 3rem 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.data-table th {
    background: #fafafa;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #0a0a0a;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background: #fafafa;
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #8b956f;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60%;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 60%;
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
}

.timeline-date {
    background: #8b956f;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Footer - Modern Minimalist */
.main-footer {
    background: #0a0a0a;
    color: white;
    padding: clamp(3rem, 8vh, 5rem) 0 2rem;
    margin-top: clamp(4rem, 10vh, 8rem);
    border-top: 1px solid #1a1a1a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section li {
    color: #999;
    font-size: 0.9375rem;
    line-height: 1.8;
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #8b956f;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background-color: #f8f9fa;
        border-radius: 0;
        margin-top: 5px;
        width: 100%;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 15px !important;
        font-size: 0.85rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        min-height: 400px;
        height: 50vh;
        max-height: 450px;
        padding: 30px 0;
    }
    
    .hero-banner .hero-content {
        padding: 25px 20px;
        width: 95%;
        max-width: 95%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        border-radius: 15px;
    }
    
    .hero-background-img {
        top: 0%;
        height: 100%;
        object-position: center 25%;
    }
    
    .hero-banner .hero-content .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-banner .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
    
    .hero-banner .hero-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
    }
    
    .container,
    .section-container {
        padding: 0 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-italic {
    font-style: italic;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mt-2 { margin-top: 1.25rem; }
.mb-2 { margin-bottom: 1.25rem; }
.mt-3 { margin-top: 2rem; }
.mb-3 { margin-bottom: 2rem; }
.mt-4 { margin-top: 3rem; }
.mb-4 { margin-bottom: 3rem; }

.highlight {
    background: #fafafa;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid #e5e5e5;
}

.content-card.highlight {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-left: 4px solid #8b956f;
}

.peace-accent {
    color: #8b956f;
    font-weight: 600;
}

/* Link Styles */
a {
    color: #0a0a0a;
    text-decoration: underline;
    text-decoration-color: #e5e5e5;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

a:hover {
    color: #8b956f;
    text-decoration-color: #8b956f;
}

/* List Styles */
ul, ol {
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Blockquote */
blockquote {
    border-left: 4px solid #8b956f;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #fafafa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #404040;
}

/* Photo Gallery Styles */
.photo-gallery {
    margin: 40px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-caption {
    padding: 15px 20px;
    background: white;
    color: #556b83;
    font-size: 0.95rem;
    font-style: italic;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

/* Compact gallery grid for smaller sections */
.compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.compact-grid .gallery-image {
    height: 200px;
}

/* Responsive gallery adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item-featured {
        grid-column: span 1;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .compact-grid {
        grid-template-columns: 1fr;
    }
}

/* Awards Banner Styles - Modern Minimalist */
.awards-banner {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%);
    color: white;
    padding: clamp(2rem, 5vh, 3rem) 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.awards-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 149, 111, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 149, 111, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-badge {
    flex-shrink: 0;
}

.badge-inner {
    background: #8b956f;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 40px;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.banner-description {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    margin: 0 0 1.25rem 0;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.banner-date {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.date-label {
    color: #cbd5e1;
    font-weight: 500;
}

.date-value {
    color: #8b956f;
    font-weight: 700;
    background: rgba(139, 149, 111, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    border: 1px solid rgba(139, 149, 111, 0.3);
    font-size: 0.9375rem;
}

.banner-countdown {
    text-align: center;
    flex-shrink: 0;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem 1.125rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 70px;
    text-align: center;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b956f;
    margin: 0 0.25rem;
}

.countdown-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: #8b956f;
    line-height: 1;
    margin-bottom: 0.375rem;
    font-family: 'Space Grotesk', sans-serif;
}

.countdown-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.countdown-status {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Festival Overview Styles */
.festival-overview {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-main h2 {
    font-family: 'Cinzel', serif;
    color: #1a252f;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.lead-text {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #556b83;
    margin-bottom: 40px;
    font-weight: 400;
}

.key-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.highlight-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #8b956f;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-item strong {
    display: block;
    font-size: 2.2rem;
    color: #8b956f;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-item span {
    color: #6c757d;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-featured {
    text-align: center;
}

.featured-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.featured-image:hover {
    transform: scale(1.02);
}

.featured-caption {
    margin-top: 15px;
    color: #6c757d;
    font-style: italic;
    font-size: 0.95rem;
}

/* Responsive design for new elements */
@media (max-width: 768px) {
    .awards-banner {
        padding: 20px 0;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
    }
    
    .banner-badge {
        order: -1;
    }
    
    .badge-inner {
        padding: 8px 16px;
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .banner-main {
        flex-direction: column;
        gap: 25px;
    }
    
    .banner-text h3 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .banner-date {
        justify-content: center;
        gap: 8px;
        font-size: 0.9rem;
    }
    
    .date-value {
        padding: 4px 8px;
        font-size: 0.85rem;
    }
    
    .countdown-container {
        gap: 10px;
        justify-content: center;
    }
    
    .countdown-item {
        padding: 12px 15px;
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin: 0 3px;
    }
    
    .countdown-status {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-main h2 {
        font-size: 2rem;
    }
    
    .key-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .highlight-item strong {
        font-size: 1.8rem;
    }
    
    .festival-overview {
        padding: 30px 20px;
    }
    
    .featured-image {
        height: 250px;
    }
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    animation: slideIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image {
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 60px 40px 30px;
    text-align: left;
}

.slide-caption h3 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation arrows */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
}

.slide-nav.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.slide-nav.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Dots indicator */
.slide-dots {
    text-align: center;
    padding: 20px 0;
    background: rgba(26, 37, 47, 0.05);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background-color: #8b956f;
    transform: scale(1.2);
}

/* Responsive slideshow */
@media (max-width: 768px) {
    .slideshow-wrapper {
        height: 350px;
    }
    
    .slide-caption {
        padding: 40px 20px 20px;
    }
    
    .slide-caption h3 {
        font-size: 1.4rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .slide-nav {
        font-size: 18px;
        padding: 12px 15px;
    }
    
    .dot {
        height: 10px;
        width: 10px;
        margin: 0 6px;
    }
}

/* Press Release Styles */
.press-release-list {
    max-width: 900px;
    margin: 0 auto;
}

.press-release-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.press-release-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #8b956f;
}

.release-date {
    color: #8b956f;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.press-release-item h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    line-height: 1.3;
}

.press-release-item h3 a {
    color: #1a252f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.press-release-item h3 a:hover {
    color: #8b956f;
}

.release-summary {
    color: #556b83;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.release-meta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.release-category {
    background: #f8f9fa;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.release-lang {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Mobile responsive for press releases */
@media (max-width: 768px) {
    .press-release-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .press-release-item h3 {
        font-size: 1.2rem;
    }
    
    .release-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* Press Release Detail Page Styles */
.press-release-header {
    border-bottom: 2px solid #8b956f;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.release-breadcrumb {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.release-breadcrumb a {
    color: #8b956f;
    text-decoration: none;
}

.release-breadcrumb a:hover {
    text-decoration: underline;
}

.press-release-header .release-date {
    color: #8b956f;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.press-release-header h1 {
    font-size: 2.5rem;
    color: #1a252f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.release-subtitle {
    font-size: 1.2rem;
    color: #556b83;
    line-height: 1.5;
    font-style: italic;
}

.press-release-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.lead-paragraph {
    font-size: 1.15rem;
    color: #495057;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #8b956f;
    border-radius: 5px;
}

.award-section {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.award-section h3 {
    color: #8b956f;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}

.winner-details p {
    margin-bottom: 10px;
}

.winner-details strong {
    color: #1a252f;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.award-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b956f;
}

.award-item h4 {
    color: #1a252f;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.award-item p {
    font-size: 0.95rem;
    color: #556b83;
    margin: 0;
}

.award-item em {
    color: #8b956f;
    font-style: italic;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #8b956f;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.1rem;
    font-style: italic;
    border-radius: 5px;
}

blockquote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #8b956f;
}

.media-contact-box,
.festival-info-box {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.media-contact-box h3,
.festival-info-box h3 {
    color: #8b956f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.release-footer {
    border-top: 1px solid #dee2e6;
    padding-top: 30px;
    margin-top: 40px;
    color: #6c757d;
    font-style: italic;
}

.release-id {
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
    margin-top: 20px;
}

/* Mobile responsive for press release details */
@media (max-width: 768px) {
    .press-release-header h1 {
        font-size: 2rem;
    }
    
    .release-subtitle {
        font-size: 1.1rem;
    }
    
    .lead-paragraph {
        font-size: 1.05rem;
        padding: 15px;
    }
    
    .award-section {
        padding: 20px;
    }
    
    .award-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .media-contact-box,
    .festival-info-box {
        padding: 20px;
    }
}

/* Volunteer Form Styles */
.volunteer-application-form {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.application-form {
    max-width: 100%;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    color: #8b956f;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b956f;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(139, 149, 111, 0.1);
}

.form-group input:required,
.form-group textarea:required {
    border-left: 4px solid #8b956f;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: 0 !important;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #0a0a0a;
    color: white;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #f5f5f5;
    color: #0a0a0a;
    border: 1px solid #e5e5e5;
}

.btn-secondary:hover {
    background-color: #e5e5e5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Volunteer Positions Styling */
.volunteer-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.position-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: #8b956f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.position-card h3 {
    color: #8b956f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.position-details strong {
    color: #2c3e50;
    font-weight: 600;
}

.position-details ul {
    margin-top: 10px;
    margin-left: 20px;
}

.position-details li {
    margin-bottom: 5px;
    color: #556b83;
}

/* Responsive Design for Forms */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .volunteer-application-form {
        padding: 25px;
        margin: 20px 0;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .volunteer-positions {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Film Selection Styles */
.selection-intro {
    background: #f5f7fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.content-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.selection-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: #8b956f;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item span {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.film-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.film-item {
    background: #fafafa;
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.film-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #8b956f, #a0ab7f);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.film-item:hover {
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #d0d0d0;
}

.film-item:hover::before {
    opacity: 1;
}

.film-poster {
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.film-poster img {
    width: 100%;
    height: auto;
    display: block;
}

.film-item:hover .film-poster {
    transform: scale(1.02);
}

.film-content {
    flex: 1;
}

.film-item h3 {
    color: #0a0a0a;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.film-meta {
    font-size: 0.9375rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.film-item:hover .film-meta {
    background: #fafafa;
}

.film-meta strong {
    color: #0a0a0a;
    font-weight: 600;
}

.film-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #404040;
    max-width: 75ch;
}

.film-awards {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    font-size: 0.9rem;
    color: #856404;
}

.announcement-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    border: 2px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.announcement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #8b956f, #a0ab7f);
}

.announcement-box h2 {
    color: #0a0a0a;
    margin-bottom: 2rem;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    text-align: center;
}

.announcement-box p {
    color: #404040;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 100%;
}

.announcement-box strong {
    color: #0a0a0a;
    font-weight: 600;
}

.announcement-box ul {
    list-style-position: inside;
    margin: 1.5rem 0;
    padding-left: 1rem;
}

.announcement-box li {
    color: #404040;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.announcement-box a {
    color: #8b956f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(139, 149, 111, 0.3);
    transition: all 0.2s ease;
}

.announcement-box a:hover {
    color: #0a0a0a;
    border-bottom-color: #8b956f;
}

/* Special Honours Cards */
.honours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.honour-card {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    border: 2px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.honour-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b956f, #a0ab7f);
}

.honour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #8b956f;
}

.honour-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b956f, #a0ab7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.honour-card h3 {
    color: #0a0a0a;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.honour-status {
    display: inline-block;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    color: #666;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 500;
    margin: 0 auto 1.5rem;
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.honour-card .film-description {
    color: #505050;
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .honours-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .honour-card {
        padding: 2rem 1.5rem;
    }
}

/* Sponsor CTA Section */
.sponsor-cta-section {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.sponsor-cta-header {
    text-align: center;
    padding: 3rem 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(139, 149, 111, 0.08) 0%, transparent 100%);
}

.sponsor-cta-header h2 {
    color: #0a0a0a;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.sponsor-lead {
    color: #505050;
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-opportunities {
    padding: 3rem 2.5rem;
}

.sponsor-opportunities h3 {
    text-align: center;
    color: #0a0a0a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    position: relative;
}

.sponsor-opportunities h3::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8b956f, transparent);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.opportunity-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #e5e5e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.opportunity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #8b956f;
}

.opportunity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b956f, #a0ab7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(139, 149, 111, 0.3);
}

.opportunity-card h4 {
    color: #0a0a0a;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    line-height: 1.4;
}

.opportunity-card p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.sponsor-cta-footer {
    text-align: center;
    padding: 2.5rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.sponsor-cta-footer p {
    color: #505050;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b956f, #a0ab7f);
    color: white;
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 149, 111, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #7a8460, #8b956f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 149, 111, 0.4);
}

@media (max-width: 768px) {
    .sponsor-cta-header,
    .sponsor-opportunities,
    .sponsor-cta-footer {
        padding: 2rem 1.5rem;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Responsive Adjustments for Film List */
@media (max-width: 768px) {
    .film-item {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .film-poster {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .film-item h3 {
        font-size: 1.5rem;
    }
    
    .selection-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item strong {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .selection-stats {
        grid-template-columns: 1fr;
    }
    
    .film-item {
        padding: 1rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
}

/* Sponsors Page Styles */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.sponsor-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sponsor-logo-placeholder {
    width: 200px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
}

.sponsor-card h3 {
    color: #1a252f;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.sponsor-card p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sponsors-grid {
        gap: 2rem;
    }
    
    .sponsor-logo-placeholder {
        width: 180px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .sponsors-grid {
        gap: 1.5rem;
    }
}

/* Additional Visual Enhancements */
/* Smooth Scroll */
html {
    scroll-padding-top: 100px;
}

/* Selection Color */
::selection {
    background-color: #8b956f;
    color: white;
}

::-moz-selection {
    background-color: #8b956f;
    color: white;
}

/* Focus States */
*:focus-visible {
    outline: 2px solid #8b956f;
    outline-offset: 3px;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth Transitions on Page Load */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Site Closure Announcement Modal */
.site-closure-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.site-closure-modal {
    background: white;
    max-width: 600px;
    width: 90%;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

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

.closure-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b956f, #a0ab7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.site-closure-modal h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.site-closure-modal p {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #404040;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.site-closure-modal p:last-of-type {
    margin-bottom: 2rem;
}

.closure-signature {
    font-style: italic;
    color: #666;
    font-size: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.site-closure-active {
    overflow: hidden;
}

.site-closure-active .main-header,
.site-closure-active .main-content,
.site-closure-active .hero-section,
.site-closure-active .main-footer,
.site-closure-active .awards-banner {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}

.site-closure-active a {
    pointer-events: none;
}

/* Mobile responsive for closure modal */
@media (max-width: 768px) {
    .site-closure-modal {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .closure-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .site-closure-modal h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .site-closure-modal p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .closure-signature {
        font-size: 0.9rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .awards-banner {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

/* Additional Content Spacing */
.content-section > * + * {
    margin-top: 1.5rem;
}

/* Improved Strong/Bold */
strong, b {
    font-weight: 600;
    color: #0a0a0a;
}

/* Em/Italic */
em, i {
    font-style: italic;
    color: #404040;
}

