/**
 * memorial-gallery.css
 * Styly pro filmový pás fotogalerie (Swiper) v memoriálu.
 * memorial.css je off-limits – veškeré gallery styly jsou zde.
 */

/* ── Wrapper kolem Swiperu ─────────────────────────────────────── */
.gallery-swiper-wrapper {
    width: 80%;
    margin: 30px auto;
    position: relative;
}

/* ── Swiper kontejner ──────────────────────────────────────────── */
.gallery-swiper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* ── Jednotlivý slide ──────────────────────────────────────────── */
.gallery-swiper-slide {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    border: 2px solid #c8a14f;
    overflow: hidden;
    cursor: pointer;
}

.gallery-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-swiper-slide:hover img {
    transform: scale(1.05);
}

/* ── Popisek pod fotkou ────────────────────────────────────────── */
.gallery-swiper-caption {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    color: #555;
    text-align: center;
    padding: 5px 6px 3px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid #e8d9c0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Navigační šipky – zlatá barva webu ───────────────────────── */
.gallery-swiper-prev,
.gallery-swiper-next {
    color: #c8a14f !important;
}

.gallery-swiper-prev::after,
.gallery-swiper-next::after {
    font-size: 1.4rem !important;
    font-weight: bold;
}

.swiper-button-disabled.gallery-swiper-prev,
.swiper-button-disabled.gallery-swiper-next {
    opacity: 0.3;
}

/* ── Popisek pro grid (1-2 fotky) ─────────────────────────────── */
.gallery-caption {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    color: #555;
    text-align: center;
    padding: 4px 6px;
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid #e8d9c0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Responzivita ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .gallery-swiper-wrapper {
        width: 100%;
        margin: 20px 0;
        border-radius: 0;
    }
    .gallery-swiper {
        border-radius: 0;
    }
    .gallery-swiper-slide {
        border-radius: 6px;
    }
}

/* ── Editor: popisek pod fotkou v editačním formuláři ─────────── */
.photo-caption-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 6px;
    padding: 5px 8px;
    font-family: 'Lora', serif;
    font-size: 0.78rem;
    color: #333;
    background: rgba(255,255,255,0.85);
    border: 1px solid #d4b896;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.photo-caption-input:focus {
    border-color: #c8a14f;
    background: #fff;
}

.photo-caption-input::placeholder {
    color: #aaa;
    font-style: italic;
}
