
/* Global Styles */
:root {
	
	color-scheme: light;
	
    /* --- Nieuwe Kleuren & Overlays --- */
    --clr-cream: #F8F4EE;
    --clr-dark: #2C1810;
    --clr-gold: #B8935A;
    --clr-gold-lt: #D4AF7A;
    --clr-muted: #6B5D52;
    --clr-white: #FFFFFF;
    --clr-overlay: rgba(28, 14, 8, 0.52);
    --clr-nav-bg: rgba(28, 14, 8, 0.96);

    /* --- Functionele Kleurkoppelingen (Gerefactored) --- */
    --primary-color: var(--clr-dark);       /* Warm donkerbruin als basis */
    --secondary-color: var(--clr-muted);    /* Neutraal matbruin/grijs */
    --accent-color: var(--clr-gold);        /* Luxe goudtint */
    --accent-color-light: var(--clr-gold-lt); /* Extra: lichte goudvariant */
    
    --light-bg: var(--clr-cream);           /* Romige lichte achtergrond */
    --bg-light: var(--clr-cream);           /* Synoniem uit je oude root */
    --dark-bg: var(--clr-dark);             /* Donkere achtergrond */
    
    --text-color: var(--clr-dark);          /* Standaard tekstkleur */
    --text-dark: var(--clr-dark);           /* Donkere tekst */
    --text-muted: var(--clr-muted);         /* Extra: subtekst / minder opvallend */
    --light-text: var(--clr-white);         /* Witte tekst voor op donkere bg */
    --border-color: var(--clr-gold-lt);     /* Subtiele gouden randen ipv saai grijs */

    /* --- Typography (Lettertypes) --- */
    /* --- Typography (Lettertypes) --- */
    --ff-display: 'Georgia', 'Times New Roman', serif;
    --ff-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
    --ff-script: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;

    /* Oude font-koppelingen */
    --font-heading: var(--ff-display);
    --font-body: var(--ff-body);

    /* --- Typography (Fluid Font Sizes via Clamp) --- */
    --fs-xs: clamp(0.7rem, 1.5vw, 0.8rem);
    --fs-sm: clamp(0.85rem, 2vw, 0.95rem);
    --fs-base: clamp(1rem, 2.5vw, 1.05rem);
    --fs-md: clamp(1.1rem, 2.5vw, 1.25rem);
    --fs-lg: clamp(1.4rem, 3.5vw, 1.75rem);
    --fs-xl: clamp(2rem, 5vw, 3rem);
    --fs-hero: clamp(2.2rem, 5vw, 3.5rem);

    /* --- Spacing (Margin / Padding) --- */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;h
    --space-xl: 7rem;

    /* --- Layout & Animatie --- */
    --radius: 2px;
    --border-radius: var(--radius); /* Gekoppeld aan je nieuwe strakkere radius */
    --transition: 0.3s ease;
    --transition-speed: var(--transition);
}

/* =============================================================
   RICH TEXT / CMS CONTENT STYLES — De Buitenpoort
   Gebruik: voeg klasse .rt of .rich-text toe aan je CMS-wrapper
   Alle variabelen komen uit het hoofdstylesheet (globals.css)
   ============================================================= */

/* ── Headings ──────────────────────────────────────────────── */

