/* Custom styles to supplement Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom scrollbar for webkit */
    scrollbar-width: thin;
    scrollbar-color: #E07A5F #F4F1DE;
}

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

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

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Mobile menu active state */
.mobile-menu-open {
    overflow: hidden;
}
