/* Vitrina — resto-v1 design tokens + layout.
   Ported from the Claude Design template. Palette vars (--primary/--bg/--text)
   are injected per-site by Base.astro. All colors derive from those three.
   Fonts: Baloo 2 (display) + DM Sans (body), loaded in Base.astro. */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: var(--text, #3a2e23);
  background: var(--bg, #fbf3e7);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.site { max-width: 460px; margin: 0 auto; min-height: 100vh; }

/* ---------- HERO ---------- */
.hero {
  background: color-mix(in oklab, var(--primary, #c1622f) 9%, var(--bg, #fbf3e7));
  text-align: center;
  padding: 44px 22px 30px;
}
.kicker {
  font: 600 12px/1 "DM Sans", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary, #c1622f);
  margin-bottom: 12px;
}
.name {
  font-family: "Baloo 2", cursive;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.05;
  color: var(--text, #3a2e23);
  margin-bottom: 10px;
}
.tagline {
  font-size: 15.5px;
  line-height: 1.5;
  max-width: 28ch;
  margin: 0 auto 22px;
  color: color-mix(in oklab, var(--text, #3a2e23) 76%, var(--bg, #fbf3e7));
}

/* ---------- BUTTONS ---------- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 16px;
}
.btn-wa {
  background: #1faf54;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 8px 18px -7px rgba(31, 175, 84, 0.7);
}
.wa-dot {
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff; color: #1faf54;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.btn-call {
  background: transparent;
  color: var(--primary, #c1622f);
  font-size: 16px;
  border: 2px solid var(--primary, #c1622f);
}

/* ---------- SECTIONS ---------- */
.section { padding: 28px 22px 4px; }
.section-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.section-label .bar {
  width: 22px; height: 3px; border-radius: 2px;
  background: var(--primary, #c1622f);
}
.section-label span:last-child {
  font: 700 12px/1 "DM Sans", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--primary, #c1622f);
}
.about {
  font-size: 15.5px; line-height: 1.68;
  color: color-mix(in oklab, var(--text, #3a2e23) 88%, var(--bg, #fbf3e7));
}

/* ---------- MENÚ ---------- */
.menu-group { margin-bottom: 22px; }
.menu-group h3 {
  font-family: "Baloo 2", cursive;
  font-weight: 700; font-size: 19px;
  margin-bottom: 8px;
  color: var(--text, #3a2e23);
}
.menu-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed color-mix(in oklab, var(--primary, #c1622f) 28%, var(--bg, #fbf3e7));
}
.menu-row .dish { font-size: 15px; line-height: 1.35; color: var(--text, #3a2e23); }
.menu-row .price {
  font-weight: 600; font-size: 15px; white-space: nowrap;
  color: var(--primary, #c1622f);
}

/* ---------- DÓNDE Y CUÁNDO ---------- */
.info-card {
  background: color-mix(in oklab, var(--primary, #c1622f) 8%, var(--bg, #fbf3e7));
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.address { font: 700 15px/1.4 "DM Sans", sans-serif; color: var(--text, #3a2e23); }
.maps-link {
  display: inline-block; margin: 6px 0 4px;
  font-size: 14px; font-weight: 600;
  color: var(--primary, #c1622f); text-decoration: none;
}
.divider {
  height: 1px; margin: 14px 0;
  background: color-mix(in oklab, var(--text, #3a2e23) 12%, var(--bg, #fbf3e7));
}
.hours-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 3px 0; font-size: 14.5px;
  color: color-mix(in oklab, var(--text, #3a2e23) 85%, var(--bg, #fbf3e7));
}
.hours-row .time { font-weight: 600; }
.contact-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.contact-row .phone {
  font-size: 14.5px; font-weight: 600;
  color: var(--text, #3a2e23); text-decoration: none;
}
.contact-row .ig {
  font-size: 14px; font-weight: 600;
  color: var(--primary, #c1622f); text-decoration: none;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 22px; margin-top: 8px;
  text-align: center; font-size: 12.5px;
  border-top: 1px solid color-mix(in oklab, var(--text, #3a2e23) 10%, var(--bg, #fbf3e7));
  color: color-mix(in oklab, var(--text, #3a2e23) 45%, var(--bg, #fbf3e7));
}
.footer strong { font-weight: 700; }
