/* Custom styles to supplement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FDFBF7; /* Brand Cream */
}

/* Subtle gradient animation for the hero background blob */
@keyframes float {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

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

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

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

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

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