/* Custom Styles for First Step Counseling */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFBF9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FDF2F2;
}
::-webkit-scrollbar-thumb {
    background: #E8E8E8;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #800020;
}

/* Navbar Transition */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Hero Image Animation */
@keyframes float {
    0% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(2deg); }
}

.hero-image {
    animation: float 6s ease-in-out infinite;
}

/* Subtle Fade In */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}