.rt h1, .rich-text h1 {
  font-family: var(--ff-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.1;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.rt h1:first-child, .rich-text h1:first-child { margin-top: 0; }
.rt h1 em, .rich-text h1 em {
  font-style: italic;
  color: var(--clr-gold-lt);
}

.rt h2, .rich-text h2 {
  font-family: var(--ff-display);
  font-size: var(--fs-xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--clr-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.rt h2:first-child, .rich-text h2:first-child { margin-top: 0; }
.rt h2 em, .rich-text h2 em {
  font-style: italic;
  color: var(--clr-gold);
}

.rt h3, .rich-text h3 {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-dark);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}
.rt h3:first-child, .rich-text h3:first-child { margin-top: 0; }
.rt h3 em, .rich-text h3 em {
  font-style: italic;
  color: var(--clr-gold);
}

.rt h4, .rich-text h4 {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.3;
  color: var(--clr-dark);
  margin-bottom: 0.6rem;
  margin-top: 2rem;
}
.rt h4:first-child, .rich-text h4:first-child { margin-top: 0; }

.rt h5, .rich-text h5 {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--clr-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 1.75rem;
}
.rt h5:first-child, .rich-text h5:first-child { margin-top: 0; }

.rt h6, .rich-text h6 {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  margin-top: 1.5rem;
}
.rt h6:first-child, .rich-text h6:first-child { margin-top: 0; }

/* ── Body tekst ─────────────────────────────────────────────── */

.rt p, .rich-text p {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.rt p:last-child, .rich-text p:last-child { margin-bottom: 0; }

.rt strong, .rich-text strong {
  font-weight: 700;
  color: var(--clr-dark);
}

.rt em, .rich-text em {
  font-style: italic;
  color: inherit;
}

.rt small, .rich-text small {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  letter-spacing: 0.05em;
}

/* ── Links ──────────────────────────────────────────────────── */

.rt a, .rich-text a {
  color: var(--clr-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 147, 90, 0.4);
  transition: color var(--transition), border-color var(--transition);
}
.rt a:hover, .rich-text a:hover {
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}
.rt a:focus-visible, .rich-text a:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ── Ongeordende lijst ──────────────────────────────────────── */

.rt ul, .rich-text ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.rt ul li, .rich-text ul li {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.75;
  padding: 0.55rem 0 0.55rem 1.75rem;
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  position: relative;
}
.rt ul li:first-child, .rich-text ul li:first-child {
  border-top: 1px solid rgba(184, 147, 90, 0.15);
}

/* Gouden stip als bullet */
.rt ul li::before, .rich-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  transform: translateY(-50%);
  flex-shrink: 0;
}

/* ── Geordende lijst ────────────────────────────────────────── */

.rt ol, .rich-text ol {
  list-style: none;
  counter-reset: rt-counter;
  margin: 0 0 1.25rem;
  padding: 0;
}

.rt ol li, .rich-text ol li {
  counter-increment: rt-counter;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.75;
  padding: 0.65rem 0 0.65rem 2.75rem;
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  position: relative;
}
.rt ol li:first-child, .rich-text ol li:first-child {
  border-top: 1px solid rgba(184, 147, 90, 0.15);
}

/* Cirkel met getal */
.rt ol li::before, .rich-text ol li::before {
  content: counter(rt-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184, 147, 90, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  line-height: 1;
  font-family: var(--ff-body);
}

/* ── Geneste lijsten ────────────────────────────────────────── */

.rt ul ul, .rich-text ul ul,
.rt ol ol, .rich-text ol ol,
.rt ul ol, .rich-text ul ol,
.rt ol ul, .rich-text ol ul {
  margin: 0.25rem 0 0.25rem 1.5rem;
  border-top: none;
  border-bottom: none;
}

.rt ul ul li, .rich-text ul ul li,
.rt ol ul li, .rich-text ol ul li {
  border-top: none;
  border-bottom: none;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: var(--fs-xs);
}

/* Hol stipje voor niveau 2 */
.rt ul ul li::before, .rich-text ul ul li::before {
  width: 5px;
  height: 5px;
  background: transparent;
  border: 1px solid var(--clr-gold);
}

/* ── Blockquote ─────────────────────────────────────────────── */

.rt blockquote, .rich-text blockquote {
  background: var(--clr-dark);
  border-radius: var(--radius);
  padding: 2rem 2rem 2rem 3rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

/* Gouden openingsaanhalingsteken */
.rt blockquote::before, .rich-text blockquote::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 400;
  color: var(--clr-gold);
  line-height: 0.7;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  opacity: 0.3;
}

.rt blockquote p, .rich-text blockquote p {
  font-family: var(--ff-display);
  font-size: var(--fs-md);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.rt blockquote cite, .rich-text blockquote cite {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.rt blockquote cite::before, .rich-text blockquote cite::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* ── Horizontale lijn ───────────────────────────────────────── */

.rt hr, .rich-text hr {
  border: none;
  border-top: 1px solid rgba(184, 147, 90, 0.25);
  margin: 2.5rem 0;
  position: relative;
}

/* Optioneel: gouden diamantje op de hr */
.rt hr::after, .rich-text hr::after {
  content: '◆';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  color: var(--clr-gold);
  background: inherit;
  padding: 0 0.5rem;
}

/* ── Inline code ────────────────────────────────────────────── */

.rt code, .rich-text code {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.875em;
  background: rgba(184, 147, 90, 0.1);
  color: var(--clr-dark);
  padding: 2px 6px;
  border-radius: var(--radius);
  border: 1px solid rgba(184, 147, 90, 0.2);
}

/* ── Codeblok ───────────────────────────────────────────────── */

.rt pre, .rich-text pre {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: var(--fs-sm);
  line-height: 1.7;
  border-left: 3px solid var(--clr-gold);
}
.rt pre code, .rich-text pre code {
  background: none;
  color: inherit;
  padding: 0;
  border: none;
  border-radius: 0;
  font-size: inherit;
}

/* ── Afbeelding ─────────────────────────────────────────────── */

.rt img, .rich-text img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0;
	display: inline-block;
}

/* ── Figuur + bijschrift ────────────────────────────────────── */

.rt figure, .rich-text figure {
  margin: 2rem 0;
}
.rt figcaption, .rich-text figcaption {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  font-style: italic;
  margin-top: 0.6rem;
  letter-spacing: 0.05em;
  padding-left: 0.5rem;
  border-left: 2px solid var(--clr-gold);
}

/* ── Tabel ──────────────────────────────────────────────────── */

.rt table, .rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: var(--fs-sm);
  background: var(--clr-white);
}

.rt thead, .rich-text thead {
  background: var(--clr-dark);
}

.rt th, .rich-text th {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 2px solid var(--clr-gold);
}

.rt td, .rich-text td {
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid rgba(184, 147, 90, 0.15);
  color: var(--clr-muted);
  font-weight: 400;
  line-height: 1.6;
  vertical-align: top;
}

.rt tr:last-child td, .rich-text tr:last-child td {
  border-bottom: none;
}

.rt tr:hover td, .rich-text tr:hover td {
  background: rgba(248, 244, 238, 0.6);
}

/* Mobiel: tabel scrollen */
@media (max-width: 600px) {
  .rt table, .rich-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Definitielijst ─────────────────────────────────────────── */

.rt dl, .rich-text dl {
  margin: 0 0 1.25rem;
}
.rt dt, .rich-text dt {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 1rem;
}
.rt dt:first-child, .rich-text dt:first-child { margin-top: 0; }
.rt dd, .rich-text dd {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  padding-left: 1.25rem;
  border-left: 2px solid rgba(184, 147, 90, 0.3);
  margin-left: 0;
  margin-top: 0.25rem;
  line-height: 1.7;
}

/* ── Superscript / Subscript ────────────────────────────────── */

.rt sup, .rich-text sup,
.rt sub, .rich-text sub {
  font-size: 0.7em;
  color: var(--clr-gold);
  font-weight: 600;
}

/* ── Markering ──────────────────────────────────────────────── */

.rt mark, .rich-text mark {
  background: rgba(184, 147, 90, 0.2);
  color: var(--clr-dark);
  padding: 1px 4px;
  border-radius: 2px;
}

/* ── Buttons ────────────────────────────────────────────────── */

/* Basis — geldt voor alle .btn varianten binnen .rt / .rich-text */
.rt .btn, .rich-text .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;        /* override .rt a */
  border-bottom: none;          /* override .rt a border-bottom */
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}
.rt .btn:hover, .rich-text .btn:hover {
  transform: translateY(-2px);
}
.rt .btn:focus-visible, .rich-text .btn:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}
.rt .btn:active, .rich-text .btn:active {
  transform: translateY(0);
}

/* Goud (primaire actie) */
.rt .btn--gold, .rich-text .btn--gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
	display: table-cell;
}
.rt .btn--gold:hover, .rich-text .btn--gold:hover {
  background: transparent;
  color: var(--clr-gold);
}

/* Donker (secundaire actie) */
.rt .btn--dark, .rich-text .btn--dark {
  background: var(--clr-dark);
  color: var(--clr-white);
  border-color: var(--clr-dark);
}
.rt .btn--dark:hover, .rich-text .btn--dark:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-white);
}

