/* =====================================================
   De Wijngaard — Eet- en Praatcafé Borsbeke
   ===================================================== */

:root {
  --rood:      #7A1F2E;
  --rood-dark: #561626;
  --rood-light:#9B3547;
  --goud:      #C9A84C;
  --creme:     #FAF7F2;
  --creme-dark:#F0EBE1;
  --donker:    #1E1A17;
  --tekst:     #2C2523;
  --grijs:     #6B6360;
  --wit:       #FFFFFF;

  --font-titel: 'Playfair Display', Georgia, serif;
  --font-body:  'Source Sans 3', 'Segoe UI', sans-serif;

  --schaduw: 0 4px 20px rgba(0,0,0,0.12);
  --schaduw-hover: 0 8px 32px rgba(0,0,0,0.2);
  --radius: 4px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--tekst);
  background: var(--creme);
  line-height: 1.65;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAFIE === */
h1, h2, h3, h4 {
  font-family: var(--font-titel);
  line-height: 1.2;
  color: var(--donker);
}

.sectie-titel {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 0.4rem;
}

.sectie-ondertitel {
  text-align: center;
  color: var(--grijs);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.sectie-lijn {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--goud);
  margin: 0.8rem auto 0;
}

/* === NAVIGATIE === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 10, 15, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 72px;
  width: auto;
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.45));
}

.nav-logo-tekst {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.nav-logo-tekst .naam {
  font-family: var(--font-titel);
  font-size: 1.4rem;
  color: var(--wit);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.nav-logo-tekst .sub {
  font-size: 0.78rem;
  color: var(--goud);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* Open/gesloten badge in de navigatie (donkere achtergrond) */
.nav-badge-slot { line-height: 1; }
.nav-badge-slot .open-badge {
  font-size: 0.65rem;
  padding: 0.12rem 0.5rem;
  letter-spacing: 0.07em;
}
.nav-badge-slot .open-badge.nu-open  { background: rgba(52,200,90,0.18);  color: #6ee88a; }
.nav-badge-slot .open-badge.nu-dicht { background: rgba(255,100,100,0.15); color: #ff9090; }

/* Facebook knop */
.fb-knop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1877F2;
  color: #fff !important;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
  line-height: 1.4;
}
.fb-knop:hover { background: #0c5ecf; }
.fb-knop svg { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.nav-links a:hover,
.nav-links a.actief {
  color: var(--goud);
  background: rgba(201,168,76,0.12);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wit);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/interieur_breed.jpg');
  background-size: cover;
  background-position: center 25%;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(86, 22, 38, 0.75) 0%,
    rgba(26, 10, 15, 0.82) 100%
  );
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--wit);
  padding: 0 1.5rem;
  max-width: 760px;
}

