/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback for older browsers */
    background-color: #fffcf8;
}

/* Subtle animation for the floating card */
@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 browsers */
::-webkit-scrollbar {
    width: 10px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #9f1239;
}
