/* Custom Styles for Helping Hands */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback font stack */
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Fredoka', sans-serif;
}

/* Animation classes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #e06030;
}
