.gallery-section {
    background-color: #000;
    padding: 150px 0 100px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 0;
    /* ✅ ensures content layers above the background */

    /* base tone */
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    filter: sepia(0.3) contrast(1.1) brightness(0.9);
}

/* ✨ add vintage film textures & light leaks */
.gallery-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 10%, rgba(255, 120, 0, 0.15), transparent 70%),
        radial-gradient(circle at 70% 90%, rgba(255, 0, 150, 0.1), transparent 70%),
        radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 2px 2px;
    background-blend-mode: screen;
    opacity: 0.4;
    pointer-events: none;
    animation: flicker 6s infinite ease-in-out alternate;
    z-index: -2;
    /* ✅ push the light leaks behind the gallery */
}

/* 📽 subtle vignette edges */
.gallery-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: -1;
    /* ✅ vignette sits behind content but above background */
}

/* 🎞 subtle flicker animation */
@keyframes flicker {

    0%,
    100% {
        opacity: 0.35;
        transform: translate(0, 0);
    }

    50% {
        opacity: 1;
        transform: translate(-1%, 0%);
    }
}

.container_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    max-width: 1000px;
    height: 500px; 
    transition: all 0.5s ease;
}

.box_1 {
    flex: 1;
    height: 110%;
    background-image: var(--img_1);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
    filter: grayscale(0%) opacity(100%);
    border-radius: 6px;
    border: 1px solid #fff;
    /* cursor: pointer; */
}

.box_1:hover {
    flex: 7;
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* 📱 Responsive for Tablet Portrait */
@media (max-width: 768px) {
    .container_1 {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .box_1 {
        width: 100%;
        height: 200px;
        flex: none;
        transition: all 0.4s ease;
    }

    .box_1:hover {
        height: 600px;
        /* expands vertically instead of horizontally */
        flex: none;
        transform: scale(1.02);
    }
}

/* 📱 Responsive for Mobile */
@media (max-width: 425px) {
    .container_1 {  
        flex-direction: column;
        width: 80%;
        height: auto;
    }

    .box_1 {
        width: 100%;
        height: 200px;
        flex: none;
        transition: all 0.4s ease;
    }

    .box_1:hover {
        height: 310px;
        /* expands vertically */
        flex: none;
        transform: scaleY(1.05);
        /* ✅ only expands along Y-axis */
        filter: grayscale(0%) opacity(100%);
    }
}

.video-container_1 {
    position: relative;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.video-container_1 video {
    width: 100%;
    max-height: 900px;
    object-fit: contain;
    background-color: #000;
}

/* Facebook-like mute button */
.mute-btn {
    position: absolute;
    bottom: 16px;
    right: 32px;
    background: none;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
    backdrop-filter: blur(6px);
    padding: 0;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.mute-btn img {
    width: 18px;
    height: 18px;
    transition: opacity 0.25s ease;
    /* filter: invert(1); */
    /* makes white icons visible on dark bg */
}

@media (max-width: 768px) {
    /* Facebook-like mute button */
        .mute-btn {
            width: 30px;
            height: 30px;
        }

                .mute-btn:hover {
                    background: rgba(255, 255, 255, 0.3);
                    transform: scale(1.05);
                }
        
                .mute-btn img {
                    width: 16px;
                    height: 16px;
                    transition: opacity 0.25s ease;
                    /* filter: invert(1); */
                    /* makes white icons visible on dark bg */
                }
}

@media (max-width: 425px) {

    /* Facebook-like mute button */
    .mute-btn {
        width: 20px;
        height: 20px;
            bottom: 16px;
                right: 22px;
    }

    .mute-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.05);
    }

    .mute-btn img {
        width: 12px;
        height: 12px;
        transition: opacity 0.25s ease;
        /* filter: invert(1); */
        /* makes white icons visible on dark bg */
    }
}

/* 🖼️ Poster Section Layout */
.poster_1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    text-align: left;
}

/* 📷 Poster Image */
.poster_1 img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.poster_1 img:hover {
    transform: scale(1.02);
}

/* 📝 Poster Text Block */
.poster_1>div:last-child {
    flex: 1;
    color: #fff;
    line-height: 1.7;
}

.poster_1 h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f4c542;
}

.poster_1 p {
    font-size: 1rem;
    margin: 0.4rem 0;
}

.poster_1 span {
    color: #f4c542;
    font-weight: 600;
}

.poster_1 strong {
    color: #fff;
}

/* 🌐 Social Container INSIDE Poster */
.poster_1 .social-container {
    margin-top: 1.8rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.poster_1 .social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Lato', sans-serif;
    transition: transform 0.3s ease;
}

.poster_1 .avatar-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.poster_1 .social-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.poster_1 .social-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* 💫 Hover Effects */
.poster_1 .social-btn:hover .avatar-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.poster_1 .facebook-btn .avatar-wrapper,
.poster_1 .email-btn .avatar-wrapper {
    border-color: #ffffff;
}

/* 📱 Responsive for Tablets */
@media (max-width: 768px) {
    .poster_1 {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .poster_1 img {
        max-width: 75%;
    }

    .poster_1>div:last-child {
        text-align: center;
    }

    .poster_1 h1 {
        font-size: 1.7rem;
    }

    .poster_1 .social-container {
        justify-content: center;
        margin-top: 1.5rem;
    }
}

/* 📱 Responsive for Mobile */
@media (max-width: 425px) {
    .poster_1 img {
        max-width: 100%;
    }

    .poster_1 h1 {
        font-size: 1.4rem;
    }

    .poster_1 p {
        font-size: 0.9rem;
    }

    .poster_1 .avatar-wrapper {
        width: 50px;
        height: 50px;
    }

    .poster_1 .social-label {
        font-size: 0.8rem;
    }

    .poster_1 .social-container {
        gap: 1.2rem;
    }
}