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

.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: #f1f1f1;
}

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

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

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(159, 18, 57, 0.1);
}

/* Navbar Transition */
.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);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-transparent {
    background-color: transparent;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.nav-transparent .logo-text {
    color: #fff;
}

.nav-transparent .nav-link {
    color: #fff;
}

.nav-scrolled .logo-text {
    color: #500724;
}

.nav-scrolled .nav-link {
    color: #500724;
}
