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

@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.animate-float-delayed {
    animation: float-delayed 5s ease-in-out infinite;
    animation-delay: 1s;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #4a1f35;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    border-bottom-width: 2px;
    padding-bottom: 2px;
}

/* Selection Color */
::selection {
    background-color: #f4e9f0;
    color: #1a0d14;
}
