/* Custom styles for Los Nopales Taqueria */

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

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

::-webkit-scrollbar-track {
    background: #04101D;
}

::-webkit-scrollbar-thumb {
    background: #2BB894;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4FD3B0;
}

/* Selection color */
::selection {
    background: #2BB894;
    color: #04101D;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus visible styles */
:focus-visible {
    outline: 2px solid #2BB894;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .fixed,
    .animate-float,
    .animate-float-delayed,
    .animate-spin-slow {
        display: none !important;
    }
}
