/* ===============================
   STATIC GALLERY
================================ */

.gallery-box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196,22,28,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

/* ===============================
   LIGHTBOX
================================ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-img {
    max-width: 92%;
    max-height: 92%;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}

/* Mobile full screen */
@media (max-width: 768px) {
    .gallery-box img {
        height: 180px;
    }
}
