/* ============================================
   ROODTRIP.NL — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary:    #1F4E5C;
  --secondary:  #E8B04B;
  --bg:         #FAFAF7;
  --bg-accent:  #EAF1F3;
  --text:       #1A1A1A;
  --text-muted: #8A8A8A;
  --white:      #FFFFFF;
  --radius:     4px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), transparent);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition);
  z-index: -1;
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--primary); }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--text); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--primary); }
.mobile-menu a.active { color: var(--secondary); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: background var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--text); }

/* ── 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('../Header.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}
.hero__eyebrow {
  color: var(--secondary);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero__title {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s ease forwards;
  margin-bottom: 1.5rem;
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
  transform: translateY(20px);
}
.hero__cta {
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
  transform: translateY(20px);
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--secondary);
  color: var(--text);
  border-color: var(--secondary);
}
.btn--primary:hover {
  background: #d4993a;
  border-color: #d4993a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,176,75,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31,78,92,0.2);
}
.btn:active { transform: translateY(0); }

/* ── TOEGANKELIJKHEID: focus-states ── */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 3px;
}
.nav a:focus-visible { outline-offset: 6px; }

/* ── DESTINATIONS GRID ── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.dest-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.dest-card__img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dest-card:hover .dest-card__img { transform: scale(1.06); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 55%);
  transition: opacity var(--transition);
}
.dest-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  color: var(--white);
}
.dest-card__region {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}
.dest-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1;
}
.dest-card:first-child .dest-card__name { font-size: 2.4rem; }
.dest-card__count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}

/* ── LATEST ARTICLES ── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.article-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.article-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.article-card:hover .article-card__img { transform: scale(1.05); }
.article-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-card__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
}
.article-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}
.article-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.article-card__meta span { display: flex; align-items: center; gap: 4px; }

/* ── CAMPING SECTION ── */
.camping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.camping-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.camping-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.camping-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.camping-card__body { padding: 20px; }
.camping-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.camping-card__location {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.camping-card__stars { display: flex; gap: 2px; color: var(--secondary); font-size: 0.85rem; }
.camping-card__price {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ── ABOUT TEASER ── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-teaser__img-wrap {
  position: relative;
}
.about-teaser__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.about-teaser__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(232,176,75,0.35);
}
.about-teaser__content { display: flex; flex-direction: column; gap: 20px; }
.about-teaser__text { color: #444; line-height: 1.8; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; }
.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter__input:focus { border-color: var(--secondary); }

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer__social a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--secondary); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer__bottom a:hover { color: var(--secondary); }

/* ── SECTION HEADER ── */
.section-header {
  max-width: 640px;
}
.section-header--center {
  text-align: center;
  margin: 0 auto;
}
.section-header p {
  color: #555;
  margin-top: 12px;
  line-height: 1.7;
}
.section-header__cta {
  margin-top: 28px;
}

/* ── STATS BAR ── */
.stats {
  display: flex;
  gap: 0;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}
.stat {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.stat__label { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }

/* ── QUOTE SECTION ── */
.quote-section {
  background: var(--bg-accent);
  text-align: center;
  padding: 80px 24px;
}
.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--primary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}
.quote-section cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  margin-top: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FULLWIDTH BANNER ── */
.fullwidth-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fullwidth-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.fullwidth-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.fullwidth-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.fullwidth-banner h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* ── PAGE HERO (alle subpagina's, uniform gecentreerd) ── */
.page-hero {
  height: 58vh;
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px 0;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 9s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.3) 45%, rgba(0,0,0,0.55) 100%),
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.35) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
}
.page-hero .eyebrow {
  color: var(--secondary);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease forwards;
}
.page-hero h1 {
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  opacity: 0;
  animation: fadeUp 0.9s 0.35s ease forwards;
}
.page-hero__content > p {
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 22px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}

/* ── OVER ONS CONTENT ── */
.over-ons-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 96px 0;
}
.over-ons-intro__text h2 { margin-bottom: 20px; }
.over-ons-intro__text p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
}
.over-ons-intro__img {
  position: sticky;
  top: 100px;
}
.over-ons-intro__img img {
  width: 100%;
  border-radius: 8px;
}
.over-ons-intro__img-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.value-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; color: #555; line-height: 1.7; }

/* ── BESTEMMINGEN PAGE ── */
.dest-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dest-page-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.dest-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.dest-page-card__img-wrap { position: relative; overflow: hidden; }
.dest-page-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-page-card:hover .dest-page-card__img { transform: scale(1.06); }
.dest-page-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary);
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.dest-page-card__body { padding: 24px; }
.dest-page-card__region {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.dest-page-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.dest-page-card__desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}
.dest-page-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.dest-page-card__meta span { display: flex; align-items: center; gap: 4px; }

/* ── NAV FLYOUTS ── */
.nav-has-flyout { position: relative; }
/* Onzichtbare hover-buffer onder de nav-link, zodat het menu blijft staan */
.nav-has-flyout::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px; right: -20px;
  height: 20px;
  z-index: 199;
  pointer-events: none;
}
.nav-has-flyout:hover::after,
.nav-has-flyout:focus-within::after { pointer-events: auto; }

