/* Mobile-first, simple responsive styles for the coming soon page */
:root {
  --bg: #ffffff;
  --fg: #222222;
  --muted: #666666;
  --accent: #b22222; /* dark red, butcher theme */
  --card: #ffffff;
  --border: #eaeaea;
}
.qr-page { background: #000; color: #fff; }
.qr-page .menu-header { background: color-mix(in srgb, #000 85%, transparent); border-bottom-color: rgba(255,255,255,.12); }
.qr-page .menu-title { color: #fff; }
.qr-page .menu { }
.qr-page .menu-section { background: #0e0e0e; border-color: rgba(255,255,255,.12); box-shadow: 0 8px 22px rgba(0,0,0,.5); }
.qr-page .menu-section-title { color: #fff; opacity: .9; }
.qr-page .menu-list span { color: #fff; }
.qr-page .menu-home { color: #fff; }

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  gap: 12px;
}

.logo {
  width: 48vw;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.title {
  margin: 6px 0 0 0;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 700;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 3.3vw, 15px);
}

.qr-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(178, 34, 34, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.qr-link:focus, .qr-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(178, 34, 34, 0.28);
  background: #a01e1e;
}

@media (min-width: 768px) {
  .container { gap: 18px; padding: 24px; }
  .logo { max-width: 240px; width: 56vw; }
  .title { font-size: clamp(22px, 4.2vw, 28px); }
  .qr-link { padding: 14px 22px; }
}

/* ------------ QR MENU STYLES ------------- */
.menu-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 10px;
  backdrop-filter: blur(6px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom: 1px solid var(--border);
}

.back-link {
  justify-self: start;
  text-decoration: none;
  color: var(--fg);
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
}

.menu-logo { width: 110px; height: auto; justify-self: start; }
.menu-title { margin: 0; font-size: 20px; font-weight: 800; letter-spacing: .2px; justify-self: end; }

.menu {
  padding: 12px 16px 28px;
  display: grid;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.menu-section {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px;
  background: var(--card);
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.menu-section-title {
  margin: 0 0 10px 0;
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.menu-list li { display: grid; grid-template-columns: 1fr max-content; align-items: center; gap: 14px; padding: 14px 6px; border-bottom: 1px dashed var(--border); }
.menu-list li:last-child { border-bottom: 0; }
.menu-list span { color: var(--fg); font-size: 15px; line-height: 1.3; }
.menu-en { display: block; font-size: 14px; opacity: .75; line-height: 1.2; }
.menu-list strong { background: var(--accent); color: #fff; padding: 6px 12px; border-radius: 999px; font-weight: 700; font-size: 14px; line-height: 1.2; }

@media (min-width: 768px) {
  .menu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .menu-section-title { font-size: 18px; }
  .menu-list span { font-size: 16px; }
}

@media (min-width: 1024px) {
  .menu { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-left: 32px; padding-right: 32px; }
}

.menu-footer { padding: 16px; text-align: center; }
.menu-home { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ------------ CONTACT (HOME) ------------- */
.contact { border-top: 1px solid var(--border); background: #fafafa; margin-top: 8px; }
.contact--cards {}
.contact-inner { max-width: 960px; margin: 0 auto; padding: 16px; }
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.c-card { display: grid; grid-template-rows: auto auto auto; justify-items: center; gap: 6px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: #fff; text-decoration: none; color: var(--fg); box-shadow: 0 6px 16px rgba(0,0,0,.03); }
.c-card:hover { box-shadow: 0 8px 18px rgba(0,0,0,.06); transform: translateY(-1px); }
.c-card-ico { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; color: var(--accent); }
.c-card-title { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .3px; }
.c-card-value { font-size: 14px; text-align: center; white-space: nowrap; }
.c-card--address { grid-column: span 2; }
.c-card--address .c-card-value { white-space: normal; }

@media (min-width: 768px) {
  .contact-inner { padding: 14px 16px 18px; }
  .card-grid { gap: 12px; }
  .c-card { padding: 12px; }
}

