/* ================================================= */
/* Archivo: galeria.css (SOLO estilos de la galería) */
/* ================================================= */

/* Estilos del título de la Galería (específico) */
.gallery-title {
    font-family: var(--font-family);
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--brown-main);
}

/* Estilos de la rejilla de imágenes */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery__item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease;
}

.gallery__img:hover {
    transform: scale(1.05);
}


/* Estilos del Lightbox (Ventana Ampliada) */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(153, 153, 153, 0.85) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.gallery-lightbox.hidden {
    display: none;
}

.gallery-lightbox__modal {
    max-width: 95%;
    max-height: 95%;
}

.gallery-lightbox__img-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__img {
    width: 100%;
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: auto;
    border: 5px solid black;
    border-radius: 8px;
    pointer-events: none;
}

/* Controladores (Flechas y Cruz) */
.gallery-lightbox__control {
    position: absolute;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
}

.icon-back,
.icon-next {
    color: white;
    font-size: 2rem;
    background: none;
    padding: 0;
    border: none;
    text-shadow: 0 0 4px black;
}

.icon-back {
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.icon-next {
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* OCULTAMOS la cruz de cierre (tu petición) */
.icon-close {
    display: none !important;
}

/* ================================================= */
/* 10. ESTILOS PARA EL TÍTULO DE LA GALERÍA (CORREGIDO A AZUL OSCURO) */
/* ================================================= */

.galeria-contenido {
    max-width: 1200px;
    margin: 40px auto 20px auto;
    padding: 0 15px;
}

/* Estilo del Título H2 */
.galeria-contenido .galeria-titulo {
    font-size: 1.8rem;
    font-family: Tahoma, sans-serif;
    text-align: center;
    color: #0d47a1;
    /* ⬅️ ¡AZUL FUERTE INSTITUCIONAL! */
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
}

/* RESPONSIVE de la galería */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox__img {
        border: 5px solid white;
    }
}