/* Outline op lichte achtergrond */
.rt .btn--outline, .rich-text .btn--outline {
  background: transparent;
  color: var(--clr-dark);
  border-color: var(--clr-dark);
}
.rt .btn--outline:hover, .rich-text .btn--outline:hover {
  background: var(--clr-dark);
  color: var(--clr-white);
}

/* Outline op donkere achtergrond */
.rt .btn--outline-light, .rich-text .btn--outline-light {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.rt .btn--outline-light:hover, .rich-text .btn--outline-light:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* Ghost: enkel goud, geen fill */
.rt .btn--ghost, .rich-text .btn--ghost {
  background: transparent;
  color: var(--clr-gold);
  border-color: rgba(184, 147, 90, 0.5);
}
.rt .btn--ghost:hover, .rich-text .btn--ghost:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  border-color: var(--clr-gold);
}

/* Maten */
.rt .btn--sm, .rich-text .btn--sm {
  padding: 0.6em 1.4em;
  font-size: calc(var(--fs-xs) * 0.9);
  letter-spacing: 0.1em;
}
.rt .btn--lg, .rich-text .btn--lg {
  padding: 1em 2.5em;
  font-size: var(--fs-sm);
  letter-spacing: 0.14em;
}

/* Full-width knop */
.rt .btn--full, .rich-text .btn--full {
  width: 100%;
  margin-right: 0;
}

