/* Custom Styles & Utilities */
body {
    background-color: #FDF9F0;
}

/* Smooth reveal animation setup */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
}

#mobile-menu.open {
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDF9F0;
}
::-webkit-scrollbar-thumb {
    background: #105C45;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0A4232;
}
