/* Global styles */
/* Snowflakes animation */
@keyframes snow {
    0% {background-position: 0px 0px, 0px 0px, 0px 0px;}
    100% {background-position: 500px 1000px, 400px 400px, 300px 300px;}
}

body {
    scroll-behavior: smooth;
    background: linear-gradient(to bottom, #fff1f2, #fee2e2) !important;
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="%23ef4444" opacity="0.4" d="M10 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm0 12a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-5-7a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm10 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-7.071-5.071a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm1.414 12.142a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm-5.657-5.657a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm12.142 1.414a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414z"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><path fill="%23ef4444" opacity="0.6" d="M15 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm0 20a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-7-10a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm14 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-10.607-7.607a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm1.414 19.214a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm-8.485-8.485a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm19.214 1.414a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414z"/></svg>'),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><path fill="%23ef4444" opacity="0.8" d="M20 5a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm0 30a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-10-15a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm20 0a1 1 0 1 1 0-2 1 1 0 0 1 0 2zm-14.142-10.142a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm1.414 25.556a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm-11.314-11.314a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414zm25.556 1.414a1 1 0 1 1-1.414-1.414 1 1 0 0 1 1.414 1.414z"/></svg>');
    animation: snow 20s linear infinite;
}
/* Animation for cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Apply animation to cards with delay */
.bg-white {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Individual delays for staggered effect */
.bg-white:nth-child(1) { animation-delay: 0.1s; }
.bg-white:nth-child(2) { animation-delay: 0.2s; }
.bg-white:nth-child(3) { animation-delay: 0.3s; }
.bg-white:nth-child(4) { animation-delay: 0.4s; }
.bg-white:nth-child(5) { animation-delay: 0.5s; }
.bg-white:nth-child(6) { animation-delay: 0.6s; }

/* Hover effects for interactive elements */
.bg-white:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
    
    header h2 {
        font-size: 1.75rem;
    }
}

/* Accessibility focus styles */
:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}