/* Knoppengroep naast elkaar */
.rt .btn-group, .rich-text .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.rt .btn-group .btn, .rich-text .btn-group .btn {
  margin: 0;
}

/* ── Ruimte onderaan: laatste element geen margin ───────────── */

.rt > *:last-child, .rich-text > *:last-child {
  margin-bottom: 0;
}

/* ── Dark-mode ondersteuning ────────────────────────────────── 

@media (prefers-color-scheme: dark) {
  .rt p, .rich-text p,
  .rt ul li, .rich-text ul li,
  .rt ol li, .rich-text ol li {
    color: rgba(240, 232, 220, 0.75);
  }
  .rt h1, .rich-text h1,
  .rt h2, .rich-text h2,
  .rt h3, .rich-text h3,
  .rt h4, .rich-text h4,
  .rt h5, .rich-text h5 {
    color: #F0E8DC;
  }
  .rt table, .rich-text table { background: #2a1f18; }
  .rt tr:hover td, .rich-text tr:hover td { background: rgba(44, 24, 16, 0.4); }
  .rt code, .rich-text code {
    background: rgba(184, 147, 90, 0.15);
    color: #F0E8DC;
  }
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden; /* Voorkomt horizontale scrollbalk door mobiel menu */
}

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
	margin: 0.5rem;
		position:relative;
	z-index:999;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
	color:inherit;
}

.btn-small {
    font-size: 0.85rem;
    padding: 8px 15px;
    border-radius: 5px;
}
 .btn--gold {
      background: var(--clr-gold);
      color: var(--clr-white);
      border: 1px solid var(--clr-gold);
    }
    .btn--gold:hover, .btn--gold:focus-visible {
      background: transparent;
      color: var(--clr-gold);
    }
    .btn--outline {
      background: transparent;
      color: var(--clr-white);
      border: 1px solid rgba(255,255,255,0.6);
    }
    .btn--outline:hover, .btn--outline:focus-visible {
      border-color: var(--clr-gold);
      color: var(--clr-gold);
    }
    .btn--dark {
      background: var(--clr-dark);
      color: var(--clr-white);
      border: 1px solid var(--clr-dark);
    }
    .btn--dark:hover, .btn--dark:focus-visible {
      background: var(--clr-gold);
      border-color: var(--clr-gold);
    }

/* Header & Navbar */
.header {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light-text);
    letter-spacing: 1px;
    transition: color var(--transition-speed);
}

.logo:hover {
    color: var(--primary-color);
}

/* Desktop Social Icons */
.desktop-social {
    display: flex; /* Alleen zichtbaar op desktop */
    gap: 15px;
}

