/* --- --- --- GALLERY STYLES --- --- --- */
#gallery {
    width: 100%;
    background: linear-gradient(180deg, #eafae5 0%, #d4edc3 100%);
    padding: 20px;
}

#gallery h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* --- Lightbox styles --- */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050; /* above everything else */
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    user-select: none;
}
  