/* Demo client website styles (httpdocs/index.php). Stands in for the bespoke
   stylesheet each real restaurant site brings — separate from the MenuKit menu
   fragment, which carries its own scoped .mk-menu styles (menukit-menu.css). */

:root {
  --bg: #f7f4ef; --surface: #fffdfa; --text: #292521; --muted: #82796b;
  --accent: #A85A38; --border: #e6e0d6;
  --font: ui-sans-serif, system-ui, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }

.site-nav { display: flex; align-items: center; justify-content: space-between; max-width: 60rem; margin: 0 auto; padding: 1.25rem 1.5rem; }
.site-nav__brand { font-weight: 700; font-size: 1.15rem; letter-spacing: 0.01em; }
.site-nav__links { display: flex; gap: 1.25rem; font-size: 0.95rem; }
.site-nav__links a { color: var(--muted); text-decoration: none; }
.site-nav__links a:hover { color: var(--accent); }

.hero { text-align: center; padding: 3.5rem 1.5rem 3rem; border-bottom: 1px solid var(--border); }
.hero__kicker { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.8rem; color: var(--accent); margin: 0 0 0.75rem; }
.hero__title { font-size: clamp(2.25rem, 6vw, 3.5rem); margin: 0; font-weight: 700; letter-spacing: -0.02em; }
.hero__sub { max-width: 32rem; margin: 1rem auto 0; color: var(--muted); font-size: 1.05rem; }
.hero__meta { margin: 1.5rem 0 0; font-size: 0.85rem; color: var(--muted); }

main { max-width: 84rem; margin: 0 auto; padding: 3rem 1.5rem; } /* wide enough for the hover-reveal stage layout */
.menu-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 2rem 1.75rem; box-shadow: 0 4px 24px rgba(41, 37, 33, 0.06); }

.menu-missing { text-align: center; color: var(--muted); }
.menu-missing code { background: var(--bg); padding: 0.15rem 0.4rem; border-radius: 5px; font-size: 0.9em; }

.site-foot { text-align: center; padding: 2.5rem 1.5rem 3rem; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.9rem; }
.site-foot a { color: var(--muted); }
.site-foot__hours { margin: 0 0 0.75rem; }

@media (max-width: 34rem) { .site-nav { flex-direction: column; gap: 0.75rem; } }
