﻿/* ================= GALLERY SECTION ================= */

.gallery-section {
    background: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    /* Hover Zoom */
    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

    .gallery-overlay h5 {
        font-size: 16px;
        font-weight: 600;
        margin: 0;
    }

/* ================= LIGHTBOX ================= */

.gallery-lightbox {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 768px) {
    .gallery-item img {
        height: 220px;
    }
}