.desktop-social a {
    color: var(--light-text);
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.desktop-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
}

    /* ===== SERVICES / OCCASIONS ===== */
    .occasions { background: var(--clr-cream);    padding: 4rem 0; }
    .section-header { text-align: center;     margin-top: var(--space-lg);
    margin-bottom: var(--space-lg); }
    .section-title {
      font-family: var(--ff-display);
      font-size: var(--fs-xl);
      font-weight: 400;
      line-height: 1.15;
      color: var(--clr-dark);
    }
    .section-intro {
      max-width: 580px;
      margin-inline: auto;
      color: var(--clr-muted);
      font-size: var(--fs-sm);
      margin-top: 0.75rem;
    }

    .occasions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 100px), 1fr));
      gap: 1.5px;
      background: var(--clr-gold);
      border: 1.5px solid var(--clr-gold);
    }
    .occasion-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4/5;
      background: var(--clr-dark);
    }
    .occasion-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease, filter 0.6s ease;
    }
    .occasion-card:hover .occasion-img,
    .occasion-card:focus-within .occasion-img {
      transform: scale(1.06);
      filter: brightness(0.7);
    }
    .occasion-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(28,14,8,0.85) 0%, rgba(28,14,8,0.1) 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.75rem;
      transition: background var(--transition);
    }
    .occasion-card:hover .occasion-overlay { background: linear-gradient(to top, rgba(28,14,8,0.92) 0%, rgba(28,14,8,0.3) 60%); }

    .occasion-icon {
      width: 36px;
      height: 36px;
      color: var(--clr-gold);
      margin-bottom: 0.75rem;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    }
    .occasion-card:hover .occasion-icon,
    .occasion-card:focus-within .occasion-icon { opacity: 1; transform: translateY(0); }

    .occasion-title {
      font-family: var(--ff-display);
      font-size: var(--fs-lg);
      color: var(--clr-white);
      font-weight: 400;
      line-height: 1.2;
    }
    .occasion-desc {
      font-size: var(--fs-xs);
      color: rgba(255,255,255,0.7);
      margin-top: 0.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .occasion-card:hover .occasion-desc,
    .occasion-card:focus-within .occasion-desc { max-height: 80px; }

    .occasion-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: var(--fs-xs);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--clr-gold);
      margin-top: 1rem;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
    }
    .occasion-card:hover .occasion-link,
    .occasion-card:focus-within .occasion-link { opacity: 1; transform: translateY(0); }

 @media (max-width: 600px) {
.occasions-grid {
   
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    
}
}
	 
	  @media (max-width: 480px) {
.occasions-grid {
   
	grid-template-columns: repeat(1fr, 1fr));}
    
}

/* FAQ Container */
.faqwrapper {
    width: 100%;
    margin: 40px 0;
    display: grid;
    grid-template-columns: 1fr;
}

/* Verwijder de float van faqlist voor modernere grid layout */
.faqlist {
    width: 100%;
}

.faqitem {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0d7d3;
    margin-bottom: 15px; 
    border-radius: 5px;
}

/* De Header Link */
a.faqheader {
    display: block;
    text-decoration: none;
    background-color: var(--dark-bg);
    padding: 15px 50px 15px 20px;
    position: relative;
    transition: background-color 0.3s ease;
}

a.faqheader:hover {
    background-color: #b3afac;
}

/* De H3 binnen de link */
a.faqheader h3 {
    color: #ffffff !important;
    margin: 0 !important; 
    padding: 0 !important;
    font-size: 18px;
    font-weight: 600;
    text-transform: none; 
    font-family: inherit;
}

/* Het icoontje (+ / -) */
a.faqheader::after {
    content: "+";
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #d7ccc8;
    transition: transform 0.3s ease;
}

/* Styling als het item open is (active class) */
a.faqheader.active {
    background: var(--clr-gold);
}

a.faqheader.active::after {
    content: "-";
    transform: translateY(-50%) rotate(180deg);
}

/* Zodra het item open is, mag hij na de animatie uitvouwen tot zijn natuurlijke hoogte */
a.faqheader.active + .faqcontent {
    max-height: none !important;
    overflow: visible !important;
}

/* De Content (Antwoord) */
.faqcontent {
    background-color: #fdfbf9;
    padding: 0px 20px; /* Boven/onder staat op 0, links/rechts op 20px */
    color: #3e2723;
    line-height: 1.6;
    border-top: 1px solid transparent; /* Begint onzichtbaar, JS kleurt deze in */
    font-size: 16px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, border-color 0.3s ease-out;
}

