/* Custom Animations and 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;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #882a42;
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    border-color: #c44d68;
    box-shadow: 0 0 0 3px rgba(196, 77, 104, 0.2);
}
