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

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

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #fce7eb;
}
::-webkit-scrollbar-thumb {
    background: #701735;
    border: 2px solid #fce7eb;
}
::-webkit-scrollbar-thumb:hover {
    background: #3d081a;
}
