/* =========================
   GALLERY PAGE CSS
========================= */

.gallery-banner {

    height: 50vh;

    background: url('../images/banners/banner3.jpg') center/cover no-repeat;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

}

.banner-overlay {

    position: absolute;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.6);

}

.banner-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

}

.banner-content h1 {

    font-size: 52px;

    margin-bottom: 10px;

}

.gallery-section {

    padding: 80px 0;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 10px;

    cursor: pointer;

}

.gallery-item img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: 0.4s;

}

.gallery-item:hover img {

    transform: scale(1.1);

}

/* LIGHTBOX */

.lightbox {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0,0,0,0.9);

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 9999;

}

.lightbox-img {

    max-width: 90%;

    max-height: 85%;

    border-radius: 10px;

}

.close-btn {

    position: absolute;

    top: 30px;

    right: 40px;

    color: #fff;

    font-size: 40px;

    cursor: pointer;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width: 768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .banner-content h1 {

        font-size: 34px;

    }

    .gallery-item img {

        height: 240px;

    }

}

@media(max-width: 480px) {

    .banner-content h1 {

        font-size: 28px;

    }

    .banner-content p {

        font-size: 14px;

        padding: 0 10px;

    }

}