/* =============================================================================
   DEMO SITE STYLES
   =============================================================================
   This is the fake restaurant website that sits behind the widget so a pitch
   looks like the real thing. It is NOT part of the widget — when you embed the
   widget on a client's actual site, you ship widget.css, widget.js, and
   restaurant-data.js only, and this file is left behind.
   ========================================================================== */

:root {
  --site-ink:      #23211e;
  --site-muted:    #6f6a63;
  --site-cream:    #faf8f5;
  --site-line:     #e6e2db;
  --site-brand:    #1f4d3d;
  --site-accent:   #c2703d;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--site-ink);
  background: var(--site-cream);
  line-height: 1.6;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.01em; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

/* --- Nav ------------------------------------------------------------------ */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--site-line);
}
.site-nav .mark {
  font-family: Georgia, serif;
  font-size: 20px;
  color: var(--site-brand);
  margin-right: auto;
}
.site-nav a {
  color: var(--site-muted);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--site-brand); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  padding: 84px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--site-line);
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--site-accent);
  margin: 0 0 18px;
}
.hero h1 { font-size: clamp(38px, 7vw, 62px); margin: 0 0 14px; }
.hero p { font-size: 19px; color: var(--site-muted); max-width: 540px; margin: 0 auto 30px; }
.btn {
  display: inline-block;
  background: var(--site-brand);
  color: #fff;
  padding: 13px 28px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { background: #17392d; }
.btn-ghost {
  background: none;
  color: var(--site-brand);
  border: 1px solid var(--site-brand);
  margin-left: 10px;
}
.btn-ghost:hover { background: var(--site-brand); color: #fff; }

/* --- Sections ------------------------------------------------------------- */
section { padding: 66px 0; border-bottom: 1px solid var(--site-line); }
section h2 { font-size: 32px; margin: 0 0 8px; }
section .lead { color: var(--site-muted); margin: 0 0 34px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px 44px;
}
.menu-item { border-bottom: 1px dotted var(--site-line); padding-bottom: 14px; }
.menu-item-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.menu-item-head strong { font-weight: 600; font-size: 16px; }
.menu-item-head span { color: var(--site-accent); font-weight: 600; white-space: nowrap; }
.menu-item p { margin: 4px 0 0; color: var(--site-muted); font-size: 14px; }
.menu-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 6px; }
.menu-tags em {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--site-muted);
  border: 1px solid var(--site-line);
  border-radius: 999px;
  padding: 2px 8px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.info-grid h3 { font-size: 19px; margin: 0 0 12px; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 3px 0; font-size: 15px; }
.hours-row span:first-child { color: var(--site-muted); }
.info-grid p { margin: 0 0 10px; font-size: 15px; }
.info-grid a { color: var(--site-brand); }

/* --- Footer --------------------------------------------------------------- */
footer {
  padding: 34px 0 110px;   /* extra bottom room so the launcher never overlaps */
  text-align: center;
  color: var(--site-muted);
  font-size: 13px;
}
footer .demo-note {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px dashed var(--site-line);
  border-radius: 6px;
  background: #fff;
}
