/* Juanito's Mexican Restaurant — Custom Styles */

/* Base styles already handled by Tailwind + inline styles in HTML */
/* This file provides additional custom styling */

/* Smooth scroll offset for fixed nav */
section[id] {
    scroll-margin-top: 80px;
}

/* Selection color */
::selection {
    background: rgba(164, 53, 53, 0.4);
    color: #fff5f5;
}

/* Image placeholder fallback */
img {
    image-rendering: auto;
}

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

/* Print styles */
@media print {
    nav, .hero-bg, #gallery, .reveal {
        display: none !important;
    }
    body {
        background: white !important;
        color: black !important;
    }
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.75rem;
        color: #666;
    }
}
