/* Dine-in menu page — row list (content from /data/dineInMenuSample.json) */

body.menu-page {
  background: var(--bg-color);
  color: var(--text-color);
}

body.page-with-fixed-nav.menu-page .menu-page-main {
  position: relative;
  z-index: 0;
  padding-top: clamp(5.75rem, 10vh, 7.25rem);
  padding-bottom: 4rem;
  background: transparent;
}

body.menu-page header {
  z-index: 1100;
}

.menu-page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--container-padding, 2rem);
}

#menu-page-root {
  padding-top: 0;
}

.menu-page-header {
  text-align: center;
  padding: 2.5rem 0 2.25rem;
  margin-bottom: 2.25rem;
}

.menu-page-title-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.menu-page-title {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(1.85rem, 4.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.2;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-warm);
  display: inline-block;
}

.menu-page-subtitle {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted, #a89b8f);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0 auto;
  font-weight: 400;
}

.menu-section {
  margin-bottom: 2.75rem;
}

.menu-section:last-of-type {
  margin-bottom: 0;
}

.menu-section-head {
  margin-bottom: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.28);
}

.menu-section-title {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--accent-warm, #d4a574);
  margin: 0;
  text-align: left;
}

.menu-section-note {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0.45rem 0 0;
  padding-left: 0;
  font-style: italic;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.menu-section-note::before {
  content: "•";
  color: #8a8683;
  font-weight: 700;
  font-style: normal;
  flex-shrink: 0;
  line-height: 1.45;
  margin-top: 0.08em;
}

body.dark-mode .menu-section-note::before {
  color: #9ca3af;
}

.menu-section-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.menu-row {
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 12px;
  padding: 1rem 1.15rem 1.05rem;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

body.dark-mode .menu-row {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.menu-row:hover {
  transform: scale(1.02);
  border-color: var(--accent-warm);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

body.dark-mode .menu-row:hover {
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.38);
}

.menu-row-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}

.menu-row-name {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.35;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.menu-row-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  justify-content: flex-end;
  align-items: baseline;
  flex-shrink: 0;
}

.menu-price-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  white-space: nowrap;
}

.menu-price-label {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.menu-price-value {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.menu-row-price-single {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-color);
}

.menu-row-desc {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0.55rem 0 0;
}

.menu-row-note {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0.45rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border-card);
  opacity: 0.95;
}

.menu-page-error {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-family: var(--font-body, "Inter", sans-serif);
}

body.menu-page footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-card);
}

body.menu-page footer p {
  color: var(--footer-text-color);
}

@media (max-width: 600px) {
  .menu-page-header {
    padding: 1.75rem 0 1.75rem;
    margin-bottom: 1.75rem;
  }

  .menu-section {
    margin-bottom: 2.25rem;
  }

  .menu-row-head {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-row-prices {
    justify-content: flex-start;
  }
}