/* Voor mobiel */
@media (max-width: 600px) {
    .faqwrapper {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Clearfix voor oude browsers (optioneel) */
.clear {
  clear: both;
}


    /* ===== EVENEMENTEN / CALENDAR BAND ===== */
    .events-band {
      background: var(--clr-gold);
      color: var(--clr-dark);
      padding-block: var(--space-md);
      text-align: center;
    }
    .events-band-title {
      font-family: var(--ff-display);
      font-size: var(--fs-lg);
      font-weight: 400;
    }
    .events-band-sub {
      font-size: var(--fs-sm);
      margin-top: 0.5rem;
      opacity: 0.8;
    }
.events-band .btn--dark { margin-top: 1.5rem; }

/*oude site*/

.fotoblok-home h2 {color: var(--clr-dark); }
.fotoblok-home p {color: var(--clr-dark);}
.fotoblok-home {padding-block: var(--space-md);     background: var(--clr-gold);     padding-bottom: 0px; }


/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px; /* Adjust as needed */
    overflow: hidden;
}
.hero-slider .slider-item {
    position: absolute;
    inset: 0;
}

.hero-slider .slider-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.45),
        rgba(0,0,0,.35),
        rgba(0,0,0,.25)
    );
    z-index: 1;
}

.hero-slider .slider-content {
    position: relative;
    z-index: 2;
}



.hero-eyebrow {
    font-size: var(--fs-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: 1.25rem;
    font-family: var(--ff-body);
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    text-align: center;
    color: var(--light-text);
    padding: 40px 60px;
    border-radius: var(--border-radius);
    max-width: 800px;
    margin-top: -105px;
}

.slider-content h1 {
    font-family: var(--ff-display);
    font-size: var(--fs-hero);
    font-weight: 400;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.slider-content em {
    font-style: italic;
    color: var(--clr-gold-lt);
}

.slider-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

/* NAV */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--light-text);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    border-radius: var(--border-radius);
    transition: background-color var(--transition-speed);
}

.slider-nav:hover {
    background-color: var(--primary-color);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}



	  /* ══════════════════════════════════════════
       HERO BANNER
       Aanbevolen afbeeldingmaat: 1200 × 600 px
       ══════════════════════════════════════════ */
 
    .hero-banner {
      position: relative;
      width: 100%;
      /* Hoogte: fluid tussen 320px (mobiel) en 600px (desktop) */
      height: clamp(320px, 50vw, 400px);
      overflow: hidden;
    }
