/* ===== Tokens ===== */
:root {
  --background: hsl(0, 0%, 7%);
  --foreground: hsl(40, 33%, 89%);
  --border: hsl(0, 0%, 15%);
  --card: hsl(0, 0%, 10%);
  --card-border: hsl(0, 0%, 18%);
  --muted: hsl(0, 0%, 15%);
  --muted-foreground: hsl(40, 10%, 60%);
  --primary: hsl(0, 70%, 50%);
  --primary-hover: hsl(0, 70%, 45%);
  --primary-fg: #ffffff;
  --secondary: hsl(38, 38%, 45%);
  --input-bg: var(--background);
  --ring: hsl(0, 70%, 50%);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Inter', sans-serif;
  --container: 1280px;
  --radius: 0;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.1;
}

/* ===== Grain overlay ===== */
.bg-grain { position: relative; }
.bg-grain::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 100;
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.section { padding: 6rem 0; position: relative; }
.section-bg { background: var(--background); }
.section-card { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-heading { text-align: center; margin-bottom: 4rem; position: relative; z-index: 3; }
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.divider { width: 6rem; height: 4px; background: var(--primary); margin: 0 auto 1.5rem; }
.section-intro {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.muted { color: var(--muted-foreground); }
.small { font-size: 1rem; }
.accent { color: var(--primary); }
.strong { color: #fff; font-weight: 500; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all 0.25s ease;
  white-space: nowrap;
  text-align: center;
  font-weight: 600;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; height: 3.5rem; letter-spacing: 0.15em; }
.btn-block { width: 100%; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { background: var(--primary-hover); }
.btn-glow { box-shadow: 0 0 20px rgba(234, 88, 12, 0.3); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(234, 88, 12, 0.5); }
.btn-outline {
  background: rgba(255,255,255,0.02);
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===== Header ===== */

/* ===== Logo switch ===== */

.logo {
  display: flex;
  align-items: center;
}

/* groot logo (initieel zichtbaar) */
.logo-main {
  width: 140px;
  height: 140px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* sticky logo (standaard verborgen) */
.logo-sticky {
  width: 218px;
  height: 42px;
  object-fit: contain;
  display: none;
}

/* zodra header scrolled is */
#site-header.scrolled .logo-main {
  display: none;
}

#site-header.scrolled .logo-sticky {
  display: block;
}

/* meer ruimte bovenin bij start */
#site-header {
  padding: 2rem 0;
}

/* bij scroll weer compact */
#site-header.scrolled {
  padding: 0.75rem 0;
}


#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  padding: 0.75rem 0;
  background: hsla(0,0%,7%,0.95);
  backdrop-filter: blur(8px);
  border-bottom-color: hsla(0,0%,15%,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (min-width: 768px) { .logo { font-size: 1.5rem; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: hsla(40,33%,89%,0.8);
  transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a.btn { color: var(--primary-fg); font-family: var(--font-display); }
.nav-desktop a.btn:hover { color: var(--primary-fg); }
@media (min-width: 768px) { .nav-desktop { display: flex; } .menu-toggle { display: none!important; } }

.menu-toggle { padding: 0.5rem; color: var(--foreground); display: flex; align-items: center; justify-content: center; }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(0,0,0,0.5);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsla(0,0%,15%,0.5);
}
.nav-mobile a:last-child { border: none; padding: 0.75rem 1rem; margin-top: 0.5rem; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay-1 {
  position: absolute; inset: 0;
  background: ;
}
.hero-overlay-2 { position: absolute; inset: 0; background: rgba(0,0,0,0.15); }
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  text-align: center;
}
@media (min-width: 768px) { .hero-content { text-align: left; } }
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #d1d5db;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  max-width: 42rem;
}
.hero-cta { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; justify-content: flex-start; }
}
@media (max-width: 767px) {
  .hero-content, .hero-cta { align-items: center; }
}

/* ===== Grids ===== */
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-gap-lg { gap: 3rem; }
@media (min-width: 1024px) { .grid-gap-lg { gap: 4rem; } }

/* ===== USP ===== */
.usp { display: flex; flex-direction: column; }
.usp-icon {
  width: 4rem; height: 4rem;
  background: var(--muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}
.usp h3 {
  font-size: 1.5rem;
  font-family: var(--font-display);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.check-list { display: flex; flex-direction: column; gap: 0.75rem; color: var(--muted-foreground); }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d24a1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='9 12 11 14 16 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Trips / Cards ===== */
.trips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) { .trips-grid { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--background);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.card:hover { border-color: hsla(14, 65%, 54%, 0.5); }
.card-header { padding: 1.5rem 1.5rem 1rem; }
.card-title { font-size: 1.875rem; font-family: var(--font-display); letter-spacing: 0.05em; }
.card-body { padding: 0 1.5rem; flex-grow: 1; }
.card-footer { padding: 1.5rem; }
.day-list { display: flex; flex-direction: column; gap: 1rem; }
.day-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsla(0,0%,15%,0.5);
}
.day-list li.no-border { border-bottom: none; padding-bottom: 0; }
.day-label {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--muted-foreground);
  width: 7rem;
  flex-shrink: 0;
}
.ribbon {
  position: absolute;
  top: 1rem; right: -30px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  z-index: 2;
}

.info-box {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--muted);
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
@media (min-width: 768px) { .info-box { padding: 2rem; } }
.info-box h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.info-list { display: flex; flex-direction: column; gap: 0.75rem; color: var(--muted-foreground); font-size: 1.1rem; line-height: 1.6; }
.info-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.chev {
  flex-shrink: 0;
  margin-top: 4px;
  width: 18px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d24a1f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Gallery ===== */
/* ===== Gallery ===== */
.gallery-section {
  overflow: hidden;
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.watermark h2 {
  font-size: 10vw;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
}

.gallery-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid-dynamic .g-tile {
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  background: #0b0b0b;
}

.gallery-grid-dynamic .g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-grid-dynamic .g-tile:hover img {
  transform: scale(1.05);
}

.gallery-grid-dynamic .g-square {
  aspect-ratio: 1 / 1;
}

.gallery-grid-dynamic .g-wide {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .gallery-grid-dynamic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid-dynamic {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .gallery-grid-dynamic .g-wide {
    grid-column: span 2;
  }
}

.gallery-grid-accommodation .g-wide {
  aspect-ratio: 16 / 9;
}

/* Oude varianten neutraliseren */
.g-square,
.g-wide {
  aspect-ratio: 1 / 1;
}

@media (min-width: 1024px) {
  .g-wide {
    grid-column: span 1;
  }
}

/* ===== Guide ===== */
.guide-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .guide-row { flex-direction: row; gap: 5rem; align-items: center; }
}
.guide-photo { position: relative; width: 100%; }
@media (min-width: 1024px) { .guide-photo { width: 50%; } }
.guide-photo-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
}
.guide-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.25);
}
.guide-photo-shadow {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 100%; height: 100%;
  background: hsla(38,38%,45%,0.1);
  border: 1px solid var(--border);
  z-index: 0;
}
.guide-text { width: 100%; }
@media (min-width: 1024px) { .guide-text { width: 50%; } }
.guide-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.guide-text h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
  font-family: var(--font-display);
}
.guide-text .lead {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.guide-list {
  display: flex; flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}
.guide-list li { display: flex; align-items: flex-start; gap: 1rem; }
.g-icon {
  background: var(--muted);
  color: var(--primary);
  padding: 4px;
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 4px;
}
.guide-list li span:not(.g-icon) { font-weight: 500; }
.guide-strip {
  height: 8rem;
  width: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.5s;
}
.guide-strip:hover { filter: grayscale(0); opacity: 1; }

/* ===== Why Choose ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  transition: border-color 0.3s;
}
.why-card:hover { border-color: hsla(14, 65%, 54%, 0.3); }
.why-icon {
  width: 3rem; height: 3rem;
  border-radius: 9999px;
  background: var(--muted);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-card h4 {
  font-weight: 500;
  font-size: 1.125rem;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0;
}

/* ===== Contact ===== */
.contact-section {
  position: relative;
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.contact-bg { position: absolute; inset: 0; z-index: 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay {
  position: absolute; inset: 0;
  background: hsla(0,0%,7%,0.9);
  backdrop-filter: blur(4px);
}
.contact-inner { position: relative; z-index: 1; }
.contact-card {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
@media (min-width: 768px) { .contact-card { padding: 3rem; } }
.contact-card .section-heading { margin-bottom: 2.5rem; text-align: center; }
.contact-card .section-heading h2 { font-size: clamp(1.75rem, 4vw, 3rem); margin-bottom: 1rem; }

/* ===== Form ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field {
  display: flex; flex-direction: column;
  margin-bottom: 1.5rem;
}
.form-grid .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.625rem 0.75rem;
  font-size: 0.95rem;
  color: var(--foreground);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.form-field textarea { resize: none; min-height: 120px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px hsla(14,65%,54%,0.3);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: hsla(40,10%,60%,0.7); }
.form-field input[type="date"] { color-scheme: dark; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4caa6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.form-field .error {
  color: hsl(0, 84%, 60%);
  font-size: 0.8125rem;
  margin-top: 0.375rem;
  min-height: 1em;
}
.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea { border-color: hsl(0, 84%, 60%); }

/* ===== Footer ===== */
footer {
  background: #0a0a0a;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
@media (min-width: 768px) { footer { text-align: left; } }
.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-row { flex-direction: row; justify-content: space-between; } }
.footer-brand { max-width: 20rem; }
.logo-light { color: #fff; margin-bottom: 1rem; font-size: 1.5rem; display: block; }
.footer-contact {
  display: flex; flex-direction: column;
  gap: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-contact { text-align: right; } }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(0,0%,15%,0.3);
  text-align: center;
  font-size: 0.75rem;
  color: hsla(40,10%,60%,0.6);
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  background: #25D366;
  color: #fff;
  padding: 1rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--card);
  border: 1px solid var(--primary);
  border-left-width: 4px;
  color: var(--foreground);
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  box-shadow: 0 16px 32px rgba(0,0,0,0.5);
  z-index: 200;
  max-width: calc(100vw - 2rem);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Hoofdcontainer: Licht en fris */
.flatpickr-calendar {
  background: #ffffff;
  border: 1px solid #dddddd;
  color: #222222;
  font-family: var(--font-sans), sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Header: Maand en Jaar */
.flatpickr-months {
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.flatpickr-current-month {
  color: #000000 !important;
  font-weight: 600;
}

.flatpickr-current-month input.cur-year,
.flatpickr-current-month .flatpickr-monthDropdown-months {
  color: #000000 !important;
  background: #ffffff;
}

/* Pijltjes: Donkergrijs, rood bij hover */
.flatpickr-prev-month,
.flatpickr-next-month {
  fill: #333333 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  fill: #ff0000 !important;
}

/* Weekdagen balk */
.flatpickr-weekdays {
  background: #f8f8f8; /* Heel lichtgrijs voor subtiel contrast */
  border-bottom: 1px solid #eeeeee;
}

span.flatpickr-weekday {
  color: #666666 !important;
  font-weight: 600;
}

/* Dagen Grid */
.flatpickr-days {
  background: #ffffff;
}

.flatpickr-day {
  color: #222222 !important; /* Duidelijke donkere tekst */
  border-radius: 6px;
  border: 1px solid transparent;
}

/* Dagen buiten de maand */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #cccccc !important;
}

/* Hover op een dag */
.flatpickr-day:hover {
  background: #f0f0f0 !important;
  color: #ff0000 !important;
}

/* Vandaag: Rode cirkel rand */
.flatpickr-day.today {
  border-color: #ff0000 !important;
  color: #ff0000 !important;
  font-weight: bold;
}

/* Geselecteerde dag: Volledig rood met witte tekst */
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #ff0000 !important;
  border-color: #ff0000 !important;
  color: #ffffff !important;
}

/* Time picker onderaan */
.flatpickr-time {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
}

.flatpickr-time input {
  color: #222222 !important;
}

/* Input field op de pagina zelf (optioneel) */
input.flatpickr-input {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
}

.check-list,
.info-list,
.guide-list {
  font-size: 18px!important;
}