/* Custom styles and animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 100px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #5bb888;
}
