/* Julie's Cocina — Custom Styles */

/* Base font rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection color */
::selection {
    background: #e5623e;
    color: #fff;
}

/* Smooth focus outlines */
a:focus-visible, button:focus-visible {
    outline: 3px solid #e5623e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdfbf7;
}
::-webkit-scrollbar-thumb {
    background: #e5623e;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c93812;
}

/* Prevent layout shift on images */
img {
    max-width: 100%;
    height: auto;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .menu-card:hover img { transform: none; }
    .float-anim { animation: none; }
    .menu-card:hover { transform: none; }
}
