/* Custom styles for Don Taco Breakfast Burritos */

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

/* Ensure above-the-fold content is always visible */
body {
    background-color: #f0fdfa;
}

/* Hero section - always visible, no opacity transitions */
#hero {
    min-height: 100vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f0fdfa;
}
::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Mobile menu transitions */
#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
#mobileMenu.open {
    max-height: 300px;
}

/* Subtle hover effects on cards */
.bg-white.rounded-3xl {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ensure all interactive elements have good contrast */
a:focus-visible, button:focus-visible {
    outline: 3px solid #2dd4bf;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Animation for scroll reveals (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure text is readable on all backgrounds */
.text-slate-800 {
    color: #1e293b;
}
.text-slate-700 {
    color: #334155;
}
.text-slate-600 {
    color: #475569;
}
.text-slate-500 {
    color: #64748b;
}
.text-slate-400 {
    color: #94a3b8;
}
.text-slate-300 {
    color: #cbd5e1;
}
.text-slate-900 {
    color: #0f172a;
}
