/*
Theme Name: Mama Negra 2026
Theme URI: https://mamanegra.latacunga.gob.ec
Author: Dirección de Tecnologías de la Información y Comunicación
Description: Theme oficial para el sitio web Mama Negra 2026 del GAD Municipal de Latacunga.
Version: 1.0.0
Text Domain: mamanegra-2026
*/
/* =====================================================
   LIGHTBOX GALERÍA
===================================================== */

.galeria-lightbox {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px;

    background: rgba(25, 0, 10, 0.94);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 999999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


/* CUANDO SE ABRE */
.galeria-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* FOTO AMPLIADA */
.galeria-lightbox img {
    display: block;

    width: auto;
    height: auto;

    max-width: 88vw;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.6);

    transform: scale(0.92);

    transition: transform 0.35s ease;
}


.galeria-lightbox.active img {
    transform: scale(1);
}


/* BOTÓN CERRAR */
.galeria-lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #f3c24c;
    border-radius: 50%;

    background: #710029;

    color: #f3c24c;

    font-size: 32px;

    cursor: pointer;

    z-index: 20;
}


/* FLECHAS */
.galeria-lightbox-prev,
.galeria-lightbox-next {
    position: absolute;

    top: 50%;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: none;
    border-radius: 50%;

    background: #fff;

    color: #710029;

    font-size: 38px;

    cursor: pointer;

    z-index: 20;
}


.galeria-lightbox-prev {
    left: 30px;
}


.galeria-lightbox-next {
    right: 30px;
}


.galeria-lightbox-prev:hover,
.galeria-lightbox-next:hover {
    background: #f3c24c;
}


/* BLOQUEA EL SCROLL DEL FONDO */
body.lightbox-open {
    overflow: hidden;
}


/* RESPONSIVE */
@media (max-width: 600px) {

    .galeria-lightbox {
        padding: 20px;
    }

    .galeria-lightbox img {
        max-width: 94vw;
        max-height: 80vh;
    }

    .galeria-lightbox-prev {
        left: 10px;
    }

    .galeria-lightbox-next {
        right: 10px;
    }

    .galeria-lightbox-prev,
    .galeria-lightbox-next {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .galeria-lightbox-close {
        top: 15px;
        right: 15px;

        width: 42px;
        height: 42px;
    }

}