/* Custom Styles for Tacos Los Chavalos */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F5F5F7;
}

/* Smooth reveal animation for elements */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Selection Color */
::selection {
    background: #FF6B6B;
    color: #1A1C20;
}

/* Mobile Menu Transitions */
#mobile-menu {
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
}

/* Map Filter for dark mode match */
iframe {
    filter: grayscale(100%) invert(90%) contrast(90%);
}

/* Button focus states for accessibility */
button:focus, a:focus {
    outline: 2px solid #FF6B6B;
    outline-offset: 2px;
}
