/* site.css */

/* Restaurant theme — class-based; seed emits containers/text with these classes */
:root {
  --r-primary: #1f5f8b;
  --r-accent: #e8a33d;
  --r-ink: #22303a;
  --r-bg: #faf7f2;
  --r-surface: #ffffff;
  --r-muted: #6b7280;
  --r-line: rgba(31,95,139,0.14);
  --r-font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --r-serif: 'Georgia', 'Times New Roman', serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--r-font);
  background: var(--r-bg);
  color: var(--r-ink);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Hero -------------------------------------------------------------- */
.hero {
  background:
    linear-gradient(135deg, rgba(31,95,139,0.92), rgba(20,60,90,0.92)),
    radial-gradient(circle at 30% 20%, rgba(232,163,61,0.35), transparent 60%);
  color: #fff;
  padding: 6rem 1.5rem 5rem;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-title {
  font-family: var(--r-serif);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  margin: 0 0 2rem;
}
.hero-cta {
  display: inline-block;
  background: var(--r-accent);
  color: #22303a;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .15s ease, filter .15s ease;
}
.hero-cta:hover { transform: translateY(-2px); filter: brightness(1.05); }

/* ---- Sections ---------------------------------------------------------- */
.menu, .hours, .contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.section-title {
  font-family: var(--r-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--r-primary);
  margin: 0 0 2rem;
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--r-accent);
  border-radius: 2px;
  margin: 0.7rem auto 0;
}

/* ---- Menu -------------------------------------------------------------- */
.menu-group { margin-bottom: 2.5rem; }
.menu-group-title {
  font-size: 1.3rem;
  color: var(--r-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 1.2rem;
  font-weight: 700;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}
.menu-item {
  background: var(--r-surface);
  border: 1px solid var(--r-line);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 2px 10px rgba(31,95,139,0.05);
}
.menu-item-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
}
.menu-item-name { font-weight: 700; font-size: 1.05rem; color: var(--r-ink); }
.menu-item-price { font-weight: 700; color: var(--r-primary); white-space: nowrap; }
.menu-item-desc { margin: 0.4rem 0 0; color: var(--r-muted); font-size: 0.95rem; }

/* ---- Hours ------------------------------------------------------------- */
.hours { background: var(--r-surface); border-radius: 16px; max-width: 620px; margin-top: 1rem; margin-bottom: 1rem; }
.hours-list { display: grid; gap: 0.2rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid var(--r-line);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--r-muted); }

/* ---- Contact ----------------------------------------------------------- */
.contact { text-align: center; }
.contact-info { display: grid; gap: 0.4rem; font-size: 1.05rem; }
.contact-line { margin: 0; color: var(--r-ink); }

@media (max-width: 600px) {
  .hero { padding: 4.5rem 1.2rem 3.5rem; }
  .menu, .hours, .contact { padding: 2.8rem 1.2rem; }
  .menu-grid { grid-template-columns: 1fr; }
}
