/* Gallery styles */
.gallery_section{
        padding-bottom: 50px;
}

.gallery_section .title_container h1{
    color: rgb(24,24,24);
    font-size: 36px;
    margin-top: 180px;
    text-align: center;
}

.gallery_section .title_container p{
    text-align:center;
}

.gallery_grid{
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.gallery_item{
    width: 300px;
    border: #3B4528 1px solid;
    border-radius: 10px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery_item img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gallery_item{ width: 90%; }
    .gallery_grid{ padding-left: 5%; padding-right: 5%; }
}

/* Lightbox styles */
.lb-overlay{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
}
.lb-overlay.open{ opacity: 1; visibility: visible; }
.lb-content{ max-width: 92%; max-height: 86%; }
.lb-image{ max-width: 100%; max-height: 80vh; display: block; margin: 0 auto; }
.lb-close, .lb-prev, .lb-next{
    position: absolute;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}
.lb-close{ top: 18px; right: 22px; font-size: 30px; }
.lb-prev{ left: 18px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.lb-next{ right: 18px; top: 50%; transform: translateY(-50%); font-size: 40px; }
.lb-caption{ position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); color: #fff; font-weight: 700; }

@media (max-width: 576px){ .lb-prev, .lb-next{ font-size: 28px; } .lb-close{ font-size: 24px; } }