:root {
  --brand-primary: #092067;
  --brand-accent: #eb752f;
  --bg: #f5f7ff;
  --text: #1a2242;
  --white: #fff;
  --title-font: "Cinzel", "Times New Roman", serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8faff 0%, #eef2ff 100%);
  position: relative;
}
h1, h2, h3, h4 {
  font-family: var(--title-font);
  letter-spacing: .02em;
  font-weight: 800;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4.2vw, 2.85rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); letter-spacing: .04em; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.22rem); }

.section:not(.legal) > h2:first-child,
.section.container:not(.legal) > h2 {
  margin-top: 0;
  margin-bottom: 1.35rem;
  color: var(--brand-primary);
}

/* Juridische pagina's: rustigere koppen (geen “poster”-formaat) */
main.legal h1 {
  font-size: clamp(1.7rem, 3vw, 2.05rem);
  letter-spacing: .035em;
  font-weight: 800;
  margin: 0 0 .65rem;
  color: var(--brand-primary);
}
main.legal h2 {
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  letter-spacing: .02em;
  font-weight: 700;
  line-height: 1.32;
  margin: 1.45rem 0 .38rem;
  color: var(--brand-primary);
}
main.legal h2:first-of-type {
  margin-top: 1.1rem;
}

.site-parallax {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at center, rgba(9, 32, 103, .04), rgba(9, 32, 103, .16)),
    var(--parallax-image) center 10vh / cover no-repeat;
  transform: translateY(0);
  will-change: transform;
  transition: opacity .4s ease;
}
.site-parallax.has-image {
  opacity: var(--parallax-opacity, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(245, 247, 255, 0.38) 45%, rgba(238, 242, 255, 0.42) 100%),
    var(--parallax-image) center 10vh / cover no-repeat;
}
@media (max-width: 760px) {
  .site-parallax.has-image {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(245, 247, 255, 0.38) 45%, rgba(238, 242, 255, 0.42) 100%),
      var(--parallax-image-mobile, var(--parallax-image)) center 12vh / cover no-repeat;
  }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1220px, 92vw); margin: 0 auto; }
