/* ============================================================
   ŠÁPARA – GALERIE
   Závislosti: styles.css (design tokeny --sp-*)
   ============================================================ */

/* ── Sekce galerie ─────────────────────────────────────────── */
.sp-gallery-section {
    padding: var(--sp-section-pad) 0;
}

.sp-gallery-section--dark {
    background-color: var(--sp-blue);
}

/* Nadpis sekce – kopíruje Divi et_pb_text styl */
.sp-gallery-section .et_pb_text_inner h3 {
    font-family: var(--sp-font);
    font-size: 26px;
    font-weight: 700;
    color: var(--sp-blue);
    text-align: center;
    margin: 0 0 1.5rem;
}

/* V modré sekci je nadpis v bílém boxu (kopie Divi et_pb_with_border) */
.sp-gallery-section--dark .et_pb_with_border {
    background: var(--sp-white);
    display: inline-block;
    padding: .5rem 2rem;
    width: 100%;
}

/* ── Grid 4 sloupce ────────────────────────────────────────── */
.sp-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: var(--sp-container);
    margin: 0 auto;
    padding: 0 var(--sp-gap);
}

@media (max-width: 980px) {
    .sp-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sp-gallery__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2px;
    }
}

/* ── Položka galerie ───────────────────────────────────────── */
.sp-gallery__item {
    margin: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 400 / 284;
}

.sp-gallery__link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.sp-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.sp-gallery__link:hover .sp-gallery__img,
.sp-gallery__link:focus-visible .sp-gallery__img {
    transform: scale(1.06);
}

/* Zoom overlay icon */
.sp-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50, 60, 110, 0.5);
    color: #fff;
    opacity: 0;
    transition: opacity .25s ease;
}

.sp-gallery__link:hover .sp-gallery__zoom,
.sp-gallery__link:focus-visible .sp-gallery__zoom {
    opacity: 1;
}


#z-nasich-sazenic > div > div > div:nth-child(1){
        background-color: var(--sp-blue);
}


#sp-gallery-title-2{
    color: #fff;
}



/* ── Lightbox ──────────────────────────────────────────────── */
.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-lightbox[hidden] {
    display: none;
}

/* Obrázek */
.sp-lightbox__img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    transition: opacity .15s ease;
}

/* Tlačítka navigace */
.sp-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .5);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.sp-lightbox__nav:hover,
.sp-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, .25);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sp-lightbox__nav--prev { left: 1rem; }
.sp-lightbox__nav--next { right: 1rem; }

/* Zavřít */
.sp-lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
}

.sp-lightbox__close:hover,
.sp-lightbox__close:focus-visible {
    background: rgba(255, 255, 255, .25);
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* Popisek */
.sp-lightbox__caption {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-align: center;
    margin: 0;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80vw;
}

/* sr-only (pokud není v styles.css) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



.sp-lightbox__nav,
.sp-lightbox__close {
    color: #ffffff;
}

.sp-lightbox__nav svg,
.sp-lightbox__close svg {
    display: block;
    flex-shrink: 0;
    color: #ffffff;
}