@layer base {
    body {
        background-color: #F5F0E1;
        font-family: 'Lexend', sans-serif;
        color: #3C4A3E;
    }
}

.text-sage { color: #3C4A3E; }
.bg-sage { background-color: #3C4A3E; }
.border-sage { border-color: #3C4A3E; }

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F5F0E1; 
}
::-webkit-scrollbar-thumb {
    background: #A0522D; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B4513; 
}