.hero-banner__img,
.hero-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: bannerZoom 14s ease-in-out infinite alternate;
}
    @media (prefers-reduced-motion: reduce) {
      .hero-banner__img { animation: none; }
    }
    @keyframes bannerZoom {
      from { transform: scale(1.04); }
      to   { transform: scale(1.0);  }
    }
 
    /* ── Overlay: donker verloop van onder ── */
    .hero-banner__overlay {
      position: absolute;
      inset: 0;
      /* Bovenaan lichter, onderaan donkerder zodat tekst leesbaar blijft */
      background: linear-gradient(
        160deg,
        rgba(28, 14, 8, 0.35) 0%,
        rgba(28, 14, 8, 0.62) 100%
      );
    }
 
    /* Signatuurelement: dubbele gouden ring (logo-echo) */
    .hero-banner__ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(480px, 75%);
      aspect-ratio: 1;
      border: 1px solid rgba(184, 147, 90, 0.2);
      border-radius: 50%;
      pointer-events: none;
    }
    .hero-banner__ring::before {
      content: '';
      position: absolute;
      inset: 10px;
      border: 1px solid rgba(184, 147, 90, 0.12);
      border-radius: 50%;
    }
 
    /* ── Content wrapper ── */
    .hero-banner__content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding-inline: clamp(1.25rem, 6vw, 3rem);
      gap: 0;
    }
 
    /* ── Eyebrow ── */
    .hero-banner__eyebrow {
      display: block;
      font-family: var(--ff-body);
      font-size: var(--fs-xs);
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--clr-gold);
      margin-bottom: 0.9rem;
    }
 
    /* ── Gouden lijn ── */
    .hero-banner__rule {
      display: block;
      width: 48px;
      height: 1px;
      background: var(--clr-gold);
      margin: 0 auto 1.1rem;
    }
 
    /* ── Titel ── */
    .hero-banner__title {
      font-family: var(--ff-display);
      font-size: var(--fs-hero);
      font-weight: 400;
      color: var(--clr-white);
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 0.6rem;
    }
    .hero-banner__title em {
      font-style: italic;
      color: var(--clr-gold-lt);
    }
 
    /* ── Subtitel ── */
    .hero-banner__sub {
      font-family: var(--ff-display);
      font-size: var(--fs-md);
      font-style: italic;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 2rem;
      line-height: 1.4;
    }
 
    /* ── Knoppen ── */
    .hero-banner__ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      justify-content: center;
    }
 
    /* Gedeelde basisstijl */
    .hero-banner__ctas .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.82em 2em;
      font-family: var(--ff-body);
      font-size: var(--fs-xs);
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      line-height: 1;
      border-radius: var(--radius);
      border: 1px solid transparent;
      cursor: pointer;
      transition: background var(--transition), color var(--transition),
                  border-color var(--transition), transform var(--transition);
      white-space: nowrap;
      text-decoration: none;
    }
    .hero-banner__ctas .btn:hover  { transform: translateY(-2px); }
    .hero-banner__ctas .btn:active { transform: translateY(0); }
    .hero-banner__ctas .btn:focus-visible {
      outline: 2px solid var(--clr-gold);
      outline-offset: 3px;
    }
 
    /* Goud — primaire actie */
    .hero-banner__ctas .btn--gold {
      background: var(--clr-gold);
      color: var(--clr-white);
      border-color: var(--clr-gold);
    }
    .hero-banner__ctas .btn--gold:hover {
      background: transparent;
      color: var(--clr-gold);
    }
 
    /* Outline licht — op donkere foto */
    .hero-banner__ctas .btn--outline-light {
      background: transparent;
      color: var(--clr-white);
      border-color: rgba(255, 255, 255, 0.55);
    }
    .hero-banner__ctas .btn--outline-light:hover {
      border-color: var(--clr-gold);
      color: var(--clr-gold);
    }
 
    /* ── Scroll-indicator ── */
    .hero-banner__scroll {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.45);
      font-size: var(--fs-xs);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: scrollPulse 2.2s ease-in-out infinite;
    }
    .hero-banner__scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, rgba(184,147,90,0.55), transparent);
    }
    @keyframes scrollPulse {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
      50%       { transform: translateX(-50%) translateY(5px); opacity: 0.7; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-banner__scroll { animation: none; }
    }
 
    /* ── Mobiel ── */
    @media (max-width: 600px) {
      .hero-banner__sub    { display: none; }   /* op small screen weglaten */
      .hero-banner__ring   { display: none; }
      .hero-banner__scroll { display: none; }
    }
/* ===== ZALEN ===== */
    .zalen { background: var(--clr-cream); }
    .zalen-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
      gap: 2rem;
		    margin-top: -150px;
    position: relative;
    z-index: 999;
    }

    .zaal-card {
      background: var(--clr-white);
      border: 1px solid rgba(184,147,90,0.2);
      overflow: hidden;
      transition: box-shadow var(--transition);
    }
    .zaal-card:hover { box-shadow: 0 8px 40px rgba(28,14,8,0.12); }
    .zaal-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.zaal-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    .zaal-body { padding: 1.75rem; }
    .zaal-title {
      font-family: var(--ff-display);
      font-size: var(--fs-md);
      font-weight: 400;
    }
    .zaal-capacity {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: var(--fs-xs);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--clr-gold);
      margin-top: 0.5rem;
    }
    .zaal-desc { color: var(--clr-muted); font-size: var(--fs-sm); margin-top: 0.75rem; }

/* 3 -> 2 + 1 breed */
@media (max-width: 1100px) {
    .zalen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zalen-grid .zaal-card:last-child {
        grid-column: 1 / -1;
    }
}
/* Mobiel */
@media (max-width: 768px) {
    .zalen-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .zalen-grid .zaal-card:last-child {
        grid-column: auto;
    }
}

@media (max-width: 768px) {

.zalen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-top: 40px;
    position: relative;
    z-index: 999;
	
}
}


/* Menu Sections */
.menu-sections {
       padding: 80px 0;
    margin-top: -200px;
    position: relative;
    z-index: 999;
    background-color: transparent;
}

.menu-sections .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.menu-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.menu-card h3 {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px;
    text-align: center;
    margin-bottom: 0;
    font-size: 1.6rem;
}

.menu-card .card-content {
    padding: 25px;
    text-align: center;
}

.menu-card .card-content h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.menu-card .card-content p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #666;
}

/* Map Section */
.map-section {
    padding: 80px 0;
		background-image: url("../images2/ft.jpg");
    background-color: var(--dark-bg);
    color: var(--light-text);
    text-align: center;
}

