/* 🎄 TEMA NAVIDEÑO - Temporal Diciembre 2025 🎄 */

/* Gorrito de Santa en el icono del navbar */
.brand-icon {
    position: relative;
}

.brand-icon::before {
    content: '🎅';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
    z-index: 10;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Animación de nieve cayendo */
.snowflake {
    position: fixed;
    top: -10px;
    z-index: 9999;
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
    100% {
        opacity: 0.3;
        transform: translateY(100vh) rotate(360deg);
    }
}

/* Decoración navideña en el hero */
.hero::after {
    content: '🎄';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 40px;
    opacity: 0.3;
    z-index: 5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Luces navideñas en el navbar (opcional) */
@keyframes lights {
    0%, 100% { color: #ff0000; text-shadow: 0 0 10px #ff0000; }
    33% { color: #00ff00; text-shadow: 0 0 10px #00ff00; }
    66% { color: #ffff00; text-shadow: 0 0 10px #ffff00; }
}

/* Mensaje navideño sutil */
.navbar::after {
    content: '✨ ¡Felices Fiestas! ✨';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

/* Efecto de escarcha en los bordes */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 
                inset 0 -2px 0 rgba(255, 255, 255, 0.1);
}

/* Copos de nieve en el fondo del hero (CSS puro) */
.hero::before {
    z-index: 4 !important;
}

/* Responsive - reducir efectos en móvil */
@media (max-width: 768px) {
    .brand-icon::before {
        font-size: 16px;
        top: -6px;
        right: -6px;
    }
    
    .hero::after {
        font-size: 30px;
        bottom: 10px;
        right: 10px;
    }
    
    .navbar::after {
        display: none; /* Ocultar mensaje en móvil */
    }
}
