/* La Rancherita — Custom Styles */

/* Base reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #fefdfb;
    color: #1e1b18;
    line-height: 1.6;
}

/* Selection color */
::selection {
    background-color: #b91c4c;
    color: white;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid #b91c4c;
    outline-offset: 2px;
}

/* Smooth image rendering */
img {
    -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #faf0e0;
}

::-webkit-scrollbar-thumb {
    background: #b91c4c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9f1540;
}

/* Ensure hero renders immediately — no hidden states */
#hero {
    opacity: 1;
}

/* Nav transition */
#navbar {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Print styles */
@media print {
    nav, #catering, .reveal {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
}