.section { padding: 3.1rem 0; }
.centered { text-align: center; margin-top: 1.5rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(9, 32, 103, 0.9);
  backdrop-filter: blur(10px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.brand {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.brand::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, .38), transparent 62%);
  transform: translateX(-140%);
  animation: logoSweep 5.5s ease-in-out infinite;
  pointer-events: none;
}
.brand img {
  width: 180px;
  mix-blend-mode: screen;
  background: transparent !important;
  box-shadow: none;
}
@keyframes logoSweep {
  0%, 78%, 100% { transform: translateX(-140%); }
  84% { transform: translateX(140%); }
}
.main-nav { display: flex; gap: .9rem; align-items: center; }
.main-nav a { padding: .55rem .8rem; border-radius: 999px; color: #fff; font-weight: 600; font-size: .95rem; }
.main-nav a:hover { background: rgba(255,255,255,.16); }
.facebook-link { background: linear-gradient(90deg, #1877f2, #1d9bf0); }
.facebook-link.icon-only {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  opacity: .8;
}
.facebook-link.icon-only svg { width: 16px; height: 16px; }
.menu-toggle { display: none; }

.hero { position: relative; overflow: hidden; color: #fff; }
.hero-home { min-height: calc(100vh - 80px); display: grid; place-items: center; }
.hero-small {
  min-height: clamp(280px, 44vh, 420px);
  background:
    linear-gradient(120deg, rgba(9, 32, 103, .82), rgba(30, 62, 176, .64) 70%, rgba(235, 117, 47, .62)),
    var(--hero-bg);
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: clamp(4.4rem, 10vh, 5.8rem) 1rem clamp(3.2rem, 8vh, 4.2rem);
}
.hero-small h1 { margin: 0 0 .6rem; font-size: clamp(2rem, 4.4vw, 3.05rem); }
.hero-slider { position: absolute; inset: 0; display: grid; }
.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: relative; z-index: 2;
  background: linear-gradient(135deg, rgba(9,32,103,.82), rgba(235,117,47,.76));
  border: 0;
  border-radius: 24px;
  padding: 2rem;
  width: min(740px, 92vw);
  text-align: center;
  box-shadow: 0 18px 34px rgba(3, 10, 36, .25);
}
.hero-overlay h1 { margin: 0; font-size: clamp(2.45rem, 5.6vw, 4.65rem); }
.hero-logo {
  width: min(360px, 80%);
  margin: 0 auto 1rem;
  mix-blend-mode: screen;
  opacity: .95;
}
.quick-links { margin-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; }
.scroll-indicator {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: .9rem; opacity: .9; animation: bob 1.7s infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

.btn {
  display: inline-block; border: 0; cursor: pointer; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #ff8b3e, var(--brand-accent));
  color: #fff; font-weight: 700; padding: .75rem 1rem; border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, border-radius .25s ease;
  box-shadow: 0 8px 20px rgba(235, 117, 47, .28), inset 0 -2px 8px rgba(0, 0, 0, .2);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transition: transform .55s ease;
}
.btn::after {
  content: "";
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle, rgba(255, 255, 255, .45) 0%, rgba(255, 255, 255, 0) 62%);
  opacity: 0;
  transition: opacity .35s ease;
}
.btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 26px rgba(9, 32, 103, .35); filter: saturate(1.14); border-radius: 14px; }
.btn:hover::before { transform: translateX(110%); }
.btn:hover::after { opacity: .45; }
.btn-secondary { background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.38); }

.cards { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: #fff; border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: 0 16px 35px rgba(7, 25, 82, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(130deg, rgba(9, 32, 103, .45), rgba(235, 117, 47, .4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .35;
  pointer-events: none;
  transition: opacity .3s ease;
}
.card:hover { transform: translateY(-6px) rotate(-.3deg); box-shadow: 0 22px 38px rgba(7,25,82,.2); }
.card:hover::before { opacity: 1; }
.clickable-card:hover img { transform: scale(1.06); filter: saturate(1.12); }
.card-link-overlay { position: absolute; inset: 0; z-index: 3; }
.card .btn, .card .badge { position: relative; z-index: 4; }
.card img { height: 220px; width: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.card-body { padding: 1rem; }
.badge { display: inline-block; font-size: .76rem; padding: .3rem .6rem; border-radius: 999px; background: #eef2ff; color: var(--brand-primary); }

.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: .9rem; }
.photo-grid.single { grid-template-columns: minmax(220px, 360px); justify-content: start; }
.photo-grid img { border-radius: 14px; height: 180px; width: 100%; object-fit: cover; }
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(9, 32, 103, .72);
  box-shadow: 0 4px 12px rgba(3, 9, 30, .28);
  border: 1px solid rgba(255, 255, 255, .5);
  opacity: 0;
  transform: translateY(-4px) scale(.94);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}
.gallery-item::before {
  content: "";
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='20' y1='20' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  opacity: 0;
  transform: translateY(-4px) scale(.94);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  z-index: 2;
}
.gallery-item:hover::after,
.gallery-item:hover::before,
.gallery-item:focus-visible::after,
.gallery-item:focus-visible::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-group { margin-bottom: 2.2rem; }
.gallery-group h2 { margin: 0 0 .35rem; }
.gallery-subtitle { margin: 0 0 .9rem; color: #5c6791; font-weight: 600; }
.photo-impression {
  background: linear-gradient(160deg, rgba(7, 21, 68, .9), rgba(13, 36, 111, .9));
  color: #fff;
  position: relative;
  isolation: isolate;
}
.photo-impression::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 117, 47, .3), rgba(235, 117, 47, 0));
  top: -120px;
  right: 8%;
  z-index: -1;
  animation: floatBlob 7s ease-in-out infinite;
}
.photo-impression h2 { margin-top: 0; }
.photo-ribbon {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
}
.photo-ribbon-track {
  display: flex;
  width: max-content;
  gap: .8rem;
  padding: .8rem;
  animation: ribbonMove 46s linear infinite;
}
.photo-ribbon-track img {
  width: 260px;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}
