.page-banner{
    background:#0b6b35;
    color:#fff;
    padding:70px 20px;
    text-align:center;
}

.page-banner h1{
    font-size:42px;
    margin-bottom:10px;
}

.gallery-page{
    padding:70px 20px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.gallery-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card a{
    text-decoration:none;
    color:inherit;
}

.gallery-image{
    width:100%;
    height:240px;
    object-fit:cover;
}

.gallery-content{
    padding:20px;
}

.gallery-content h3{
    color:#0b6b35;
    margin-bottom:10px;
}

.gallery-content p{
    color:#666;
    line-height:1.7;
}






/* =========================================
   GALLERY IMAGE POPUP EFFECT
========================================= */

.gallery-card img{
    transition:.35s;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

.gallery-card{
    overflow:hidden;
}

.gallery-content p{
    margin:0;
    color:#555;
    line-height:1.7;
}

.empty-box{
    width:100%;
    padding:50px;
    background:#fff;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}




.album-meta{
    margin-top:20px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.album-meta span{
    background:#ffffff20;
    color:#fff;
    padding:10px 18px;
    border-radius:25px;
    font-weight:600;
}


.gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}



.gallery-image{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.45s;
}

.gallery-card:hover .gallery-image{
    transform:scale(1.08);
}


.gallery-content{
    padding:20px;
    text-align:center;
}

.gallery-content h3{
    color:#0b6b35;
    margin-bottom:10px;
}

.gallery-content p{
    color:#666;
    line-height:1.7;
}




/* =====================================
   GALLERY LIGHTBOX
===================================== */

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
    padding:30px;
}

.lightbox.show{
    display:flex;
}

.lightbox-image{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
    box-shadow:0 10px 35px rgba(0,0,0,.4);
}

.lightbox-close{
    position:absolute;
    top:20px;
    right:35px;
    color:#fff;
    font-size:42px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

.lightbox-close:hover{
    color:#ffd700;
    transform:scale(1.15);
}

.gallery-popup{
    display:block;
}




.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    color:#fff;

    font-size:60px;

    font-weight:bold;

    cursor:pointer;

    user-select:none;

    padding:15px;

    transition:.3s;

}

.lightbox-prev{

    left:25px;

}

.lightbox-next{

    right:25px;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    color:#ffd700;

    transform:translateY(-50%) scale(1.15);

}
