/* /css/gallery-detail.css */

/* Contenedor principal de la galería */
.detail-gallery {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

/* Capa para el fondo borroso */
.detail-gallery-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.15);
    z-index: 1;
}

/* Contenedor de la vista principal (imagen o video) */
.detail-gallery-main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* La IMAGEN dentro de la vista principal */
.detail-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* EL VIDEO (IFRAME) DENTRO DE LA VISTA PRINCIPAL */
.detail-gallery-main iframe {
    width: 100%;
    height: 100%;
}

/* Contenedor de las miniaturas */
.detail-gallery-thumbnails {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 8px;
}

/* Estilo de cada miniatura */
.detail-thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
}
.detail-thumbnail.active { border-color: #007bff; }
.detail-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

/* Oculta el fondo borroso cuando hay un video */
.detail-gallery.video-active .detail-gallery-background {
    display: none;
}