/* E-Motion Documentary specific styles */
.documentary-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-dark) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.documentary-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="rgba(184,115,51,0.1)" d="M50,10 Q90,50 50,90 Q10,50 50,10 Z"/><circle fill="rgba(184,115,51,0.05)" cx="50" cy="50" r="20"/></svg>') repeat;
    background-size: 150px 150px;
    animation: emotionalWave 20s ease-in-out infinite;
}

@keyframes emotionalWave {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.05); opacity: 0.9; }
}

.documentary-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.documentary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.documentary-poster {
    text-align: center;
}

.documentary-poster img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.documentary-poster:hover img {
    transform: scale(1.02);
}

.documentary-info h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.documentary-tagline {
    font-size: 1.3rem;
    color: var(--accent-copper-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.documentary-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.documentary-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-copper);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-copper);
    color: white;
    border: 2px solid var(--accent-copper);
}

.btn-primary:hover {
    background: var(--accent-copper-dark);
    border-color: var(--accent-copper-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.trailer-section {
    padding: 80px 0;
    background: var(--bg-cream);
    text-align: center;
}

.trailer-section h2 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.trailer-section .subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.trailer-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(45deg, var(--primary-navy), var(--accent-copper));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.trailer-caption {
    color: var(--text-gray);
}

.themes-section {
    padding: 80px 0;
    background: var(--bg-cream);
}

.themes-section h2 {
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.themes-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.theme-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-copper);
}

.theme-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-copper), var(--accent-copper-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.experts-section {
    padding: 80px 0;
    background: white;
}

.experts-section h2 {
    text-align: center;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.experts-section .subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.expert-card {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.expert-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid var(--accent-copper);
}

.expert-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.expert-title {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.about-section {
    padding: 80px 0;
    background: white;
}

.about-section h2 {
    color: var(--primary-navy);
    margin-bottom: 2rem;
}

.about-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.key-insights {
    background: var(--bg-cream);
    padding: 2rem;
    border-radius: 15px;
}

.key-insights h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.insight-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.insight-list li::before {
    content: '✦';
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.key-insights .cta-section {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .documentary-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .documentary-stats {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .video-placeholder {
        height: 300px;
    }
}
/* Mobile essentials */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container, * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Touch targets */
    a, button, .cta-button, .btn-primary, .btn-secondary {
        min-height: 44px;
        padding: 0.75rem 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title, h1 {
        font-size: 2rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title, h1 {
        font-size: 1.75rem;
    }
}