/* ==========================================================================
   ESTILOS GLOBALES MAESTROS - BENNY DANCE
   ========================================================================== */

/* Tipografía Principal */
body {
    font-family: 'Montserrat', sans-serif;
}

/* --------------------------------------------------------------------------
   FONDOS DE PÁGINA
   -------------------------------------------------------------------------- */

/* Fondo principal (Usado en el Index) con capa oscura para resaltar letras */
.hero-bg {
    background: linear-gradient(to bottom, rgba(0, 71, 171, 0.5), rgba(15, 23, 42, 0.95)),
                url('https://images.unsplash.com/photo-1547153760-18fc86324498?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

/* Fondo claro y limpio (Usado en la página de Reservas) */
.reserva-bg {
    background: linear-gradient(to bottom, rgba(0, 71, 171, 0.05), rgba(250, 250, 250, 1));
}

/* --------------------------------------------------------------------------
   EFECTOS DE TEXTO
   -------------------------------------------------------------------------- */

/* Degradado Neón para Títulos ("Tu Vida", "Es Libertad") */
.text-gradient {
    background: linear-gradient(to right, #CCFF00, #00CEFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* --------------------------------------------------------------------------
   PANTALLA DE CARGA RÁPIDA (PRELOADER)
   -------------------------------------------------------------------------- */

#preloader {
    position: fixed;
    inset: 0;
    background-color: #0047AB; /* Azul Cobalto de la marca */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(204, 255, 0, 0.2);
    border-top-color: #CCFF00; /* Verde Limón brillante */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}