body{
    font-family: 'Barlow Condensed', sans-serif;
}

.gallery-hero {
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
}

.gallery-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.video-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-container {
    border-radius: 8px;
    overflow: hidden;
}

.video-title {
    font-weight: 600;
    text-align: center;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-hero {
        height: 30vh;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
}



