/* The public page for the restaurant. Plain CSS, no build step and no
   framework: it is three files on a static IIS site, and it should stay
   something anybody can open and edit. */

:root {
  --bg: #14110f;
  --panel: #1d1917;
  --line: #332c28;
  --text: #f2ece7;
  --muted: #a89e97;
  --accent: #e0a458;
  --good: #7fb069;
  --bad: #d97b6c;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.7 "Segoe UI", Tahoma, system-ui, sans-serif;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: var(--muted); font-size: 14px; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* ---- header ---------------------------------------------------------- */
.top {
  border-bottom: 1px solid var(--line);
  background: rgba(20, 17, 15, .92);
  position: sticky; top: 0; z-index: 5;
  backdrop-filter: blur(6px);
}
.top .wrap { display: flex; align-items: center; justify-content: space-between;
  padding-block: 14px; }
.brand { font-size: 22px; font-weight: 700; color: var(--text); }
.top nav { display: flex; gap: 18px; align-items: center; font-size: 15px; }
.lang {
  background: none; border: 1px solid var(--line); color: var(--muted);
  border-radius: 999px; padding: 5px 13px; font: inherit; font-size: 13px;
  cursor: pointer;
}
.lang:hover { border-color: var(--accent); color: var(--text); }

/* ---- hero ------------------------------------------------------------ */
.hero { position: relative; min-height: 340px; display: grid; }
.hero img {
  grid-area: 1 / 1; width: 100%; height: 100%; max-height: 460px;
  object-fit: cover; opacity: .38;
}
.hero-text {
  grid-area: 1 / 1; align-self: center; text-align: center;
  padding: 48px 20px; max-width: 720px; margin: 0 auto;
}
.hero h1 { font-size: clamp(28px, 5vw, 44px); margin: 0 0 10px; }
.hero p { color: var(--muted); font-size: 17px; margin: 0 0 22px; }

.cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 11px 22px; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text); font-weight: 600;
}
.btn:hover { border-color: var(--accent); text-decoration: none; }
.btn.primary { background: var(--accent); color: #241a10; border-color: var(--accent); }

.state { margin-top: 18px; font-size: 14px; }
.state.on { color: var(--good); }
.state.off { color: var(--bad); }

/* ---- sections -------------------------------------------------------- */
main section { padding: 40px 0; border-top: 1px solid var(--line); }
main section:first-child { border-top: 0; }
h2 { font-size: 24px; margin: 0 0 6px; }
h3 { font-size: 17px; margin: 0 0 8px; }

.dishes {
  display: grid; gap: 14px; margin: 18px 0;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}
.dish {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden; text-align: center;
}
.dish img { width: 100%; height: 150px; object-fit: cover; display: block;
  background: #241f1c; }
.dish h4 { margin: 12px 10px; font-size: 16px; font-weight: 600; }
.dish.gone img { opacity: .35; }
.dish .tag {
  display: inline-block; margin: 0 10px 12px; font-size: 12px;
  padding: 3px 10px; border-radius: 999px; color: var(--bad);
  border: 1px solid rgba(217, 123, 108, .5);
}

.cards { display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 20px; }
.card p { margin: 0 0 8px; font-size: 15px; }

/* ---- the privacy page ------------------------------------------------ */
.prose { padding: 40px 20px 60px; max-width: 760px; }
.prose h1 { font-size: 30px; margin: 0 0 4px; }
.prose h2 { font-size: 20px; margin: 32px 0 8px; }
.prose ul { padding-inline-start: 22px; }
.prose li { margin-bottom: 8px; }

/* ---- footer ---------------------------------------------------------- */
.foot { border-top: 1px solid var(--line); margin-top: 40px; padding: 22px 0;
  color: var(--muted); font-size: 14px; }
.foot .wrap { display: flex; justify-content: space-between; gap: 12px;
  flex-wrap: wrap; }

@media (max-width: 560px) {
  .dish img { height: 130px; }
  .hero { min-height: 280px; }
}
