/*==========================
Gallery Page
==========================*/

.gallery-page{
    width:86%;
    margin:90px auto;
}

.page-banner{
    position: relative;
    background: url("assets/images/nc14.jpg") center center/cover no-repeat;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(112, 112, 112, 0.45); /* Dark overlay */
}

.page-banner .container{
    position: relative;
    z-index: 2;
}

.page-banner h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 68px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-banner p{
    font-size: 16px;
    color: #fff;
}

/*==========================
Grid
==========================*/

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}
/* ==========================
   Lightbox Close Button
========================== */

/* Make sure the close button is displayed */
.lb-data .lb-close{
    display:block !important;
    opacity:1 !important;
    float:right;
    width:40px;
    height:40px;
    background-size:22px 22px !important;
}

.lb-data .lb-close:hover {
    background-color: #ec3aa1;
    transform: rotate(90deg);
}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.gallery-page{
    width:92%;
}

.section-heading h2{
    font-size:38px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-item img{
    height:280px;
}

}
