/* Custom Animations and Utilities */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Floating animation for Hero Cards */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

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

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

/* Navbar blur effect */
.nav-blur {
    background: rgba(252, 250, 248, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 215, 192, 0.5);
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f7f3ee;
}
::-webkit-scrollbar-thumb {
    background: #d96233;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c74a25;
}
