/* ─── VARIABLES ─── */
:root {
  --red: #cc1111;
  --red-light: #e82222;
  --red-dark: #a00000;
  --black: #111111;
  --dark: #1a1a1a;
  --dark2: #222222;
  --white: #ffffff;
  --off-white: #f5f0ee;
  --text-muted: #999;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  overflow-x: hidden;
  background: var(--off-white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--dark);
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 8px 24px;
  flex-wrap: wrap;
}

.topbar__item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 65px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid var(--red);
  position: fixed;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .btn-nav {
  position: absolute;
  right: 40px;
}

.navbar__logo {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.navbar__name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
}

.navbar__sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--red);
}

.btn-nav {
  padding: 7px 18px;
  border: 2px solid var(--red);
  color: var(--red) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: all 0.2s !important;
}

.btn-nav:hover {
  background: var(--red);
  color: var(--white) !important;
}

.hamburger {
  display: none !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 65px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, #2a0000 0%, #111 60%, #000 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(150, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: fadeUp 0.8s ease both;
}

.hero__logo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(200, 0, 0, 0.6));
  animation: float 4s ease-in-out infinite;
  border: 3px solid var(--red);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}

.hero__title span {
  color: var(--red);
}

.hero__sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__tags span {
  padding: 5px 14px;
  border: 1px solid rgba(204, 17, 17, 0.6);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.85);
}

.hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-red {
  display: inline-block;
  padding: 13px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border-radius: 2px;
}

.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 32px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 2px;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* ─── SHARED SECTION STYLES ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-label.red {
  color: var(--red);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}

.red {
  color: var(--red);
}

.white {
  color: var(--white);
}

.divider-red {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}

/* ─── OVER ONS ─── */
.over-ons {
  background: var(--white);
  padding: 80px 48px;
}

.over-ons__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.over-ons__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.over-ons__logo-big {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--red);
  box-shadow: 0 8px 40px rgba(200, 0, 0, 0.25);
}

.over-ons__text p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.over-ons__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 28px;
}

.over-ons__checks li {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.over-ons__checks li::before {
  content: "✓ ";
  color: var(--red);
}

/* ─── MENU SECTION ─── */
.menu-section {
  background: var(--off-white);
  padding: 80px 48px;
}

.menu-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: var(--white);
  border-radius: 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: #555;
}

.tab:hover {
  border-color: var(--red);
  color: var(--red);
}

.tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.menu-content {
  display: block;
}

.menu-content.hidden {
  display: none;
}

.menu-note {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.menu-grid {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  gap: 12px;
}

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

.menu-item:nth-child(odd) {
  border-right: 1px solid #f0f0f0;
}

.menu-item__left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.menu-num {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.menu-item strong {
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: var(--black);
}

.menu-item small {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.menu-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-placeholder {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  grid-column: 1 / -1;
}

/* ─── BUFFET BANNER ─── */
.buffet-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: var(--white);
  border-radius: 8px;
  padding: 20px 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.buffet-banner__icon {
  font-size: 32px;
}

.buffet-banner__text {
  flex: 1;
}

.buffet-banner__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.buffet-banner__text span {
  font-size: 13px;
  opacity: 0.85;
}

.buffet-banner__prices {
  display: flex;
  gap: 16px;
  align-items: center;
}

.buffet-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
}

.buffet-price small {
  font-size: 12px;
  opacity: 0.8;
  margin-left: 2px;
}

.buffet-price-child {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  opacity: 0.85;
}

.buffet-price-child small {
  font-size: 11px;
  opacity: 0.8;
  margin-left: 2px;
}

/* ─── MENU CATEGORY LABELS ─── */
.menu-category-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin: 24px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}

.menu-category-label:first-of-type {
  margin-top: 0;
}

.menu-placeholder-row {
  grid-column: 1 / -1;
}

/* ─── OPENINGSTIJDEN ─── */
.openingstijden {
  background: var(--dark);
  padding: 80px 48px;
}

.openingstijden__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.ot-card {
  border-radius: 8px;
  padding: 32px;
}

.ot-card.dark {
  background: var(--dark2);
  border: 1px solid var(--red);
  border-top-width: 3px;
}

.ot-card.red-card {
  background: var(--red);
}

.ot-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 20px;
}

.ot-card__label.light {
  color: rgba(255, 255, 255, 0.85);
}

.ot-list {
  display: flex;
  flex-direction: column;
}

.ot-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.ot-list li:last-child {
  border-bottom: none;
}

.ot-list li.today {
  color: var(--red);
  font-weight: 600;
}

.ot-contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.ot-contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ot-icon {
  font-size: 24px;
}

.ot-contact__item small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  display: block;
}

.ot-contact__item strong {
  font-size: 16px;
  color: var(--white);
  display: block;
  margin-top: 2px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 3px solid var(--red);
}

.footer__logo {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--red);
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
    gap: 16px;
    flex-wrap: wrap;
    height: auto;
    padding: 12px 20px;
  }

  .navbar__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .over-ons {
    padding: 56px 24px;
  }

  .over-ons__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .menu-section {
    padding: 56px 24px;
  }

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

  .menu-item:nth-child(odd) {
    border-right: none;
  }

  .openingstijden {
    padding: 56px 24px;
  }

  .ot-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: none;
  }
}