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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
    text-wrap: balance;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('assets/hero-background.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(49, 46, 129, 0.8) 100%);
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 1;
    color: #f1f5f9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #e2e8f0;
    line-height: 1.7;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 1;
    font-style: italic;
    color: #cbd5e1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

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

/* Sections */
section {
    padding: 5rem 0;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

/* Trailer Section */
.trailer-section {
    background: #f8fafc;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

#trailer-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* About Section */
.about-section {
    background: white;
}

/* Director Section */
.director-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.director-content {
    max-width: 800px;
    margin: 0 auto;
}

.director-text {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2563eb;
}

.director-intro {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.director-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    text-wrap: balance;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    color: #555;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Tour Section */
.tour-section {
    background: #f8fafc;
}

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

.tour-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-date {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tour-location h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.tour-location p {
    color: #666;
    margin-bottom: 0.25rem;
}

.tour-card .btn {
    width: 100%;
    margin-top: 1rem;
}

.more-dates {
    text-align: center;
    font-size: 1.1rem;
}

.more-dates a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.more-dates a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #1d4ed8;
}

/* Screening Section */
.screening-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.screening-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/hero-background.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.screening-announcement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.screening-badge {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.screening-announcement h2 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.screening-details {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.screening-info {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #dc2626;
    max-width: 600px;
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details {
    flex: 1;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.event-date {
    font-size: 1.1rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.date-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.date-time {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
}

.calendar-dropdown {
    position: relative;
    margin-top: 0.5rem;
}

.calendar-options {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    min-width: 180px;
    overflow: hidden;
}

.calendar-options.show {
    display: block;
}

.calendar-option {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    background: white;
    border: none;
    font-size: 0.85rem;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calendar-option:hover {
    background: #f3f4f6;
}

.calendar-option:first-child {
    border-bottom: 1px solid #e2e8f0;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 6px;
    background: #dc2626;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-small:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

.venue-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

.venue-address {
    font-size: 1.1rem;
    color: #64748b;
}

.venue-city {
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.1rem;
}

.venue-transit {
    margin-top: 0.5rem;
}

.venue-transit a {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.venue-transit a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.screening-description {
    margin-bottom: 2.5rem;
}

.screening-description p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-wrap: balance;
}

.screening-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
}

.screening-actions .btn-primary {
    background: #dc2626;
    color: white;
    border: none;
}

.screening-actions .btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.screening-actions .btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.screening-actions .btn-secondary:hover {
    background: #dc2626;
    color: white;
}

/* Crisis Section */
.crisis-section {
    background: #fef2f2;
    padding: 5rem 0;
}

.crisis-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #dc2626;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.crisis-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.crisis-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
    text-wrap: balance;
}

.crisis-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.crisis-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Resilience Section */
.resilience-section {
    background: white;
    padding: 5rem 0;
}

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

.story-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.story-card p {
    color: #555;
    line-height: 1.6;
    text-wrap: balance;
}

.resilience-quote {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #f1f5f9;
    border-radius: 12px;
    border-left: 4px solid #1e3a8a;
}

.resilience-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #334155;
    margin-bottom: 1rem;
    line-height: 1.8;
    text-wrap: balance;
}

.resilience-quote cite {
    color: #64748b;
    font-weight: 500;
}

/* Directors Section */
.directors-section {
    background: #f8fafc;
    padding: 5rem 0;
}

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

.director-profile {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.director-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.director-placeholder {
    font-size: 3rem;
}

.director-profile h3 {
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.director-title {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.director-profile p {
    color: #555;
    line-height: 1.6;
    text-wrap: balance;
}

.partnership {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.partnership h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.partnership p {
    color: #555;
    line-height: 1.6;
    text-wrap: balance;
}

.production-details, .release-info {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.production-details h3, .release-info h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.production-details p, .release-info p {
    color: #555;
    line-height: 1.6;
    text-wrap: balance;
}

/* Action Section */
.action-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 100%);
    color: white;
    padding: 5rem 0;
}

.action-section .section-intro {
    color: rgba(255, 255, 255, 0.8);
}

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

.action-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.action-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.action-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-wrap: balance;
}

.action-card .btn {
    background: white;
    color: #1e3a8a;
}

.action-card .btn:hover {
    background: #f1f5f9;
}

.impact-statement {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-statement h3 {
    color: white;
    margin-bottom: 1rem;
}

.impact-statement p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.1rem;
    text-wrap: balance;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section a {
    color: #60a5fa;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2 {
        text-align: center;
    }

    .tour-dates {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 90vh;
    }

    h1 {
        font-size: 3rem;
    }

    .tour-card {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
