/* Custom Styles for Taco Truck El Duende */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    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; }

/* Mobile Menu Transitions */
.mobile-link {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #b55747;
}

/* Utility for text selection */
::selection {
    background: #e8cfc4;
    color: #59231b;
}
