/* Snowfall Animation Styles */

/* Hero section enhancements for snowfall */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

/* Add a subtle gradient overlay to make snowflakes more visible */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(230, 240, 255, 0.1) 50%,
        rgba(210, 230, 255, 0.05) 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Enhance text visibility with subtle text shadow */
.hero-content h1,
.hero-content p {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

/* Add a subtle glow effect to buttons */
.hero-buttons .btn {
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible !important;
    display: inline-flex !important;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: blue;
    backdrop-filter: blur(5px);
    opacity: 1;
    visibility: visible !important;
    display: inline-flex !important;
    border: 2px solid blue;
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.2);
}

/* Enhance hero image with subtle glow */
.hero-image {
    position: relative;
    z-index: 5;
}

.hero-image img {
    filter: drop-shadow(0 5px 20px rgba(255, 255, 255, 0.3));
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-10deg);
    }
    100% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

/* Add a subtle pulse animation to the hero badge */
.hero-badge {
    animation: pulse-glow 3s infinite alternate ease-in-out;
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #f72585 0%, #7209b7 100%) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 10px rgba(247, 37, 133, 0.5);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 25px rgba(247, 37, 133, 0.8);
        transform: scale(1.05);
    }
}