/* ============================================================
   MEC Gallery Lightbox – Styles
   ============================================================ */

/* Hover-Cursor: Lupe – nur bei den Galerie-Thumbnails */
.mec-event-gallery-list li img {cursor: zoom-in;}

/* ── Overlay ─────────────────────────────────────────────── */
.mec-lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.mec-lb-overlay.mec-lb-open {
    opacity: 1;
    pointer-events: all;
}

/* ── Bild-Container ──────────────────────────────────────── */
.mec-lb-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mec-lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    transition: opacity 0.2s ease;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; /* Swipe-Touch geht ans Overlay, nicht ans Bild */
}
.mec-lb-img.mec-lb-loading {
    opacity: 0.3;
}

/* ── Buttons (gemeinsam) ─────────────────────────────────── */
.mec-lb-btn {
    position: fixed;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, transform 0.15s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    z-index: 100001;
}
.mec-lb-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.1);
}
.mec-lb-btn:active {
    transform: scale(0.95);
}

/* Schliessen */
.mec-lb-close {
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    font-size: 26px;
}

/* Vor / Zurück – Desktop: vertikal zentriert */
.mec-lb-prev,
.mec-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 32px;
}
.mec-lb-prev:hover,
.mec-lb-next:hover {
    transform: translateY(-50%) scale(1.1);
}
.mec-lb-prev:active,
.mec-lb-next:active {
    transform: translateY(-50%) scale(0.95);
}
.mec-lb-prev {
    left: 14px;
}
.mec-lb-next {
    right: 14px;
}

/* Ausblenden wenn nur 1 Bild */
.mec-lb-overlay.mec-lb-single .mec-lb-prev,
.mec-lb-overlay.mec-lb-single .mec-lb-next {
    display: none;
}

/* ── Info-Bereich (Beschriftung + Counter) ──────────────────── */
.mec-lb-info {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80vw;
    text-align: center;
    pointer-events: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mec-lb-caption {
    display: none; /* per JS eingeblendet, wenn Text vorhanden */
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.mec-lb-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* ── Responsive Mobile ───────────────────────────────────── */
@media (max-width: 600px) {
    .mec-lb-img {
        max-width: 96vw;
        max-height: 75vh; /* Platz für Buttons unten */
    }

    /* Buttons auf Mobile: unter dem Bild, nicht darüber */
    .mec-lb-prev,
    .mec-lb-next {
        top: 80%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        font-size: 28px;
        background: rgba(255, 255, 255, 0.18);
    }
    .mec-lb-prev:hover,
    .mec-lb-next:hover {
        transform: translateY(-50%) scale(1.1);
    }
    .mec-lb-prev:active,
    .mec-lb-next:active {
        transform: translateY(-50%) scale(0.95);
    }
    .mec-lb-prev {
        left: 20%;
    }
    .mec-lb-next {
        right: 20%;
        left: auto;
    }

    .mec-lb-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .mec-lb-info {
        bottom: 10px;
        max-width: 90vw;
    }

    .mec-lb-caption {
        font-size: 13px;
    }
}