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

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

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Typography adjustments for specific fonts */
.font-display {
    letter-spacing: -0.02em;
}
