/* Deepavali Theme */
.festive-deepavali {
    position: relative;
}

.festive-deepavali .hero {
    background: 
        linear-gradient(rgba(26, 26, 46, 0.75), rgba(15, 52, 96, 0.75)),
        url('/Images/festivals/diwali.jpg') no-repeat center center;
    background-size: contain;
    background-color: #1a1a2e;
    position: relative;
}

.festive-deepavali .hero::before {
    content: '🪔';
    position: absolute;
    font-size: 8rem;
    opacity: 0.2;
    top: 20%;
    right: 10%;
    animation: flicker 2s ease-in-out infinite;
}

.festive-deepavali .hero::after {
    content: '✨';
    position: absolute;
    font-size: 6rem;
    opacity: 0.2;
    bottom: 20%;
    left: 10%;
    animation: sparkle 3s ease-in-out infinite;
}

.festive-deepavali header {
    background: rgba(26, 26, 46, 0.95) !important;
}

.festive-deepavali .cta-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5) !important;
}

/* Fireworks Effect */
.firework {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

.firework-particle {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

@keyframes flicker {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@keyframes rocket {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-400px);
        opacity: 0;
    }
}

.festive-deepavali .festive-banner {
    background: linear-gradient(90deg, #0f3460 0%, #ff6b35 20%, #1a1a2e 40%, #f7931e 60%, #0f3460 80%, #ff6b35 100%);
    box-shadow: none;
    border: none;
}

.festive-deepavali .festive-message {
    background: linear-gradient(90deg, #ffd700 0%, #ff6b35 25%, #ffd700 50%, #f7931e 75%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-text 3s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

@keyframes glow-text {
    to {
        background-position: 200% center;
    }
}