.map-section h2 {
    color: var(--light-text);
    margin-bottom: 40px;
}

.map-placeholder {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #999;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

    /* ===== ABOUT ===== */
    .about {
      background: var(--clr-white);
		padding: 30px;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
      align-items: center;   
		padding: 4rem 0;
    }
    @media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; } }

    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 8px;
    }
    .about-img-grid img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
    }
    .about-img-grid img:first-child {
      grid-row: span 2;
      aspect-ratio: 4/7;
    }

    .about-text .section-title { text-align: left; }
    .about-text p { color: var(--clr-muted); margin-top: 1rem; font-size: var(--fs-sm); }
    .about-facts {
      display: flex;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .about-fact {
      font-size: var(--fs-xs);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--clr-gold);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .about-fact::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 1px;
      background: var(--clr-gold);
    }


/* Content sectie 100% breed binnen container */
.full-width-content {
    padding: 25px 0;
    color: var(--text-light);
    background-color: var(--bg-light);
    margin: 40px 0;
}

.full-width-content .container {
    max-width: 1200px;
}

.full-width-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.full-width-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.full-width-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.full-width-content .btn {
    margin-top: 20px;
}



/* Content sectie gesplitst in 2 delen */
.split-content-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.split-content-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color:#fff;
	padding: 50px;
}

.content-column {
    color: var(--text-light);
}

.content-column h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.content-column h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-column p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-column img {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
	
	 .split-content-section .container {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 30px 20px;
    }
	
    .content-column {
        margin: 10px;
    }

    .content-column h2,
    .content-column h3,
    .content-column p {
        margin-top: 0;
    }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col a {
    color: var(--light-text);
    transition: color var(--transition-speed);
}

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

.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-footer a {
    color: var(--light-text);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.social-footer a:hover {
    background-color: var(--primary-color);
}

/* Reservation Form in Footer */
.reservation-form form {
    display: grid;
    gap: 15px;
}

.reservation-form input[type="text"],
.reservation-form input[type="email"],
.reservation-form input[type="tel"],
.reservation-form input[type="number"],
.reservation-form input[type="date"],
.reservation-form input[type="time"],
.reservation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-speed);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.reservation-form input:focus,
.reservation-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.reservation-form textarea {
    resize: vertical;
    min-height: 100px;
}

.reservation-form .btn {
    width: fit-content;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Newsletter in Footer */
.newsletter form {
    display: flex;
    margin-top: 20px;
}

.newsletter input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    border-radius: 5px 0 0 5px;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter input[type="email"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

.newsletter .btn {
    border-radius: 0 5px 5px 0;
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-left: -1px; /* To prevent double border */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
	}

.footer-bottom ul {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}
@media (max-width: 1199px)  {
    .footer-columns {
        grid-template-columns: 1fr;
    }

}

/* Responsive Design - Overrides for non-navigation elements */
@media (max-width: 768px) { /* Changed from 992px to match navigation.css breakpoint */
		
	.menu-sections {
    margin-top: 0px !important;
	}
	
    .navbar .container {
        flex-direction: row; /* Blijf op een rij voor logo en toggle */
        justify-content: space-between;
        align-items: center;
    }

   

    /* Zorg dat de hamburger-toggle zichtbaar is */
    .menu-toggle {
        display: block;
        color: var(--light-text); /* Kleur van hamburger icoon */
        font-size: 1.5rem;
    }

    .hero-slider {
        height: 600px;
    }

    .slider-content {
        padding: 30px 40px;
        max-width: 90%;
		margin:0;
    }

    .slider-content h1 {
        font-size: 3.2rem;
    }

    .slider-content p {
        font-size: 1.2rem;
    }	

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero-slider {
        height: 500px;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-nav {
        padding: 10px 15px;
        font-size: 1.5rem;
    }

    .navbar .logo {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    /* .navbar .nav-links is nu beheerd door navigation.css */
 
    .hero-slider {
        height: 400px;
    }

    .slider-content {
        padding: 20px;
    }

    .slider-content h1 {
        font-size: 2rem;
    }

    .slider-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .menu-card h3 {
        font-size: 1.4rem;
    }

    .menu-card .card-content h4 {
        font-size: 1.2rem;
    }
}
@media (max-width: 320px) {

.desktop-social {
        display: none; /* Hide desktop social icons on mobile */
	margin-top: -16px;
    }
}
