/* HERO */
.hero-gallery .hero-img {
    height: 350px;
    object-fit: cover;
}

.hero-gallery .hero-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* GALLERY GRID */
.gallery-grid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-thumb {
    transition: transform .4s ease, filter .4s ease;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.gallery-thumb:hover {
    transform: scale(1.07);
    filter: brightness(80%);
}

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

/* Next / Prev Buttons */
.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    padding: 10px 15px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
    font-weight: bold;
    transition: 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: #ffdd99;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

