/* ===== MEDIA & IMPACT PAGE STYLES ===== */

/* Page Header with Image Overlay */
.page-header.media-header {
    background: linear-gradient(135deg, rgba(242, 140, 56, 0.85), rgba(224, 122, 32, 0.85)), url('images/trivibe.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Impact Stats Section */
.impact-stats-section {
    padding: 80px 0;
    background: #FDF7F0;
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.impact-stat-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #F28C38;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1D4A5F;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.stat-symbol {
    font-size: 2rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

/* Podcasts Section */
.podcasts-section {
    padding: 80px 0;
    background: white;
}

.podcasts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.podcast-card {
    background: #FDF7F0;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.podcast-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.podcast-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.podcast-card:hover .podcast-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.podcast-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-btn-large {
    width: 60px;
    height: 60px;
    background: #F28C38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
}

.play-btn-large:hover {
    transform: scale(1.1);
    background: #E07A20;
    color: white;
}

.podcast-content {
    padding: 24px;
}

.podcast-episode {
    display: inline-block;
    background: #F28C38;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.podcast-content h3 {
    font-size: 1.3rem;
    color: #1D4A5F;
    margin-bottom: 12px;
}

.podcast-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.podcast-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 0.8rem;
    color: #888;
}

.podcast-meta i {
    margin-right: 6px;
    color: #F28C38;
}

.btn-listen {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1D4A5F;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-listen:hover {
    background: #F28C38;
    color: white;
}

/* Documentaries Section */
.documentaries-section {
    padding: 80px 0;
    background: #FDF7F0;
}

.documentaries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 48px auto 0;
}

.documentary-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.documentary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.documentary-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.documentary-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.documentary-card:hover .documentary-thumbnail img {
    transform: scale(1.05);
}

.documentary-content {
    padding: 24px;
    text-align: center;
}

.documentary-content h3 {
    font-size: 1.3rem;
    color: #1D4A5F;
    margin-bottom: 12px;
}

.documentary-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.coming-soon {
    display: inline-block;
    background: #FDF7F0;
    color: #F28C38;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 48px auto 0;
    overflow: hidden;
    position: relative;
}

.testimonial-card {
    padding: 0 20px;
}

.testimonial-content {
    background: #FDF7F0;
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: #F28C38;
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1D4A5F;
    font-size: 1rem;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #F28C38;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.slider-prev,
.slider-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1D4A5F;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: #F28C38;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .impact-stats-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .podcasts-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .documentaries-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonial-content {
        padding: 24px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .podcast-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .podcast-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-listen {
        width: 100%;
        justify-content: center;
    }
}
/* ===== GALLERY SECTION STYLES ===== */
.gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 16px 12px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: white;
    font-size: 0.85rem;
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 16px;
    font-size: 1rem;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    border-radius: 40px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-lightbox:hover {
    color: #F28C38;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 70%;
    }
}