/**
 * ========================================================================
 * ARCHIVO: video-bg.css
 * PROYECTO: MOTELWEB.VIP
 * VERSIÓN: 1.0.0
 * FECHA DE PRODUCCIÓN: 2026-09-15
 * DESCRIPCIÓN: Fondo de video/imagen para módulos (celebraciones, etc).
 * ========================================================================
 */

.contenedorVideoFondo video {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
}

.video-fondo-celebraciones,
.imagen-fondo-celebraciones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.video-fondo-celebraciones video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* El overlay del video quedó deprecado.
   Ahora el sistema de templates controla el overlay vía .module-has-overlay.
   Se deja la clase por compatibilidad pero sin fondo. */
.video-overlay {
    display: none;
}

.imagen-fondo-celebraciones {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.modulo-info .grid-container {
    position: relative;
    z-index: 2;
}

/* Solo aplica al módulo Celebraciones (deco) — NO a Info Básica (#info).
   Así Info Básica puede heredar el color del template. */
.modulo-info#celebraciones h2,
.modulo-info#celebraciones .titulo,
.modulo-info#celebraciones .grid-container div {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}