/* Custom Styles & Animations */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback background */
    background-color: #f2fcf9;
}

/* Floating animation for hero cards */
@keyframes float {
    0% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(3deg); }
}

@keyframes float-delayed {
    0% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
    100% { transform: translateY(0px) rotate(-2deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2fcf9;
}

::-webkit-scrollbar-thumb {
    background: #bdf0de;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #8fe6c5;
}

/* Focus styles for accessibility */
button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}
