/* Galerijos sekcija */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

/* Lightbox langas */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: flex; /* pridėta justify-content ir align-items veiktų */
}

/* Lightbox paveikslėlis */
.lightbox img {
    max-width: 90%;
    max-height: 80%;
    cursor: pointer;
}

/* Mygtukai: uždaryti, pirmyn, atgal */
.lightbox .close,
.lightbox .prev,
.lightbox .next {
    position: absolute;
    font-size: 30px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox .close {
    top: 20px;
    right: 30px;
}

.lightbox .prev {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.lightbox .next {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
