/*Galería Destacada*/

div.inicio-gallery{
    border-top: none;
    padding-top: 0px;
}

.gallery {
    display: flex;
    gap: 10px;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-column img {
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
}

.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8) url("../img/loading.gif") center center no-repeat;
    background-size: 48px 48px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10001;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}


.lightbox .close, .lightbox .prev, .lightbox .next {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0px;
    font-weight: bold;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    background: url("../img/regresar.png") var(--rojo) center center no-repeat;
    background-size: 32px auto;
    content: none;
    border-radius: 5px;
}

.lightbox .prev {
    position: absolute;
    font-size: 0px;
    left: 20px; top: 50%; transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../img/back.png") var(--verde) center center no-repeat;
    background-size: 30px auto;
    border: none;
}

.lightbox .next{
    position: absolute;
    font-size: 0px;
    right: 20px; top: 50%; transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../img/next.png") var(--verde) center center no-repeat;
    background-size: 30px auto;
    border: none;
}

/*.btn-galeria:disabled{*/
/*    opacity: 0.3;*/
/*}*/

.lightbox .disabled {
    cursor: not-allowed;
    opacity: 0.5;
}


.container-inicio-galerias div.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 5 columnas de igual tamaño */
    grid-template-rows: auto; /* Filas ajustadas al contenido */
    gap: 10px; /* Espaciado entre imágenes */
    width: 100%;
    margin: auto;
}

.container-inicio-galerias div.gallery img {
    width: 100%; /* Ajusta el ancho automáticamente */
    height: auto; /* Mantiene la proporción */
    object-fit: cover; /* Ajusta las imágenes dentro del espacio */
    border-radius: 5px;
    cursor: pointer;
}

.container-galeria-destacada{
    background: var(--negro);
}

/*Reserva Galeria - Asegura que la imagen se centre dentro del lightbox*/

.lightbox-reserva {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8) url("../img/loading.gif") center center no-repeat;
    background-size: 48px 48px;
    display: none; /* Ocultar al inicio */
    justify-content: center; /* Centrado horizontal */
    align-items: center;     /* Centrado vertical */
    z-index: 10001;
    overflow: hidden;  /* Asegura que nada se desborde fuera del contenedor */
}

.lightbox-reserva img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block;
}

.reserva-p-enlace{
    text-align: center;
}

.reserva-p-enlace a{
    display: inline-block;
    padding: 10px 20px;
    width: auto;
    font-size: 18px;
    font-weight: 400;
    margin: 0px 5px;
    border-radius: 5px;
    min-width: 120px;
    text-decoration: none;
}


.lightbox-reserva .disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.lightbox-caption {
    color: #fff;
    font-size: 18px;
    margin-top: 5px;
    text-align: center;
    max-width: 90%;
    word-wrap: break-word;
}


