/* Custom styles for Grand Rental Station */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Animation for fade-in elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0; /* Start hidden for animation */
}

/* Staggered delays */
.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

/* Ensure mobile menu is hidden by default */
#mobile-menu {
    display: none;
}

#mobile-menu.active {
    display: block;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #3D0F16;
}
