/* Custom styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F2;
}

/* Animations */
@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;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #F9F7F2;
}
::-webkit-scrollbar-thumb {
    background: #1A4A3A;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0F2922;
}

/* Mobile Menu Transitions */
#sidebar {
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
}
