/* ===========================
   GALLERY HERO
=========================== */

.gallery-banner{

    background:#14532d;
    color:white;
    text-align:center;
    padding:70px 20px;

}

.gallery-banner h1{

    font-size:42px;
    margin-bottom:15px;

}

.gallery-banner p{

    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;

}

/* ===========================
   GALLERY SECTION
=========================== */

.gallery-container{

    width:90%;
    max-width:1300px;
    margin:60px auto;

}

/* ===========================
   GALLERY GRID
=========================== */

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

/* ===========================
   GALLERY CARD
=========================== */

.gallery-card{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-card img{

    width:100%;
    height:260px;
    object-fit:cover;

}

/* ===========================
   CARD CONTENT
=========================== */

.gallery-content{

    padding:20px;

}

.gallery-content h3{

    color:#14532d;
    margin-bottom:10px;

}

.gallery-content .category{

    display:inline-block;
    background:#22c55e;
    color:white;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;

}

.gallery-content p{

    color:#666;
    line-height:1.7;

}

/* ===========================
   EMPTY GALLERY
=========================== */

.empty-gallery{

    text-align:center;
    padding:80px 20px;

}

.empty-gallery h2{

    color:#14532d;

}

.empty-gallery p{

    color:#777;
    margin-top:10px;

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.gallery-banner h1{

    font-size:32px;

}

.gallery-banner p{

    font-size:16px;

}

}
/* ===========================
   LIGHTBOX
=========================== */

#lightbox{

    display:none;

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.95);

    justify-content:center;

    align-items:center;

    z-index:9999;

}

#lightbox-image{

    max-width:90%;

    max-height:90%;

    border-radius:10px;

}

.close-btn{

    position:absolute;

    top:25px;

    right:40px;

    color:white;

    font-size:50px;

    cursor:pointer;

}

.gallery-image{

    cursor:pointer;

}

/* ===========================
   FILTER BUTTONS
=========================== */

.gallery-filter{

    text-align:center;

    margin-bottom:40px;

}

.filter-btn{

    padding:12px 24px;

    margin:8px;

    border:none;

    border-radius:30px;

    background:#14532d;

    color:white;

    cursor:pointer;

    transition:.3s;

    font-size:15px;

}

.filter-btn:hover{

    background:#22c55e;

}

.filter-btn.active{

    background:#22c55e;

}