/* menu.css */
.menu-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.menu-note {
  background: var(--cream);
  border-left: 3px solid var(--sage);
  padding: 1.2rem 1.5rem;
  margin-bottom: 3rem;
  border-radius: 0 2px 2px 0;
}
.menu-note p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--ash);
  font-style: italic;
  line-height: 1.6;
}
.menu-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: transparent;
  color: var(--ash);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--sage); color: var(--moss); }
.filter-btn.active { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.menu-section { margin-bottom: 5rem; }
.menu-section.hidden { display: none; }

.highlight-section {
  background: var(--cream);
  padding: 3rem;
  margin: 0 -3rem 5rem;
  border-radius: 4px;
}
.game-intro {
  margin-bottom: 2rem;
}
.game-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ash);
  font-style: italic;
  line-height: 1.7;
  max-width: 680px;
}

.section-header { margin-bottom: 2.5rem; }
.section-header h2 { font-size: 2.2rem; color: var(--forest); }

.dishes-grid { display: flex; flex-direction: column; gap: 0; }
.dish {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.dish:last-child { border-bottom: none; }
.dish:hover { background: rgba(107,140,94,0.04); margin: 0 -1rem; padding-left: 1rem; padding-right: 1rem; }
.dish-info { flex: 1; }
.dish-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.dish-info p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--ash);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.dish-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 500;
}
.tag.veg { background: rgba(107,140,94,0.15); color: var(--moss); }
.tag.game { background: rgba(196,146,42,0.15); color: var(--earth); }
.dish-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--amber);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}
.menu-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.menu-cta p {
  font-size: 0.85rem;
  color: var(--ash);
  margin-bottom: 1.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .highlight-section { margin: 0 0 3rem; padding: 2rem 1.5rem; }
  .dish { flex-direction: column; gap: 0.5rem; }
  .dish-price { font-size: 1rem; }
}
