/* Christmas Theme Styles */

/* Ensure hero has relative positioning for snow */
.hero {
    position: relative;
}

/* Snowflakes Animation - Hero and Loader */
.hero .christmas-snow,
.page-loader .christmas-snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    animation: snowfall linear infinite;
    user-select: none;
    filter: blur(0.5px);
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(50px) rotate(360deg);
        opacity: 0.6;
    }
}

/* Santa Sleigh Animation - REMOVED */
/* Removed to keep only background snow effect */

/* Christmas Button Decorations - REMOVED */
/* Removed all Christmas icons from buttons */

@keyframes treeGlow {
    0%, 100% {
        filter: brightness(1);
        transform: translateY(-50%) scale(1);
    }
    50% {
        filter: brightness(1.3);
        transform: translateY(-50%) scale(1.1);
    }
}

@keyframes giftBounce {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        transform: translateY(-55%) rotate(-5deg);
    }
    75% {
        transform: translateY(-45%) rotate(5deg);
    }
}

/* Christmas Lights on Headers - REMOVED */
/* Removed sparkle icons from headers */

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Christmas Border Glow */
.card,
.feature-card,
.service-card,
.pricing-card {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1), 0 0 40px rgba(0, 255, 0, 0.1) !important;
    animation: christmasGlow 3s ease-in-out infinite;
}

@keyframes christmasGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.2), 0 0 40px rgba(0, 255, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.2), 0 0 50px rgba(255, 0, 0, 0.1);
    }
}

/* Christmas Ornaments on Corners - REMOVED */
/* Removed tree and snowman from corners */

@keyframes ornamentSwing {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes snowmanWave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* Festive Cursor Trail */
.custom-cursor .cursor-dot {
    background: radial-gradient(circle, #ff0000, #00ff00) !important;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5), 0 0 20px rgba(0, 255, 0, 0.3) !important;
}

/* Christmas Navbar Decoration - REMOVED */
/* Removed Christmas icons from navbar */

@keyframes navDecoBlink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .santa-sleigh {
        font-size: 2rem;
    }
    
    .cta-button::before,
    .cta-button::after,
    .btn-primary::before,
    .btn-primary::after {
        font-size: 1em;
        left: -20px;
        right: -20px;
    }
    
    body::before,
    body::after {
        font-size: 1.5rem;
    }
}
