.gallery-section {
    padding: 80px 60px;
    text-align: center;
    margin-top: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 80px;
}

.gallery-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}

.gallery-thumb:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 94vw;
    max-height: 80vh;
    border-radius: 18px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
}

.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.8rem;
    color: #f9c846;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

@media (max-width:600px) {
    .gallery-thumb {
        height: 120px;
    }

    .lightbox-close {
        top: 14px;
        right: 12px;
        font-size: 2.1rem;
    }
}