/* .hero-logo verwijderd — logo-afbeelding is uit de hero gehaald */

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--wit);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--goud);
  font-family: var(--font-titel);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.hero-locatie {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.hero-locatie svg {
  display: inline;
  vertical-align: middle;
  margin-right: 4px;
}

.hero-knoppen {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === KNOPPEN === */
.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.knop-primair {
  background: var(--goud);
  color: var(--donker);
}

.knop-primair:hover {
  background: #d4b55a;
  transform: translateY(-2px);
  box-shadow: var(--schaduw-hover);
}

.knop-outline {
  background: transparent;
  border-color: var(--wit);
  color: var(--wit);
}

.knop-outline:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.knop-rood {
  background: var(--rood);
  color: var(--wit);
  border-color: var(--rood);
}

.knop-rood:hover {
  background: var(--rood-dark);
  transform: translateY(-2px);
  box-shadow: var(--schaduw-hover);
}

/* === SCROLL INDICATOR === */
.scroll-pijl {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === SECTIES ALGEMEEN === */
.sectie {
  padding: 5rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* === HOOGTEPUNTEN STRIP === */
.highlights {
  background: var(--rood);
  padding: 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: var(--wit);
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.highlight-item:last-child { border-right: none; }

.highlight-item:hover { background: var(--rood-dark); }

.highlight-icoon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.highlight-item h3 {
  font-size: 1.05rem;
  color: var(--goud);
  margin-bottom: 0.3rem;
}

.highlight-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* === WELKOM SECTIE === */
.welkom {
  background: var(--creme);
}

.welkom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welkom-tekst h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1.25rem;
  color: var(--rood);
}

.welkom-tekst p {
  color: var(--grijs);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.welkom-tekst .goud-lijn {
  width: 50px;
  height: 3px;
  background: var(--goud);
  margin-bottom: 1.5rem;
}

.welkom-fotos {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 310px 310px;
  gap: 10px;
}

.welkom-fotos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.welkom-fotos img:first-child {
  grid-row: span 2;
  object-position: center 15%;
}

/* bar foto: boven centreren op de bieremblems */
.welkom-fotos img:nth-child(2) {
  object-position: center top;
}

/* lounge foto */
.welkom-fotos img:nth-child(3) {
  object-position: center 10%;
}

.welkom-fotos img:hover {
  transform: scale(1.02);
  box-shadow: var(--schaduw-hover);
}

/* === GERECHTEN PREVIEW === */
.gerechten-preview {
  background: var(--creme-dark);
}

.gerechten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gerecht-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  transition: var(--transition);
}

.gerecht-kaart:hover {
  transform: translateY(-4px);
  box-shadow: var(--schaduw-hover);
}

.gerecht-kaart img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gerecht-info {
  padding: 1.1rem 1.25rem;
}

.gerecht-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--rood);
}

.gerecht-info p {
  font-size: 0.88rem;
  color: var(--grijs);
}

.gerechten-cta { text-align: center; }

/* === ACTIVITEITEN PREVIEW === */
.activiteiten-preview {
  background: var(--donker);
  color: var(--wit);
}

.activiteiten-preview .sectie-titel { color: var(--wit); }

.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.act-kaart {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.act-kaart:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--goud);
  transform: translateY(-4px);
}

.act-icoon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.act-kaart h3 {
  color: var(--goud);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.act-kaart p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

/* === OPENINGSUREN BANNER === */
.uren-banner {
  background: var(--goud);
  padding: 2.5rem 1.5rem;
}

.uren-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.uren-tekst h2 {
  font-size: 1.5rem;
  color: var(--donker);
  margin-bottom: 0.25rem;
}

.uren-tekst p {
  color: rgba(30,26,23,0.7);
  font-size: 0.95rem;
}

.uren-rooster {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.uur-item {
  background: rgba(26,10,15,0.1);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.uur-item .dag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--donker);
}

.uur-item .tijd {
  font-size: 0.85rem;
  color: rgba(30,26,23,0.8);
}

.uur-item.gesloten { opacity: 0.45; }

/* === OPENINGSUREN NIEUW === */
/* === OPENINGSUREN (homepage) === */
.uren-sectie {
  background: var(--creme-dark);
}

.uren-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.uren-info p {
  color: var(--grijs);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.uren-extra {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.uren-extra li {
  font-size: 0.9rem;
  color: var(--grijs);
}

.knop-outline-donker {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--rood);
  border-radius: var(--radius);
  color: var(--rood);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.knop-outline-donker:hover {
  background: var(--rood);
  color: var(--wit);
}

.uren-lijst {
  border-top: 1px solid #DDD5CB;
}

.uren-rij {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid #DDD5CB;
}

.uren-dag {
  font-weight: 600;
  color: var(--tekst);
  font-size: 0.95rem;
}

.uren-tijd {
  font-weight: 700;
  color: var(--rood);
  font-size: 0.95rem;
}

.uren-rij.gesloten .uren-dag {
  color: #B0A89F;
  font-weight: 400;
}

.uren-rij.gesloten .uren-tijd {
  color: #B0A89F;
  font-weight: 400;
}

.uren-rij.vandaag {
  background: rgba(122,31,46,0.07);
  border-radius: 6px;
  padding-left: 0.6rem;
  padding-right: 0.6rem;
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.uren-rij.vandaag .uren-dag  { color: var(--rood); font-weight: 700; }
.uren-rij.vandaag .uren-tijd { color: var(--rood); }

@media (max-width: 768px) {
  .uren-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* === FOOTER === */
.footer {
  background: var(--donker);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 1.5rem 1.5rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 110px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.35));
}

.footer-brand h3 {
  font-family: var(--font-titel);
  font-size: 1.3rem;
  color: var(--wit);
  margin-bottom: 0.25rem;
}

.footer-brand .sub {
  font-size: 0.8rem;
  color: var(--goud);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.9rem; }

.footer-col h4 {
  color: var(--goud);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
}

.footer-col a:hover { color: var(--goud); }

.footer-col .gesloten { color: rgba(255,255,255,0.35); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a:hover { color: var(--goud); }

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* === CONTACTFORMULIER === */
.contact-form-sectie { background: var(--creme-dark); }

/* Honeypot-veld: onzichtbaar voor mensen, niet via display:none (bots herkennen dat) */
.dw-honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form-wrapper h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper .intro {
  color: var(--grijs);
  margin-bottom: 2rem;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-groep {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.form-groep label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grijs);
  margin-bottom: 0.4rem;
}

.form-groep input,
.form-groep textarea,
.form-groep select {
  padding: 0.75rem 1rem;
  border: 1.5px solid #D8D0C8;
  border-radius: var(--radius);
  background: var(--wit);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--tekst);
  transition: border-color var(--transition);
}

.form-groep input:focus,
.form-groep textarea:focus,
.form-groep select:focus {
  outline: none;
  border-color: var(--rood);
}

.form-groep textarea { resize: vertical; min-height: 140px; }

.form-verzonden {
  display: none;
  background: #E8F5E9;
  border: 1.5px solid #A5D6A7;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  color: #2E7D32;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* === PRIVACY PAGINA === */
.privacy-inhoud {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-inhoud h2 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
  color: var(--rood);
}

.privacy-inhoud h2:first-child { margin-top: 0; }

.privacy-inhoud p, .privacy-inhoud li {
  color: var(--grijs);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.privacy-inhoud ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-inhoud a { color: var(--rood); text-decoration: underline; }

/* === PAGINA HERO (subpagina's) === */
.pagina-hero {
  background: linear-gradient(135deg, var(--rood-dark) 0%, var(--donker) 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  color: var(--wit);
}

.pagina-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--wit);
  margin-bottom: 0.5rem;
}

.pagina-hero p {
  color: var(--goud);
  font-family: var(--font-titel);
  font-style: italic;
  font-size: 1.1rem;
}

/* === MENU PAGINA === */
.menu-sectie { background: var(--creme); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.menu-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  transition: var(--transition);
}

.menu-kaart:hover {
  transform: translateY(-5px);
  box-shadow: var(--schaduw-hover);
}

.menu-kaart img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-kaart-info {
  padding: 1.25rem 1.4rem;
}

.menu-kaart-info h3 {
  font-size: 1.2rem;
  color: var(--rood);
  margin-bottom: 0.4rem;
}

.menu-kaart-info p {
  color: var(--grijs);
  font-size: 0.9rem;
}

/* === ACTIVITEITEN PAGINA === */
.act-sectie { background: var(--creme); }

.act-blok {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.act-blok:last-child { margin-bottom: 0; }

.act-blok.omgekeerd { direction: rtl; }
.act-blok.omgekeerd > * { direction: ltr; }

.act-blok-foto img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
}

.act-blok-tekst .icoon-groot {
  font-size: 2.8rem;
  margin-bottom: 0.75rem;
}

.act-blok-tekst h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--rood);
  margin-bottom: 0.5rem;
}

.act-blok-tekst .goud-lijn {
  width: 50px;
  height: 3px;
  background: var(--goud);
  margin-bottom: 1.25rem;
}

.act-blok-tekst p {
  color: var(--grijs);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.badge-lijst {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.badge {
  background: var(--rood);
  color: var(--wit);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

/* === CONTACT PAGINA === */
.contact-sectie { background: var(--creme); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.9rem;
  color: var(--rood);
  margin-bottom: 2rem;
}

.contact-rij {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  align-items: flex-start;
}

.contact-icoon {
  width: 40px;
  height: 40px;
  background: var(--rood);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wit);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-rij-tekst h4 {
  font-size: 0.85rem;
  color: var(--goud);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.contact-rij-tekst p, .contact-rij-tekst a {
  font-size: 0.95rem;
  color: var(--tekst);
}

.contact-rij-tekst a:hover { color: var(--rood); }

/* Openingsuren tabel — compact */
.uren-tabel {
  width: 100%;
  border-collapse: collapse;
}

.uren-tabel tr td {
  padding: 0.28rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--creme-dark);
}

.uren-tabel tr td:first-child { color: var(--grijs); padding-right: 1.5rem; }
.uren-tabel tr td:last-child { font-weight: 600; }
.uren-tabel tr.gesloten td { color: rgba(107,99,96,0.45); font-weight: 400; }

/* Vandaag-highlight */
.uren-tabel tr.vandaag td {
  background: rgba(122,31,46,0.07);
}
.uren-tabel tr.vandaag td:first-child {
  color: var(--rood);
  font-weight: 700;
}
.uren-tabel tr.vandaag td:last-child {
  color: var(--rood);
}

/* Open/gesloten badge */
.open-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 0.5rem;
  vertical-align: middle;
  line-height: 1.6;
}
.open-badge.nu-open  { background: rgba(52,168,83,0.14); color: #1a7a31; }
.open-badge.nu-dicht { background: rgba(122,31,46,0.12); color: var(--rood); }
.open-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: currentColor; display: inline-block; }

/* BTW voetnoot */
.contact-btw-note {
  font-size: 0.78rem;
  color: var(--grijs);
  opacity: 0.65;
  margin-top: 0.4rem;
}

.kaart-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.kaart-wrapper iframe {
  width: 100%;
  height: 270px;
  border: none;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  .gerechten-grid { grid-template-columns: repeat(2, 1fr); }
  .act-grid { grid-template-columns: repeat(2, 1fr); }
  .welkom-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(26,10,15,0.98); padding: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .welkom-grid { grid-template-columns: 1fr; }
  .welkom-fotos { grid-template-rows: 220px 220px; }
  .gerechten-grid { grid-template-columns: 1fr; }
  .act-grid { grid-template-columns: 1fr; }
  .act-blok { grid-template-columns: 1fr; gap: 2rem; }
  .act-blok.omgekeerd { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .uren-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hero-knoppen { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; }
}

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--donker);
  border-top: 3px solid var(--goud);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

#cookie-banner.zichtbaar { transform: translateY(0); }
#cookie-banner.verbergen  { transform: translateY(100%); }

.cb-inhoud {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cb-tekst {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.cb-tekst strong { color: var(--wit); }
.cb-tekst a { color: var(--goud); text-decoration: underline; }
.cb-tekst a:hover { color: var(--wit); }

.cb-knoppen {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cb-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cb-weigeren {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
}
.cb-weigeren:hover {
  border-color: var(--wit);
  color: var(--wit);
}

.cb-accepteren {
  background: var(--rood);
  border: 1.5px solid var(--rood);
  color: var(--wit);
}
.cb-accepteren:hover {
  background: var(--rood-dark);
  border-color: var(--rood-dark);
}

/* Google Maps placeholder (vóór toestemming) */
.maps-placeholder {
  background: var(--creme-dark);
  border: 2px dashed #D8D0C8;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  min-height: 210px;
  gap: 0.75rem;
}
.maps-placeholder .mp-icoon { font-size: 2.5rem; opacity: 0.4; }
.maps-placeholder p { color: var(--grijs); font-size: 0.9rem; margin: 0; }
.maps-placeholder button {
  margin-top: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--rood);
  color: var(--wit);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.maps-placeholder button:hover { background: var(--rood-dark); }
.maps-placeholder a { color: var(--rood); font-size: 0.85rem; }

@media (max-width: 640px) {
  .cb-inhoud { flex-direction: column; align-items: stretch; }
  .cb-knoppen { flex-direction: column; }
  .cb-btn { text-align: center; }
}
