/* =============================================
   MENU PAGE
   ============================================= */

/* --- Taal toggle --- */
body.lang-nl .de, body.lang-nl .fr { display: none; }
body.lang-de .nl, body.lang-de .fr { display: none; }
body.lang-fr .nl, body.lang-fr .de { display: none; }

/* --- Page header --- */
.page-header {
  background-color: var(--green-deep);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.page-header .section-header {
  margin-bottom: 1rem;
}

.page-header .section-eyebrow { color: rgba(245,240,232,0.55); }

.page-header .section-accent-line {
  background: linear-gradient(to right, transparent, rgba(139,26,26,0.5));
}
.page-header .section-accent-line:last-child {
  background: linear-gradient(to left, transparent, rgba(139,26,26,0.5));
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.05em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-accent-rule {
  width: 56px;
  height: 2px;
  background-color: var(--red-accent);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.page-subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
}

/* --- Taal balk --- */
.lang-bar {
  background-color: var(--off-white);
  border-bottom: 1px solid rgba(30,58,47,0.1);
  position: sticky;
  top: 72px;
  z-index: 90;
}

.lang-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lang-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.2rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--green-deep);
  border-bottom-color: var(--red-accent);
}

.lang-divider {
  color: rgba(30,58,47,0.2);
  font-size: 0.75rem;
}

/* --- Menu wrapper --- */
.menu-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* --- Section --- */
.menu-section {}

.menu-section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.menu-section-lines {
  display: flex;
  align-items: center;
  width: min(260px, 80vw);
  gap: 0.75rem;
}

.menu-section-lines::before,
.menu-section-lines::after {
  content: '';
  flex: 1;
  height: 1px;
}

.menu-section-lines::before {
  background: linear-gradient(to right, transparent, var(--red-accent));
}

.menu-section-lines::after {
  background: linear-gradient(to left, transparent, var(--red-accent));
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.06em;
}

.menu-section-note {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Dark section variant */
.menu-section--dark {
  background-color: var(--green-deep);
  padding: 3rem 2.5rem;
  border-radius: 2px;
}

.menu-section--dark .menu-section-title {
  color: var(--off-white);
}

.menu-section--dark .menu-section-note {
  color: rgba(245,240,232,0.5);
}

.menu-section--dark .menu-item-name { color: var(--off-white); }
.menu-section--dark .menu-item-price { color: var(--red-accent); }
.menu-section--dark .menu-item-courses li { border-color: rgba(245,240,232,0.1); color: rgba(245,240,232,0.7); }
.menu-section--dark .course-label { color: var(--off-white); }
.menu-section--dark .menu-item { border-bottom-color: rgba(245,240,232,0.08); }

/* --- Categorie --- */
.menu-category {
  margin-bottom: 2rem;
}

.menu-category-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-accent);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(139,26,26,0.2);
}

/* --- Items --- */
.menu-items {
  display: flex;
  flex-direction: column;
}

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(30,58,47,0.07);
}

.menu-item:last-child { border-bottom: none; }

.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.menu-item-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-mid);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Arrangement item */
.menu-item--arrange {
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-price--large {
  font-size: 1.4rem;
  color: var(--red-accent);
}

.menu-item-price--large small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.menu-item-courses {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item-courses li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(30,58,47,0.07);
  display: flex;
  gap: 0.75rem;
  line-height: 1.5;
}

.course-label {
  font-weight: 600;
  color: var(--green-deep);
  white-space: nowrap;
  min-width: 60px;
}

/* --- Arrange grid --- */
.menu-items--arrange-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.arrange-card {
  background-color: var(--off-white);
  border: 1px solid rgba(30,58,47,0.1);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.arrange-card--featured {
  border-color: var(--red-accent);
  background-color: var(--warm-white);
  position: relative;
}

.arrange-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--red-accent);
}

.arrange-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(30,58,47,0.1);
}

.arrange-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.04em;
}

.arrange-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-accent);
}

.arrange-price small {
  font-size: 0.7rem;
  opacity: 0.7;
}

.arrange-courses {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.arrange-courses li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 0.85rem;
  border-left: 2px solid rgba(139,26,26,0.3);
}

/* =============================================
   RESPONSIVE MENU
   ============================================= */
@media (max-width: 768px) {
  .lang-bar { top: 61px; }

  .lang-bar-inner { padding: 0.75rem 1.25rem; }

  .menu-wrapper { padding: 2rem 1.25rem 3rem; gap: 3rem; }

  .menu-items--arrange-grid { grid-template-columns: 1fr; }

  .menu-section--dark { padding: 2rem 1.25rem; }

  .page-header { padding: 3.5rem 1.25rem 3rem; }
}