.photo-ribbon.large .photo-ribbon-track img {
  width: 300px;
  height: 190px;
}
.photo-ribbon.slow .photo-ribbon-track { animation-duration: 82s; }
.photo-ribbon.compact .photo-ribbon-track img { width: 240px; height: 150px; }
@keyframes ribbonMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(16px) scale(1.06); }
}
.photo-grid-luxe img {
  transition: transform .35s ease, box-shadow .35s ease;
}
.photo-grid-luxe img:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, .35);
}
.gallery-item img {
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}
.gallery-item:hover img {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 26px rgba(7, 25, 82, .24);
  filter: saturate(1.08);
}
.photo-album-wrap {
  padding: 1rem;
  border-radius: 16px;
}

.welcome-panel {
  background: linear-gradient(150deg, #ffffff, #f7faff 65%, #eff4ff);
  border: 1px solid #e3e9ff;
  border-radius: 18px;
  padding: 1.35rem 1.35rem 1.15rem;
  box-shadow: 0 12px 28px rgba(7, 25, 82, .08);
}
.welcome-panel h2 { margin: 0 0 .65rem; }
.welcome-panel p {
  margin: 0 0 .75rem;
  max-width: 72ch;
  line-height: 1.65;
  color: #2e395f;
}
.welcome-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.1rem;
  align-items: start;
}
.welcome-images {
  display: grid;
  gap: 1rem;
}
.welcome-images img {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid #d9e2ff;
  box-shadow: 0 10px 24px rgba(7, 25, 82, .14);
}
.welcome-panel p a,
.attractions-note a {
  color: var(--brand-primary);
  font-weight: 700;
  text-decoration: underline;
}
.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .85rem;
}
.welcome-panel .btn-secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid #ccd7ff;
  box-shadow: 0 8px 18px rgba(9, 32, 103, .14);
}
.welcome-panel .btn-secondary:hover {
  color: var(--brand-primary);
}
.attractions-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #dde5ff;
  background: linear-gradient(140deg, #f8faff, #fff5ee);
  color: #2d395f;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; align-items: center; }
.contact-layout { align-items: start; }
.contact-intro {
  margin: 0 0 .8rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #f3f6ff, #fff2e8);
  border: 1px solid #e2e8ff;
}
.split.reverse img { order: -1; }
.split img { border-radius: 16px; min-height: 290px; object-fit: cover; }
.alt-block .split:nth-child(2) { margin-top: 2rem; }

.table-wrap { overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; }
.spec-table th, .spec-table td { padding: .8rem 1rem; border-bottom: 1px solid #e8ecfb; text-align: left; }
.spec-table th { width: 35%; background: #f2f5ff; color: var(--brand-primary); }
.info-sections {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
.info-card {
  position: relative;
  background: linear-gradient(165deg, #ffffff 0%, #fbfcff 55%, #f5f8ff 100%);
  border-radius: 16px;
  padding: 1.35rem 1.35rem 1.35rem calc(1.35rem + 8px);
  border: 1px solid rgba(230, 235, 255, 0.95);
  border-left: 0;
  box-shadow: 0 8px 28px rgba(7, 25, 82, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary));
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(7, 25, 82, .1); }
.info-card h3 {
  margin: 0 0 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(9, 32, 103, 0.1);
  color: var(--brand-primary);
  font-size: clamp(1.18rem, 2.35vw, 1.42rem);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.28;
}
.info-card p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.035rem;
  line-height: 1.68;
  color: #303a5c;
}
.info-card p + p { margin-top: 1rem; }
.info-card p:last-child { margin-bottom: 0; }
.info-card.has-sustainability-icon {
  padding-right: 4.2rem;
}
.info-card.has-sustainability-icon::after {
  content: "🍃";
  position: absolute;
  right: 1.05rem;
  top: .8rem;
  font-size: 2rem;
  line-height: 1;
  color: #1f9d57;
}

.link-list { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); padding: 0; list-style: none; }
.link-list a { display: block; background: #fff; padding: .9rem 1rem; border-radius: 12px; border-left: 4px solid var(--brand-accent); }

.contact-form { display: grid; gap: .65rem; }
.form-panel {
  background: #fff;
  border: 1px solid #e6ebff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 14px 30px rgba(7, 25, 82, .1);
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: .8rem .85rem; border: 1px solid #ccd5f5; border-radius: 10px; font: inherit;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: inset 0 1px 2px rgba(9, 32, 103, .08);
  transition: border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: rgba(235, 117, 47, .75);
  box-shadow: 0 0 0 4px rgba(235, 117, 47, .14), inset 0 1px 2px rgba(9, 32, 103, .08);
  transform: translateY(-1px);
}
.hp-field { position: absolute; left: -9999px; }
.alert { padding: .8rem 1rem; border-radius: 10px; }
.alert.ok { background: #e8fbef; color: #126632; }
.alert.error { background: #ffe9e9; color: #8e2020; }

.site-footer { margin-top: 2rem; background: #08184a; color: #fff; padding: 2.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr .9fr; gap: 1rem; align-items: start; }
.footer-logo { width: 180px; margin-bottom: .8rem; mix-blend-mode: screen; }
.footer-links { display: grid; gap: .5rem; align-content: start; }
.footer-links a { color: #d6ddff; line-height: 1.45; padding-bottom: .1rem; }
.footer-credit { text-align: right; align-self: end; }
.footer-credit a { color: #aebdf4; font-size: .86rem; opacity: .85; }

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80;
  background: #08184a; color: #fff; border-radius: 14px; padding: 1rem;
  isolation: isolate;
}
.cookie-banner::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(34vh, 280px);
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .18) 55%, rgba(0, 0, 0, .4) 100%);
}
.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-content { display: flex; gap: 1rem; align-items: center; justify-content: space-between; }
.cookie-actions { display: flex; gap: .55rem; }
.cookie-actions [data-cookie-action="all"] {
  background: linear-gradient(135deg, #21a652, #178e45);
  box-shadow: 0 10px 22px rgba(23, 142, 69, .34), inset 0 -2px 8px rgba(0, 0, 0, .18);
}

.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(3, 9, 30, .92);
  display: grid; place-items: center; padding: 2rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img { max-height: 85vh; border-radius: 10px; }
.lightbox-close { position: absolute; top: .8rem; right: 1rem; font-size: 2rem; color: #fff; background: transparent; border: 0; cursor: pointer; }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
}
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }

@media (max-width: 940px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse img { order: 0; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-block; background: transparent; border: 1px solid rgba(255,255,255,.5); color: #fff; border-radius: 8px; padding: .5rem .7rem; }
  .section { padding: 2.35rem 0; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #091c5a;
    display: none; flex-direction: column; padding: .8rem;
  }
  .main-nav.open { display: flex; }
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-credit { text-align: left; }
  .cards-3 { grid-template-columns: 1fr; }
  .stagger-grid .card { margin-top: 0 !important; }
  .welcome-layout { grid-template-columns: 1fr; }
  .welcome-images { display: none; }
  .info-card.has-sustainability-icon { padding-right: 3.35rem; }
  .info-card.has-sustainability-icon::after {
    top: .9rem;
    right: .95rem;
    font-size: 1.45rem;
  }
}
.stagger-grid .card:nth-child(3n+2) { margin-top: 18px; }
.stagger-grid .card:nth-child(3n) { margin-top: 36px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
