/* ============================================================
   MENU.CSS — Pagina-specifieke stijlen voor menu.html
   ============================================================ */

/* ===== NAVBAR (menu-pagina) ===== */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 9, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 160, 23, 0.1);
  padding: 0 2.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-back:hover { color: var(--gold); }

.menu-nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menu-nav-logo span { font-style: italic; color: rgba(245, 240, 232, 0.8); }

.menu-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.menu-nav-cta:hover { background: var(--red-glow); transform: translateY(-1px); }

@media (max-width: 600px) {
  #nav          { padding: 0 1.25rem; }
  .menu-nav-cta { display: none; }
  .menu-nav-logo{ font-size: 1.125rem; }
}

/* ===== HERO HEADER ===== */
.menu-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(160, 24, 42, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(180, 80, 20, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(160, 80, 10, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #080503 0%, #0F0806 100%);
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
}
.hero-h1 {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
  line-height: 1.1;
}
.hero-h1 em    { font-style: italic; color: var(--gold); }
.hero-sub-menu {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(160, 24, 42, 0.15);
  border: 1px solid rgba(160, 24, 42, 0.3);
  color: rgba(245, 240, 232, 0.85);
  padding: 0.45rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
}
.open-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fcf70;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ===== CATEGORY QUICK-NAV ===== */
.cat-nav {
  background: var(--bg-card);
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text-dim);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.cat-nav a:hover  { color: var(--gold); border-bottom-color: rgba(212, 160, 23, 0.4); }
.cat-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ===== MAIN CONTENT ===== */
.menu-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

/* ===== CATEGORY SECTION ===== */
.cat-section              { padding-top: 4rem; }
.cat-section:first-child  { padding-top: 3rem; }

.cat-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.625rem;
}
.cat-icon  { font-size: 1.75rem; line-height: 1; flex-shrink: 0; }
.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
}
.cat-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 160, 23, 0.35) 0%, transparent 70%);
  margin: 0.75rem 0 1.125rem;
}
.cat-note {
  font-size: 0.875rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 1.75rem;
  padding-left: 0.875rem;
  border-left: 2px solid rgba(212, 160, 23, 0.25);
}

/* ===== ITEMS GRID ===== */
.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 720px) { .items-grid { grid-template-columns: 1fr; } }
.items-grid.single        { grid-template-columns: 1fr; }

.menu-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}
.menu-item:hover { background: rgba(212, 160, 23, 0.03); }

@media (min-width: 721px) {
  .items-grid:not(.single) .menu-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
  }
  .items-grid:not(.single) .menu-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 720px) {
  .menu-item:last-child { border-bottom: none; }
}

.item-left     { flex: 1; min-width: 0; }
.item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.item-badge {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(160, 24, 42, 0.2);
  color: #e88;
  border: 1px solid rgba(160, 24, 42, 0.3);
  padding: 0.1rem 0.45rem;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 0.35rem;
}
.item-desc  { font-size: 0.825rem; color: var(--text-dim); line-height: 1.55; }
.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

/* ===== EXTRAS ===== */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0;
}
.extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  gap: 1rem;
  transition: background 0.2s;
}
.extra-item:hover { background: rgba(212, 160, 23, 0.03); }
.extra-name  { font-size: 0.9rem; color: var(--text-dim); }
.extra-price { font-size: 0.9rem; font-weight: 600; color: var(--gold); white-space: nowrap; flex-shrink: 0; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.15) 30%, rgba(212, 160, 23, 0.15) 70%, transparent);
  margin: 0;
}

/* ===== BOTTOM CTA ===== */
.bottom-cta {
  background: var(--bg-el);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}
.bottom-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.bottom-cta p    { color: var(--text-dim); margin-bottom: 2rem; font-size: 0.9375rem; }
.cta-btns        { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== MENU FOOTER ===== */
footer.menu-footer {
  padding: 2.5rem 2rem;
  text-align: center;
}
.menu-footer .f-logo     { font-size: 1.5rem; margin-bottom: 0.5rem; }
.menu-footer .f-sub      { font-size: 0.8rem; color: var(--text-faint); margin-bottom: 1.25rem; }
.menu-footer .f-links    { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.menu-footer .f-links a  { color: var(--text-dim); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.menu-footer .f-links a:hover { color: var(--gold); }
.menu-footer .f-copy     { font-size: 0.75rem; color: var(--text-faint); }

/* ===== REVEAL (menu-pagina, subtielere versie) ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .menu-hero  { padding: 3.5rem 1.25rem 3rem; }
  .menu-body  { padding: 0 1.25rem 5rem; }
  .cat-nav    { padding: 0 0.75rem; }
  .cat-nav a  { padding: 0.875rem; font-size: 0.75rem; }
}
