/* 
    Custom styles for Tacos Lola
    Additional overrides not covered by Tailwind utility classes
*/

body {
    background-color: #FDFBF7; /* lola-cream */
}

/* Smooth scrolling is handled in HTML style tag, but ensuring scroll-padding for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
    background: #047857;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #064e3b;
}

/* Focus styles for accessibility */
a:focus-visible, button:focus-visible {
    outline: 2px solid #047857;
    outline-offset: 2px;
}
