/* css3.css - Videography Page Specific Styles */


/* =========================
   VIDEOGRAPHY HERO
========================= */
.videography-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
}

.videography-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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.8" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}


/* =========================
   VIDEO GALLERY
========================= */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.video-thumb {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   PLAY OVERLAY
========================= */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.video-gallery h3 {
    margin: 0.5rem 0;
    font-size: 1.3rem;
}


/* =========================
   LOCAL / FEATURED VIDEO
========================= */
.featured-video {
    grid-column: 1 / -1;
    height: 400px;
}

.local-video {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}


/* =========================
   VIDEO SUBHEADING
========================= */
.video-subheading {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================
   VIDEO CAPTIONS
========================= */
.video-caption {
    text-align: center;
    margin-top: 1rem;
    color: #333;
}

.video-caption h3 {
    margin: 0;
    font-size: 1.5rem;
}

.video-caption h4 {
    font-size: 0.95rem;
    margin: 6px 0 4px;
    font-weight: 500;
    opacity: 0.85;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .video-item {
        height: 200px;
    }

    .featured-video {
        height: 300px;
    }

    .play-btn {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .video-item {
        height: 180px;
    }
}