body {
    font-family: 'Quicksand', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
}
/* Curve for the Hero Section (Concave/Hill) */
.hero-curve {
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;
}
@media (min-width: 768px) {
    .hero-curve {
        border-bottom-left-radius: 50% 150px;
        border-bottom-right-radius: 50% 150px;
    }
}
/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}