/* Custom Animations & Overrides */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

html {
    scroll-behavior: smooth;
}

/* Smooth scroll offset for fixed header */
section[id] {
    scroll-margin-top: 100px;
}
