/* Custom Styles for West On Wheels */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFF8E1; /* Cream */
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #2D1B2E;
}

/* Animation utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Geometric shape decorations */
.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: #FFC107;
    opacity: 0.1;
}

.shape-square {
    position: absolute;
    background: #4A2C4A;
    opacity: 0.1;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}