.nav-flyout {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  pointer-events: none;
}
.nav-has-flyout:hover .nav-flyout,
.nav-has-flyout:focus-within .nav-flyout {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* ── MEGA MENU (Bestemmingen) ── */
.flyout__arrow {
  font-size: 0.6em;
  margin-left: 4px;
  opacity: 0.7;
}
.nav-flyout--mega {
  width: min(960px, calc(100vw - 80px));
  padding: 0;
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
}
.mega__intro {
  background: var(--primary);
  color: var(--white);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.mega__intro::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 110%, rgba(232,176,75,0.15), transparent 50%);
  pointer-events: none;
}
.mega__ico {
  font-size: 1.6rem;
  color: var(--secondary);
  line-height: 1;
}
.mega__intro h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}
.mega__intro p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.mega__cta {
  display: inline-block;
  color: var(--secondary) !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.mega__cta::after { display: none !important; }
.mega__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 22px 18px;
}
.mega__col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px;
}
.mega__continent {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-bottom: 8px;
  margin-bottom: 6px;
  border-bottom: 1px solid #f0e7d8;
}
.mega__continent--sub { margin-top: 18px; }
.mega__col a {
  display: block;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text) !important;
  transition: background 0.18s ease, color 0.18s ease, padding-left 0.18s ease;
}
.mega__col a::after { display: none !important; }
.mega__col a.mega__bezocht:hover {
  background: var(--bg-accent);
  color: var(--primary) !important;
  padding-left: 14px;
}
.mega__col a.mega__soon {
  color: var(--text-muted) !important;
  cursor: default;
  position: relative;
}
.mega__col a.mega__soon::before {
  content: '○';
  margin-right: 6px;
  font-size: 0.7em;
  opacity: 0.5;
}

@media (max-width: 980px) {
  .nav-flyout--mega { grid-template-columns: 1fr; width: min(640px, calc(100vw - 32px)); }
  .mega__cols { grid-template-columns: repeat(2, 1fr); }
  .mega__intro { padding: 20px; }
}

.nav-flyout--cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  width: 360px;
}
.nav-flyout--cols a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--text) !important;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.nav-flyout--cols a:hover { background: var(--bg-accent); }
.nav-flyout--cols a small {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 0.72rem;
}
.nav-flyout--cols .flyout__all {
  grid-column: span 2;
  justify-content: center;
  color: var(--primary) !important;
  font-weight: 600;
  border-top: 1px solid #f0f0f0;
  margin-top: 4px;
  padding-top: 12px;
  border-radius: 0;
}
.flyout__ico { font-size: 1.1rem; }
.nav-flyout--card {
  width: 280px;
  text-align: left;
}
.nav-flyout--card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.nav-flyout--card p {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.55;
  margin-bottom: 10px;
}
.nav-flyout--card .flyout__cta {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
/* Onderlijn (nav__links a::after) niet onder flyout-links */
.nav-flyout a::after { display: none !important; }

/* ── WERELDKAART (jsVectorMap) ── */
.worldmap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
#worldmap {
  width: 100%;
  height: 560px;
}
#worldmap svg { background: transparent; }
.jvm-tooltip { display: none !important; }

/* Laag met vlag-markers boven de kaart */
.flag-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.flag-marker {
  position: absolute;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid #fff;
  box-shadow: 0 2px 7px rgba(0,0,0,0.32);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 3;
}
.flag-marker:hover {
  transform: translate(-50%, -50%) scale(1.22);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 10;
}

/* Hover-popup */
.map-pop {
  position: absolute;
  z-index: 20;
  width: 190px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  transform: translate(-50%, calc(-100% - 26px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}
.map-pop.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, calc(-100% - 32px));
}
.map-pop::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
}
.map-pop__img { width: 100%; height: 104px; object-fit: cover; display: block; }
.map-pop__body { padding: 11px 13px 13px; }
.map-pop__land {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.map-pop__txt {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.35;
}

/* ── REIS-STATISTIEKEN ── */
.map-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 20px;
  max-width: 1040px;
  margin: 44px auto 0;
}
.map-stat {
  background: var(--bg-accent);
  border-radius: 14px;
  padding: 26px 28px;
}
.map-stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.map-stat__big {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.map-stat__big span { font-size: 1.1rem; font-weight: 600; }
.map-stat__sub {
  font-size: 0.85rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.4;
}
.map-stat__sub strong { color: var(--secondary); }
.map-stat--flags { display: flex; flex-direction: column; }
.flag-collectie {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.flag-chip {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.flag-chip img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.flag-chip:hover,
.flag-chip.is-active {
  transform: translateY(-4px) scale(1.18);
  box-shadow: 0 8px 18px rgba(217,96,63,0.35);
  border-color: var(--secondary);
}

@media (max-width: 768px) {
  #worldmap { height: 380px; }
  .flag-marker { width: 26px; height: 26px; }
  .map-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  #worldmap { height: 280px; }
  .flag-marker { width: 22px; height: 22px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--secondary); }
.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── LAND FILTER BUTTONS ── */
.land-btn {
  padding: 10px 22px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.land-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  z-index: 0;
}
.land-btn span, .land-btn {
  position: relative;
  z-index: 1;
}
.land-btn:hover::before,
.land-btn.active::before {
  transform: scaleX(1);
}
.land-btn:hover,
.land-btn.active {
  border-color: var(--secondary);
  color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:first-child { grid-column: span 2; grid-row: span 1; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .camping-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser__badge { right: 0; }
  .over-ons-intro { grid-template-columns: 1fr; }
  .dest-page-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card:first-child { grid-column: 1; }
  .articles-grid { grid-template-columns: 1fr; }
  .camping-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .stats { flex-wrap: wrap; }
  .stat { flex: 1 1 50%; border-right: none; border-bottom: 1px solid #f0f0f0; }
  .dest-page-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .fullwidth-banner__bg { background-attachment: scroll; }
  .nav { padding: 0 20px; }
}
