/* ======================================================
   MIJN-CRUISES — NCL LIGHT (luchtig, subtiel, veel wit)
   - Minder schaduwen / minder “blocky”
   - Typografie rustiger (NCL-achtig)
   - Cards platter + meer whitespace
   - Hero zachter (geen zware overlay)
   - Custom home header blijft (ncl-siteheader)
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');


/* ======================================================
   FIX 1 — HERO tot bovenaan (home)
====================================================== */

/* Zorg dat er geen extra top spacing van theme/container zit */
body.home #page,
body.home #wrapper,
body.home .site,
body.home .site-container{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Hero echt aan de top */
body.home .ncl-hero{
  margin-top: 0 !important;
  padding-top: 120px !important;  /* ruimte voor jouw floating header */
}

/* Header bovenop de hero */
body.home .ncl-siteheader{
  top: 0 !important;
}

/* Als je ingelogd bent: WP admin bar duwt alles */
body.home.admin-bar .ncl-siteheader{
  top: 32px !important; /* desktop admin bar */
}
@media (max-width: 782px){
  body.home.admin-bar .ncl-siteheader{ top: 46px !important; }
}


/* ======================================================
   FIX 2 — Montserrat overal forceren
====================================================== */

:root{
  --mc-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* echt overal (Kadence zet dit vaak per block) */
html, body, body *{
  font-family: var(--mc-font) !important;
}

/* buttons/inputs soms eigen font */
button, input, select, textarea{
  font-family: var(--mc-font) !important;
}
/* ---------- 1) Design tokens ---------- */
:root{
  --ncl-navy: #003A70;
  --ncl-blue: #005AA9;
  --ncl-aqua: #00A6D6;

  /* Lichter dan eerder */
  --ncl-bg:   #F7FBFF;
  --ncl-sky:  #EEF7FF;
  --ncl-cloud:#FBFDFF;

  --text: rgba(15,42,58,.92);
  --muted:rgba(75,102,120,.90);

  --radius: 16px;
  --radius-lg: 22px;
  --btn-radius: 999px;

  /* Veel subtieler */
  --shadow: 0 10px 22px rgba(0,58,112,.07);
  --shadow-strong: 0 14px 34px rgba(0,58,112,.10);

  --border: rgba(0,58,112,.08);
  --border-soft: rgba(0,58,112,.06);
}

/* ---------- 2) Base reset ---------- */
*{ box-sizing:border-box; }

html, body{
  margin:0 !important;
  padding:0 !important;
  background: var(--ncl-bg) !important;
  color: var(--text) !important;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  line-height: 1.6;
}

/* Kadence containers transparant (geen “kaders”) */
body, #wrapper, .site, .site-container, .content-wrap{ background: var(--ncl-bg) !important; }
.content-container, .content-area, .entry-content-wrap, .site-main, #inner-wrap{ background: transparent !important; }
.site-content, .wp-site-blocks, main, .content-area, .entry-content, .wp-block-template-part{ background: transparent !important; }

/* Kill hard dark backgrounds (veiligheidsnet) */
*[style*="#0b0b0f"],
*[style*="background:#0b0b0f"],
*[style*="background: #0b0b0f"],
*[style*="background:black"],
*[style*="background: black"],
*[style*="background:#000"],
*[style*="background: #000"]{ background: transparent !important; }

/* ---------- 3) Typography ---------- */
h1,h2,h3,h4,h5{
  color: var(--ncl-navy);
  letter-spacing: -0.015em;
  margin: 0 0 .55em 0;
}
h1{ font-size: clamp(30px, 3.0vw, 52px); font-weight: 800; }
h2{ font-size: clamp(22px, 2.2vw, 34px); font-weight: 800; }
h3{ font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; }

p, li{ color: var(--text); }
small, .muted, .is-muted{ color: var(--muted); }

/* ---------- 4) Links (NCL-achtig) ---------- */
a{
  color: var(--ncl-blue);
  text-decoration: none;
  font-weight: 600;
}
a:hover{
  color: var(--ncl-aqua);
  text-decoration: underline;
  text-underline-offset: .22em;
}

/* “NCL link” (zoals BOOK NOW ►) */
.ncl-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  margin-top: 10px;
  color: var(--ncl-blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  text-decoration: none !important;
}
.ncl-link:hover{
  color: var(--ncl-navy);
  text-decoration: none !important;
}

/* ---------- 5) Buttons (iets minder dik) ---------- */
button,
.wp-block-button__link,
input[type="submit"],
a.button,
.ncl-btn{
  background: linear-gradient(135deg, var(--ncl-blue), var(--ncl-aqua)) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--btn-radius) !important;
  padding: 11px 16px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 20px rgba(0,90,169,.14) !important;
  transition: transform .12s ease, filter .12s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
button:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
a.button:hover,
.ncl-btn:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ---------- 6) Inputs ---------- */
input[type="text"], input[type="search"], input[type="email"],
input[type="url"], input[type="password"], textarea, select{
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  color: var(--text) !important;
}
input:focus, textarea:focus, select:focus{
  outline: none !important;
  border-color: rgba(0,166,214,.55) !important;
  box-shadow: 0 0 0 4px rgba(0,166,214,.14) !important;
}

/* ---------- 7) Sections ---------- */
.ncl-section{
  max-width: 1240px;
  margin: 64px auto;
  padding: 0 24px;
}

.ncl-title{
  font-size: clamp(22px, 2.0vw, 32px);
  font-weight: 800;
  margin-bottom: 22px;
}

/* ---------- 8) Cards (platter + lichter) ---------- */
.ncl-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.ncl-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ncl-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,58,112,.10);
}
.ncl-thumb img{
  width: 100%;
  height: 190px;             /* rustiger */
  object-fit: cover;
  display: block;
}
.ncl-card-content{
  padding: 18px 18px 20px;
}
.ncl-card-content h3{
  margin: 0 0 10px 0;
  line-height: 1.15;
}
.ncl-card-content p{
  margin: 0 0 12px 0;
  color: var(--muted);
}

/* ---------- 9) Hero ---------- */
.ncl-hero{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  min-height: 66vh;
  display: flex;
  align-items: center;
  justify-content: center;

  background-size: cover;
  background-position: center;

  border-radius: 0 0 34px 34px;
  overflow: hidden;

  padding-top: 140px;   /* ruimte voor jouw custom fixed header */
  padding-bottom: 44px;
}

/* Zachtere overlay */
.ncl-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    135deg,
    rgba(0,58,112,.10),
    rgba(0,166,214,.10)
  );
  pointer-events:none;
}

/* Center “glassy” card: transparanter + minder shadow */
.ncl-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;

  background: rgba(255,255,255,.74);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);

  padding: clamp(18px, 3.2vw, 40px);
  max-width: 860px;
  margin: 0 24px;
}
.ncl-hero-inner p{
  margin: 0 0 18px 0;
  color: var(--muted);
  font-weight: 550;
}

/* ---------- 10) Verberg Kadence page title/hero balk ---------- */
body.home .entry-hero,
body.home .entry-hero-container,
body.home .hero-section,
body.home .page-title,
body.home .kadence-page-title-wrap,
body.home .entry-header{
  display:none !important;
}

/* ---------- 11) Home: eigen header (jouw menu) ---------- */
body.home #masthead,
body.home .site-header{
  display:none !important; /* Kadence header uit op home */
}

/* Custom header */
.ncl-siteheader{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 14px 0 0;
  background: transparent;
}

.ncl-siteheader-inner{
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;

  padding: 10px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,58,112,.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

/* Brand */
.ncl-brand{
  color: var(--ncl-navy);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}
.ncl-brand:hover{ color: var(--ncl-blue); text-decoration: none; }

/* Menu */
.ncl-nav{ justify-self: center; width: 100%; }
.ncl-menu, .ncl-nav .menu{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

/* Menu links: subtiel zoals NCL */
.ncl-nav a{
  color: rgba(0,58,112,.80);
  font-weight: 650;
  font-size: 15px;
  text-decoration: none !important;
  padding: 8px 6px;
  position: relative;
}
.ncl-nav a:hover{ color: rgba(0,58,112,.94); }

/* Subtiele underline */
.ncl-nav a::after{
  content:"";
  position:absolute;
  left: 6px;
  right: 6px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0,166,214,.50);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .14s ease, opacity .14s ease;
  opacity: 0;
}
.ncl-nav a:hover::after{
  transform: scaleX(1);
  opacity: 1;
}
.ncl-nav .current-menu-item > a,
.ncl-nav .current_page_item > a{
  color: var(--ncl-navy);
}
.ncl-nav .current-menu-item > a::after,
.ncl-nav .current_page_item > a::after{
  transform: scaleX(1);
  opacity: 1;
  background: rgba(0,90,169,.55);
}

/* CTA rechts: minder “buttony” */
.ncl-header-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0,166,214,.08);
  color: var(--ncl-navy);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid rgba(0,166,214,.14);
  box-shadow: none;
}
.ncl-header-cta:hover{
  background: rgba(0,166,214,.12);
  text-decoration: none;
}

/* ---------- 12) Leaflet: licht ---------- */
.mc-route-wrap,
.cruise-route-wrap,
.route-map-wrap{
  background: var(--ncl-cloud) !important;
  border-radius: var(--radius-lg) !important;
  padding: 16px !important;
  box-shadow: var(--shadow) !important;
  border: 1px solid var(--border-soft) !important;
}
.leaflet-container{
  background: var(--ncl-sky) !important;
  border-radius: 18px !important;
}
.leaflet-control-zoom a,
.leaflet-bar a{
  background: #fff !important;
  color: var(--ncl-navy) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 16px rgba(0,58,112,.08) !important;
}
.leaflet-control-attribution{
  background: rgba(255,255,255,.80) !important;
  color: var(--muted) !important;
  border-radius: 10px !important;
  padding: 4px 8px !important;
  border: 1px solid var(--border-soft) !important;
}

/* ---------- 13) Gutenberg cover overlay (geen zwart) ---------- */
.wp-block-cover{
  border-radius: var(--radius);
  overflow: hidden;
}
.wp-block-cover__background{
  background: linear-gradient(
    135deg,
    rgba(0, 58, 112, .12),
    rgba(0, 166, 214, .10)
  ) !important;
  opacity: 1 !important;
}

/* ---------- 14) “White card wrappers” minder aanwezig ---------- */
.entry-content > .wp-block-group,
.entry-content > .wp-block-columns,
.entry-content > .wp-block-media-text{
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  padding: 18px;
}

/* ---------- 15) Mobile ---------- */
@media (max-width: 900px){
  .ncl-siteheader{ padding-top: 12px; }
  .ncl-siteheader-inner{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }
  .ncl-menu, .ncl-nav .menu{
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  body.home .ncl-hero{ padding-top: 190px; }
}
/* =========================================
   LIGHTER HEADINGS — minder vet / minder donker
   (plak ONDERAAN ncl.css)
========================================= */

/* 1) Algemene headings: minder zwaar + iets lichter van kleur */
h1,h2,h3{
  color: rgba(0,58,112,.86) !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
}

/* 2) Hero titel (Ontdek mijn cruises): nog iets lichter + kleiner */
.ncl-hero-inner h1{
  font-weight: 600 !important;
  color: rgba(0,58,112,.82) !important;
  font-size: clamp(28px, 2.6vw, 44px) !important;
  line-height: 1.08 !important;
}

/* 3) Sectietitel (Alle cruises): NCL-achtig (rustig) */
.ncl-title,
h2{
  font-weight: 600 !important;
  font-size: clamp(20px, 2.0vw, 30px) !important;
  color: rgba(0,58,112,.80) !important;
}

/* Optioneel: subtiele “rule” eronder voor NCL-gevoel */
.ncl-title{
  position: relative;
  padding-bottom: 10px;
}
.ncl-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width: 64px;
  height: 2px;
  border-radius: 999px;
  background: rgba(0,166,214,.35);
}
/* verwijder underline onder sectietitels */
.ncl-title::after{
  display:none !important;
  content:none !important;
}
/* ========================================
   LIGHTER CARD TITLES (zoals NCL)
======================================== */

/* cruise kaart titel */
.ncl-card h3,
.ncl-card-content h3{
  font-weight: 550 !important;          /* ipv 700/800 */
  font-size: 18px !important;           /* kleiner */
  line-height: 1.35 !important;
  color: rgba(0,58,112,.82) !important; /* minder donker */
  letter-spacing: -0.01em !important;
}

/* iets meer lucht onder titel */
.ncl-card-content{
  padding: 16px 18px 18px !important;
}

/* link subtieler */
.ncl-link{
  font-weight: 600 !important;
  font-size: 14px !important;
  color: rgba(0,90,169,.85) !important;
}

/* kaart zelf minder zwaar */
.ncl-card{
  box-shadow: 0 8px 20px rgba(0,58,112,.06) !important;
  border: 1px solid rgba(0,58,112,.05) !important;
}

/* hover minder agressief */
.ncl-card:hover{
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 26px rgba(0,58,112,.09) !important;
}
/* ======================================================
   SINGLE CRUISE — HERO TITLE READABILITY FIX
   - witte titel + zachte overlay
   - geen blauwe tekst op foto
====================================================== */

/* 1) Richt je op single cruise pagina (CPT) */
body.single-cruise .entry-hero,
body.single-cruise .hero-section,
body.single-cruise .kadence-page-title-wrap{
  position: relative !important;
  overflow: hidden;
}

/* 2) Overlay over de hero-afbeelding (donker genoeg voor leesbaarheid) */
body.single-cruise .entry-hero::before,
body.single-cruise .hero-section::before,
body.single-cruise .kadence-page-title-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,58,112,.62) 0%,
    rgba(0,58,112,.42) 45%,
    rgba(0,58,112,.18) 100%
  ) !important;
  pointer-events:none;
  z-index: 0;
}

/* 3) Zorg dat content boven overlay zit */
body.single-cruise .entry-hero .entry-hero-container,
body.single-cruise .hero-section .entry-header,
body.single-cruise .kadence-page-title-wrap .entry-header{
  position: relative !important;
  z-index: 1 !important;
}

/* 4) Titel: wit + subtiele shadow (NCL-achtig) */
body.single-cruise .entry-title,
body.single-cruise .entry-header h1{
  color: rgba(255,255,255,.98) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.35) !important;
  font-weight: 650 !important;          /* minder zwaar */
  letter-spacing: -0.015em !important;
}

/* 5) Subtitle/metadata (zoals “Schip / Reisdata”): ook wit, iets zachter */
body.single-cruise .entry-hero p,
body.single-cruise .entry-hero .entry-subtitle,
body.single-cruise .entry-hero .meta,
body.single-cruise .hero-section p{
  color: rgba(255,255,255,.88) !important;
  text-shadow: 0 8px 22px rgba(0,0,0,.30) !important;
}

/* 6) Optioneel: als jouw ship/reisdata in ‘pill’ badges staan: maak ze glassy */
body.single-cruise .entry-hero .wp-block,
body.single-cruise .entry-hero .badge,
body.single-cruise .entry-hero .pill{
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
/* ======================================================
   SINGLE CRUISE HERO — witte tekst op foto
   ====================================================== */

/* hele hero wrapper donkerder maken */
.single-cruise .entry-hero,
.single-cruise .hero-section,
.single-cruise .wp-block-cover{
  position: relative;
}

/* overlay voor leesbaarheid */
.single-cruise .entry-hero::before,
.single-cruise .hero-section::before,
.single-cruise .wp-block-cover::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.35)
  );
  z-index:1;
}

/* tekst boven overlay */
.single-cruise .entry-hero *{
  position: relative;
  z-index: 2;
}

/* TITEL → wit i.p.v. blauw */
.single-cruise .entry-hero h1,
.single-cruise .entry-hero h2{
  color: #fff !important;
  text-shadow: 0 4px 20px rgba(0,0,0,.55);
  font-weight: 700 !important;   /* minder zwaar */
}

/* meta badges (schip / reisdata) */
.single-cruise .entry-hero .meta,
.single-cruise .entry-hero .tag,
.single-cruise .entry-hero span{
  color:#fff !important;
}
/* ======================================================
   SINGLE CRUISE HERO (Kadence content template)
   ====================================================== */

/* target ALLES bovenin de page */
.single-cruise h1{
  color: #fff !important;
  font-weight: 600 !important;
  text-shadow: 0 6px 24px rgba(0,0,0,.65);
}

/* overlay op de afbeelding */
.single-cruise .wp-block-cover::before,
.single-cruise .entry-content > img:first-child::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45),
    rgba(0,0,0,.35)
  );
}
/* ======================================================
   DAGEN — grid past in beeld + foto blijft altijd gelijk
   ====================================================== */

/* 1) Grid: minder “minimum” zodat het altijd netjes in viewport past */
.dagen-grid,
.days-grid,
.mc-days-grid,
.cruise-days-grid,
.entry-content .dagen,
.entry-content .days{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.dagen-grid,
.days-grid,
.mc-days-grid,
.cruise-days-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 22px;
}

/* laptop/smaller screens: eerder naar 1 kolom */
@media (max-width: 980px){
  .dagen-grid,
  .days-grid,
  .mc-days-grid,
  .cruise-days-grid{
    grid-template-columns: 1fr;
  }
}

/* 2) Card layout: foto links = vaste maat, tekst rechts */
.dag-card,
.day-card,
.mc-day-card,
.cruise-day-card{
  display: grid;
  grid-template-columns: 160px 1fr; /* vaste foto-breedte */
  gap: 16px;

  background: #fff;
  border: 1px solid rgba(0,58,112,.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,58,112,.07);
  overflow: hidden;
}

/* 3) Foto wrapper: NOOIT shrinken, altijd zelfde formaat */
.dag-card .dag-thumb,
.day-card .day-thumb,
.mc-day-card .thumb,
.cruise-day-card .thumb{
  width: 160px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: start;
}

/* echte img: altijd cover, altijd dezelfde maat */
.dag-card .dag-thumb img,
.day-card .day-thumb img,
.mc-day-card .thumb img,
.cruise-day-card .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 4) Tekst: laat 'm niet de layout slopen (clamp) */
.dag-card .dag-excerpt,
.day-card .day-excerpt,
.mc-day-card .excerpt,
.cruise-day-card .excerpt{
  display: -webkit-box;
  -webkit-line-clamp: 3;     /* max 3 regels */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 5) Titels minder zwaar (luchtiger) */
.dag-card h3,
.day-card h3,
.mc-day-card h3,
.cruise-day-card h3{
  font-weight: 650;
  letter-spacing: -0.01em;
}
/* ======================================================
   SINGLE CRUISE — clean & light
====================================================== */

/* HERO */
.cruise-hero{
  position:relative;
  height:65vh;
  min-height:460px;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:80px 0;
  color:#fff;
}

.cruise-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
}

.cruise-hero-inner{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}

.cruise-title{
  font-size: clamp(34px,4vw,56px);
  font-weight:800;
  color:#fff !important;   /* force wit */
  margin:0 0 12px;
}

.cruise-meta{
  background:rgba(0,0,0,.45);
  padding:8px 14px;
  border-radius:999px;
  display:inline-block;
  font-size:14px;
}


/* CONTAINER */
.cruise-container{
  max-width:1100px;
  margin:70px auto;
  padding:0 24px;
}

.cruise-section-title{
  font-size:28px;
  font-weight:700;
  margin:60px 0 26px;
  color:#2c4d6b;
}


/* DAYS GRID */
.days-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
}

@media(max-width:900px){
  .days-grid{
    grid-template-columns:1fr;
  }
}


/* DAY CARD */
.day-card{
  display:flex;
  gap:22px;
  align-items:flex-start;

  background:#fff;
  border-radius:16px;
  padding:18px;
  border:1px solid rgba(0,58,112,.08);
  box-shadow:0 8px 24px rgba(0,58,112,.08);
}


/* 🔥 FIX: thumbnail krimpt NOOIT */
.day-thumb{
  flex:0 0 180px;     /* vaste breedte */
  width:180px;
  height:120px;
  border-radius:12px;
  overflow:hidden;
}

.day-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}


.day-content h3{
  font-size:18px;
  font-weight:600;  /* lichter */
  margin:0 0 6px;
  color:#1f3b54;
}

.day-text{
  font-size:14px;
  color:#5f7385;
  margin:0;
}
/* ======================================================
   SINGLE CRUISE — DAGEN (NCL LIGHT CARDS)
   - Luchtig, minder “zwaar”
   - Vaste thumbnail (wordt NIET kleiner bij meer tekst)
   - 2 kolommen desktop, 1 kolom mobiel
   - Excerpt netjes afkappen (clamp)
====================================================== */

/* Sectie spacing wat rustiger */
body.single-cruise .cruise-days-section{
  background: transparent !important;
  padding: 18px 0 60px !important;
}

/* Titel “Dagen” iets lichter + minder massief */
body.single-cruise .cruise-days-heading{
  font-size: clamp(22px, 2.1vw, 30px) !important;
  font-weight: 750 !important;
  letter-spacing: -0.015em !important;
  color: var(--ncl-navy) !important;
  margin: 18px 0 18px !important;
}

/* Grid: nette NCL cards */
body.single-cruise .cruise-days-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

/* Card: luchtig, minder border/shadow */
body.single-cruise a.cruise-day-card{
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 16px !important;

  border-radius: 18px !important;
  border: 1px solid rgba(0,58,112,.08) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 10px 26px rgba(0,58,112,.08) !important;

  text-decoration: none !important;
  color: var(--text) !important;

  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

body.single-cruise a.cruise-day-card:hover{
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 36px rgba(0,58,112,.12) !important;
  border-color: rgba(0,166,214,.22) !important;
}

/* Thumbnail: VAST formaat (blijft gelijk, ongeacht tekst) */
body.single-cruise .cruise-day-card .thumb{
  flex: 0 0 176px !important;      /* vaste kolom */
  width: 176px !important;
}

body.single-cruise .cruise-day-card .thumb img,
body.single-cruise .cruise-day-card .thumb-placeholder{
  width: 176px !important;
  height: 120px !important;
  border-radius: 14px !important;
  object-fit: cover !important;
  display: block !important;
  background: var(--ncl-sky) !important;
  border: 1px solid rgba(0,58,112,.10) !important;
}

/* Tekstblok: mag groeien, thumbnail blijft stabiel */
body.single-cruise .cruise-day-card .info{
  flex: 1 1 auto !important;
  min-width: 0 !important; /* belangrijk voor ellipsis/clamp */
}

/* Titel: minder vet, meer NCL */
body.single-cruise .cruise-day-card .title{
  font-size: 18px !important;
  font-weight: 700 !important;          /* was te zwaar */
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  color: var(--ncl-navy) !important;
  margin: 0 0 6px !important;
}

/* Meta: subtiel */
body.single-cruise .cruise-day-card .meta{
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(75,102,120,.92) !important;
  margin: 0 0 8px !important;
}

/* Excerpt: luchtig + afkappen (zodat cards niet “rommelig” worden) */
body.single-cruise .cruise-day-card .excerpt{
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(15,42,58,.88) !important;
  line-height: 1.45 !important;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;   /* max 3 regels */
  overflow: hidden;
}

/* Tablet: 1 kolom als het krap wordt */
@media (max-width: 980px){
  body.single-cruise .cruise-days-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Mobiel: thumbnail iets smaller */
@media (max-width: 520px){
  body.single-cruise a.cruise-day-card{
    padding: 14px !important;
    gap: 12px !important;
  }
  body.single-cruise .cruise-day-card .thumb{
    flex-basis: 140px !important;
    width: 140px !important;
  }
  body.single-cruise .cruise-day-card .thumb img,
  body.single-cruise .cruise-day-card .thumb-placeholder{
    width: 140px !important;
    height: 100px !important;
    border-radius: 12px !important;
  }
  body.single-cruise .cruise-day-card .title{
    font-size: 16px !important;
  }
}
/* ===============================
   DAGEN – titel lichter (NCL feel)
=============================== */

body.single-cruise .cruise-day-card .title{
  font-weight: 600 !important;          /* was 700/800 → lichter */
  color: #123b5d !important;           /* zachter navy i.p.v. hard blauw/zwart */
  letter-spacing: -0.01em !important;
  font-size: 17px !important;
}

/* optioneel: hover subtieler */
body.single-cruise .cruise-day-card:hover .title{
  color: #0a5c8f !important;           /* lichte NCL accent */
}
/* ======================================================
   SINGLE CRUISE — HERO zonnig (override donkere overlays)
   Plak ONDERAAN ncl.css
====================================================== */

/* 1) Zet ALLE oude/donkere ::before overlays uit op single cruise */
body.single-cruise .entry-hero::before,
body.single-cruise .hero-section::before,
body.single-cruise .kadence-page-title-wrap::before,
body.single-cruise .wp-block-cover::before,
.single-cruise .entry-hero::before,
.single-cruise .hero-section::before,
.single-cruise .wp-block-cover::before{
  background: none !important;
  opacity: 1 !important;
}

/* 2) Maak de hero “zonnig”: lichte haze i.p.v. donker */
body.single-cruise .entry-hero,
body.single-cruise .hero-section,
body.single-cruise .kadence-page-title-wrap{
  position: relative !important;
  overflow: hidden !important;
}

/* 3) Nieuwe lichte overlay (subtiel, NCL-achtig) */
body.single-cruise .entry-hero::after,
body.single-cruise .hero-section::after,
body.single-cruise .kadence-page-title-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.42) 0%,
    rgba(255,255,255,.18) 45%,
    rgba(0,166,214,.10) 100%
  ) !important;
}

/* 4) Tekst boven de overlay */
body.single-cruise .entry-hero .entry-hero-container,
body.single-cruise .hero-section .entry-header,
body.single-cruise .kadence-page-title-wrap .entry-header,
body.single-cruise .entry-header,
body.single-cruise .entry-title{
  position: relative !important;
  z-index: 2 !important;
}

/* 5) Tekstkleur: niet blauw op foto → wit of heel licht */
body.single-cruise .entry-title,
body.single-cruise .entry-header h1{
  color: rgba(255,255,255,.98) !important;
  text-shadow: 0 8px 22px rgba(0,0,0,.20) !important; /* veel lichter dan eerst */
  font-weight: 650 !important;
}

/* Meta/subtitle ook licht */
body.single-cruise .entry-hero p,
body.single-cruise .entry-hero .meta,
body.single-cruise .entry-hero .entry-subtitle{
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
}

/* Pills glassy & zonnig */
body.single-cruise .entry-hero .pill,
body.single-cruise .entry-hero .badge{
  background: rgba(255,255,255,.22) !important;
  border: 1px solid rgba(255,255,255,.26) !important;
  color: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}/* ======================================================
   SINGLE CRUISE — HERO echt zonnig (voor jouw eigen hero)
   Plak ONDERAAN ncl.css
====================================================== */

/* A) Als je hero uit de “gisteren”-render komt: .cruise-hero-full */
body.single-cruise .cruise-hero-full{
  /* haal de donkere gradient weg en maak ’m licht */
  background-image:
    linear-gradient(
      135deg,
      rgba(255,255,255,.40) 0%,
      rgba(255,255,255,.16) 55%,
      rgba(0,166,214,.08) 100%
    ),
    var(--hero-bg) !important;
}

/* tekst blijft goed leesbaar */
body.single-cruise .cruise-hero-full__title{
  color: rgba(255,255,255,.98) !important;
  text-shadow: 0 8px 20px rgba(0,0,0,.22) !important;
}
body.single-cruise .cruise-hero-meta .pill{
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* B) Als je hero uit single-cruise.php komt: .cruise-hero + overlay */
body.single-cruise .cruise-hero-overlay{
  /* vervangt jouw donkere overlay */
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.38) 0%,
    rgba(255,255,255,.14) 55%,
    rgba(0,166,214,.08) 100%
  ) !important;
}
body.single-cruise .cruise-title{
  color: rgba(255,255,255,.98) !important;
  text-shadow: 0 8px 20px rgba(0,0,0,.22) !important;
}
body.single-cruise .cruise-meta{
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: rgba(255,255,255,.96) !important;
}

/* C) Veiligheidsnet: als ergens nog oude donkere ::before overlays zitten */
body.single-cruise .entry-hero::before,
body.single-cruise .hero-section::before,
body.single-cruise .kadence-page-title-wrap::before,
body.single-cruise .wp-block-cover::before{
  background: none !important;
}
/* ======================================================
   SINGLE CRUISE — Header "Dagen" NCL-light
   Plak ONDERAAN ncl.css
====================================================== */

body.single-cruise .cruise-days-heading,
body.single-cruise .cruise-section-title,
body.single-cruise h2.cruise-days-heading{
  font-size: clamp(20px, 2.0vw, 28px) !important;
  font-weight: 600 !important;                /* lichter */
  color: rgba(0,58,112,.78) !important;       /* zachter navy */
  letter-spacing: -0.01em !important;
  margin: 12px 0 18px !important;
}

/* als er nog een “streepje/underline” via ::after mee komt */
body.single-cruise .cruise-days-heading::after,
body.single-cruise .cruise-section-title::after{
  display:none !important;
  content:none !important;
}

/* iets meer ruimte boven de sectie zodat het luchtig voelt */
body.single-cruise .cruise-days-section{
  padding-top: 8px !important;
}
/* =========================
   CRUISE DAY — NCL TEMPLATE
========================= */

body.single-cruise_day .entry-header,
body.single-cruise_day .entry-hero,
body.single-cruise_day .kadence-page-title-wrap{
  display:none !important; /* Kadence titel/hero uit */
}

.ncl-day-hero{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 52vh;
  display:flex;
  align-items:flex-end;
  background-size: cover;
  background-position: center;
  border-radius: 0 0 34px 34px;
  overflow:hidden;
  position:relative;
  padding: 120px 0 28px;
}

/* zonnige (lichte) overlay, niet donker */
.ncl-day-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg,
    rgba(255,255,255,.04) 0%,
    rgba(0,166,214,.08) 40%,
    rgba(0,58,112,.18) 100%
  );
}

.ncl-day-hero__inner{
  position:relative;
  z-index:1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.ncl-day-back{
  display:inline-block;
  color: rgba(255,255,255,.92);
  font-weight: 650;
  text-decoration:none !important;
  text-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.ncl-day-title{
  margin: 10px 0 12px;
  color: #fff !important;
  font-weight: 650 !important;
  line-height: 1.08;
  font-size: clamp(28px, 3.0vw, 46px);
  text-shadow: 0 10px 26px rgba(0,0,0,.28);
}

.ncl-day-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 12px;
  padding-bottom: 6px;
}

.ncl-day-meta .pill{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ncl-day-wrap{
  width: min(1100px, calc(100% - 40px));
  margin: 28px auto 70px;
}

.ncl-day-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,58,112,.06);
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(0,58,112,.07);
  padding: 22px;
}

.ncl-day-nav{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.ncl-day-nav__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,58,112,.10);
  background: rgba(0,166,214,.08);
  color: rgba(0,58,112,.92);
  font-weight: 650;
  text-decoration:none !important;
}

.ncl-day-nav__btn:hover{
  background: rgba(0,166,214,.12);
}
/* Folder gallery */
.mc-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap:18px;
  margin-top:24px;
}

.mc-gallery img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 8px 22px rgba(0,58,112,.10);
  transition:.18s ease;
}

.mc-gallery img:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,58,112,.16);
}
/* Cruise Day gallery (uit cruise-map, filter op datum) */
.mc-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap:18px;
  margin-top: 22px;
}

.mc-gallery__item{
  display:block;
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,58,112,.06);
  box-shadow: 0 10px 22px rgba(0,58,112,.08);
  transition: transform .16s ease, box-shadow .16s ease;
}

.mc-gallery__item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,58,112,.12);
}

.mc-gallery__item img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}
/* ======================================================
   SHIPS — NCL CLEAN COMPACT (rustiger + minder hoog)
====================================================== */

/* Grid iets dichter */
.ships-grid{
  gap: 26px !important;
}

/* Card platter */
.ship-card{
  border-radius: 18px !important;
  box-shadow: 0 8px 22px rgba(0,58,112,.06) !important;
}

/* =========================
   FOTO — groter maar minder hoog
========================= */

.ship-thumb{
  padding: 14px 14px 0 14px !important;
}

.ship-thumb img{
  width:100%;
  height: 300px !important;      /* ← minder hoog = rustiger */
  object-fit:cover;
  border-radius:14px;
}

/* =========================
   CONTENT compacter
========================= */

.ship-content{
  padding: 12px 16px 14px !important;
}

/* titel kleiner + dichter */
.ship-name{
  font-size:17px !important;
  font-weight:600 !important;
  margin: 6px 0 8px !important;
}

/* =========================
   STATS STRIP — veel platter
========================= */

.ncl-ship-stats{
  margin-top:8px !important;
  padding: 8px 10px !important;   /* ↓ veel kleiner */
  border-radius:12px !important;
  background:#f6f8fb !important;  /* rustiger lichtgrijs */
}

/* cijfers kleiner */
.ncl-stat-num{
  font-size:18px !important;
  font-weight:700 !important;
  margin:0 0 2px !important;
}

/* labels kleiner */
.ncl-stat-label{
  font-size:11px !important;
  line-height:1.1 !important;
}

.ncl-stat-sub{
  font-size:10px !important;
}

/* renovatieblok subtieler */
.ncl-stat--ref{
  padding: 6px 8px !important;
  background: rgba(0,166,214,.08) !important;
  border-radius:10px !important;
}

.ncl-stat-built{
  font-size:10px !important;
  margin-top:4px !important;
}

/* =========================
   BUTTONS compacter
========================= */

.ship-buttons{
  margin-top:10px !important;
  gap:8px !important;
}

.ship-buttons a{
  padding:8px 12px !important;
  font-size:13px !important;
  border-radius:999px !important;
}

/* =========================
   Responsive
========================= */

@media (max-width:900px){
  .ship-thumb img{ height:240px !important; }
}
/* ======================================================
   SHIPS — FIX LAYOUT (grid + rustige stats-strip)
   Plak ONDERAAN ncl.css
====================================================== */

/* 1) Container + titel (voorkomt mega/afgesneden) */
.ships-section{
  padding: 70px 0 90px !important;
}

.ships-wrap{
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.ships-title{
  font-size: clamp(26px, 3vw, 40px) !important;
  font-weight: 650 !important;
  line-height: 1.1 !important;
  margin: 0 0 22px !important;
  color: rgba(0,58,112,.86) !important;
}

/* 2) GRID terug (2 kolommen desktop, 1 mobiel) */
.ships-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 26px !important;
}

@media (max-width: 980px){
  .ships-grid{
    grid-template-columns: 1fr !important;
  }
}

/* 3) Card structuur terug */
.ship-card{
  background: #fff !important;
  border: 1px solid rgba(0,58,112,.06) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 22px rgba(0,58,112,.06) !important;
}

/* 4) Foto groter (maar netjes) */
.ship-thumb{
  padding: 14px 14px 0 14px !important;
}

.ship-thumb img{
  width: 100% !important;
  height: 320px !important;          /* groter */
  object-fit: cover !important;
  border-radius: 14px !important;
  display: block !important;
}

@media (max-width: 980px){
  .ship-thumb img{ height: 240px !important; }
}

/* 5) Content compact */
.ship-content{
  padding: 12px 16px 14px !important;
}

.ship-name{
  font-size: 17px !important;
  font-weight: 600 !important;
  margin: 8px 0 10px !important;
}

/* 6) Stats-strip: 3 vakken naast elkaar, hoogte rustig */
.ncl-ship-stats{
  display: grid !important;
  grid-template-columns: 1fr 18px 1fr 18px 1fr !important; /* met separators */
  align-items: stretch !important;
  padding: 10px 12px !important;
  margin: 8px 0 10px !important;
  border-radius: 12px !important;
  background: #f6f8fb !important;
  gap: 0 !important;
}

.ncl-stat{
  padding: 8px 10px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: center !important;
  min-height: 88px !important;      /* ≈ 1/3 van card-gevoel */
}

.ncl-stat-sep{
  width: 1px !important;
  justify-self: center !important;
  background: rgba(0,58,112,.10) !important;
  border-radius: 999px !important;
  margin: 10px 0 !important;
}

.ncl-stat-num{
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  color: rgba(0,58,112,.92) !important;
}

.ncl-stat-label{
  font-size: 11px !important;
  line-height: 1.15 !important;
  color: rgba(75,102,120,.92) !important;
}

.ncl-stat-sub{
  font-size: 10px !important;
  opacity: .9 !important;
}

/* “Refurbished” vakje rechts: subtiel blauw zoals NCL */
.ncl-stat--ref{
  background: rgba(0,166,214,.08) !important;
  border-radius: 10px !important;
}

.ncl-stat-built{
  font-size: 10px !important;
  margin-top: 6px !important;
  color: rgba(75,102,120,.92) !important;
}

/* 7) Buttons netjes */
.ship-buttons{
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 10px !important;
}

.ship-buttons a{
  padding: 8px 12px !important;
  font-size: 13px !important;
  border-radius: 999px !important;
}
/* ======================================================
   SHIPS — polish: bouwjaar kleur gelijk + links als pills rechts
   Plak ONDERAAN ncl.css
====================================================== */

/* 1) Rechter “Gerenoveerd” blok: ALLE tekst dezelfde kleur */
.ncl-stat--ref,
.ncl-stat--ref *{
  color: rgba(0,58,112,.92) !important;
}

.ncl-stat--ref .ncl-stat-label{
  color: rgba(0,58,112,.78) !important; /* zelfde stijl als andere labels */
}

.ncl-stat--ref .ncl-stat-built{
  color: rgba(0,58,112,.78) !important; /* <- FIX: geen afwijkende kleur */
  font-weight: 600 !important;
  margin-top: 6px !important;
  opacity: 1 !important;
}

/* 2) Buttons rechts in de card en als pills */
.ship-buttons{
  display: flex !important;
  justify-content: flex-end !important;  /* rechts */
  align-items: center !important;
  gap: 10px !important;
  margin-top: 12px !important;
}

/* Basis pill */
.ship-buttons a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: none !important;
}

/* “Bekijk schip” = outline pill */
.ship-buttons .btn-outline{
  background: #fff !important;
  border: 1.5px solid rgba(0,90,169,.55) !important;
  color: rgba(0,58,112,.92) !important;
}

.ship-buttons .btn-outline:hover{
  border-color: rgba(0,90,169,.85) !important;
  background: rgba(0,166,214,.06) !important;
}

/* “Bekijk mijn cruises” = filled pill */
.ship-buttons .btn-primary{
  background: rgba(0,90,169,.92) !important;
  border: 1.5px solid rgba(0,90,169,.92) !important;
  color: #fff !important;
}

.ship-buttons .btn-primary:hover{
  filter: brightness(1.03) !important;
}

/* Mobiel: nog steeds rechts, maar wrap netjes */
@media (max-width: 520px){
  .ship-buttons{
    justify-content: flex-start !important; /* op mobiel liever links */
  }
}
/* SHIPS — buttons echt rechts, netjes op één lijn */
.ship-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ship-buttons{
  margin-top: 2px !important;
  display: flex !important;
  justify-content: flex-end !important;   /* echt rechts */
  gap: 10px !important;
  width: 100% !important;
}

/* pills net iets compacter (rustiger) */
.ship-buttons a{
  padding: 9px 14px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}
/* SHIPS — alle stats exact gelijk (geen blauwe refurb tile) */
.ncl-stat--ref{
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

/* alles dezelfde typografie */
.ncl-stat,
.ncl-stat--ref{
  background: transparent !important;
}

/* bouwjaar tekst zelfde kleur als rest */
.ncl-stat-built{
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}
#masthead,
.site-header{
  display:none !important;
}


.ncl-hero--archive .ncl-hero-inner{
  max-width: 980px !important;
  background: rgba(255,255,255,.72) !important;
  border: 1px solid rgba(0,58,112,.08) !important;
  box-shadow: 0 10px 22px rgba(0,58,112,.10) !important;
}

.ncl-hero--archive .ncl-hero-inner h1{
  margin: 0 0 8px 0 !important;
}

.ncl-hero--archive .ncl-hero-inner p{
  margin: 0 !important;
}
/* HERO overal dezelfde hoogte */
:root{
  --mc-hero-height: 66vh;     /* jij mag dit aanpassen */
  --mc-hero-min: 460px;
}
.mc-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg,
    rgba(0,58,112,.12),
    rgba(0,166,214,.10)
  );
}

.mc-hero-inner{
  position: relative;
  z-index: 2;
}
.mc-hero-inner p{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
/* ===============================
   HERO – compacter (hoogte fix)
================================ */

/* lager dan 66vh */
.ncl-hero,
.mc-hero{
  height: 48vh !important;     /* was 66vh */
  min-height: 380px !important;
  padding-bottom: 24px !important;
}

/* hero kaart minder groot */
.ncl-hero-inner{
  padding: clamp(14px, 2.4vw, 26px) !important;
  max-width: 720px !important;
}

/* tekst iets compacter */
.ncl-hero-inner h1{
  font-size: clamp(26px, 2.4vw, 40px) !important;
  margin-bottom: 6px !important;
}

.ncl-hero-inner p{
  margin-bottom: 12px !important;
}
/* ✅ SINGLE CRUISE: Kadence hero/page title UIT (voorkomt dubbele hero) */
body.single-cruise .entry-hero,
body.single-cruise .kadence-page-title-wrap,
body.single-cruise .hero-section,
body.single-cruise .page-title,
body.single-cruise .entry-header {
  display: none !important;
}
/* Single Cruise: Kadence page title/hero UIT (dubbele hero fix) */
body.single-cruise .entry-hero,
body.single-cruise .entry-hero-container,
body.single-cruise .hero-section,
body.single-cruise .page-title,
body.single-cruise .kadence-page-title-wrap,
body.single-cruise .entry-header{
  display:none !important;
}
/* ======================================================
   SINGLE CRUISE — HERO + MAP + DAGENBLOK (opmaak)
   Past bij jouw eigen header/footer + ncl look
====================================================== */

/* Zorg dat de page niet “Kadence-ruimte” eromheen krijgt */
body.single-cruise #page,
body.single-cruise #content{
  background: transparent;
}

/* ---------- HERO ---------- */
body.single-cruise .mc-hero.ncl-hero{
  position: relative;
  width: 100%;
  min-height: 46vh;        /* lager dan “mega hero” */
  max-height: 560px;
  border-radius: 18px;
  overflow: hidden;
  margin: 18px auto 14px;  /* ruimte onder header */
  background-size: cover;
  background-position: center;
}

/* zachte donkere overlay voor leesbaarheid */
body.single-cruise .mc-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.55) 100%
  );
}

/* titel-blok als “glass card” */
body.single-cruise .mc-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 90px 20px 28px;   /* top ruimte zodat header niet “in” de titel hangt */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

body.single-cruise .mc-hero-inner h1{
  margin: 0;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(28px, 3.2vw, 44px);
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

body.single-cruise .mc-hero-inner p{
  margin: 10px 0 0;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 15px;
}

/* optioneel: maak het “glas blok” zichtbaar als je dat mooi vindt */
body.single-cruise .mc-hero-inner{
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  width: min(980px, calc(100% - 24px));
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* ---------- MAP ---------- */
body.single-cruise .mc-section.mc-map{
  margin: 0 auto 22px;
}

body.single-cruise .mc-section.mc-map .mc-container{
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

/* Leaflet map netjes “card” maken */
body.single-cruise .mc-section.mc-map .leaflet-container,
body.single-cruise .mc-section.mc-map iframe{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}

/* Als jouw shortcode een wrapper div heeft, pak die ook */
body.single-cruise .mc-section.mc-map .cruise-route-map,
body.single-cruise .mc-section.mc-map .route-map{
  border-radius: 18px;
  overflow: hidden;
}

/* ---------- DAGENBLOK ---------- */
body.single-cruise .cruise-days-section{
  margin: 0 auto 40px;
}

body.single-cruise .cruise-days-section .mc-container{
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
}

body.single-cruise .cruise-days-heading{
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

body.single-cruise .cruise-days-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px){
  body.single-cruise .cruise-days-grid{
    grid-template-columns: 1fr;
  }
}

body.single-cruise a.cruise-day-card{
  display:flex;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  text-decoration:none;
  color: inherit;
  transition: transform .12s ease, box-shadow .12s ease;
}

body.single-cruise a.cruise-day-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}

body.single-cruise a.cruise-day-card .thumb{
  width: 180px;
  min-width: 180px;
  height: 110px;
  border-radius: 14px;
  overflow:hidden;
  background: #eef2f7;
  flex: 0 0 auto;
}

@media (max-width: 520px){
  body.single-cruise a.cruise-day-card{
    flex-direction: column;
  }
  body.single-cruise a.cruise-day-card .thumb{
    width: 100%;
    min-width: 0;
    height: 170px;
  }
}

body.single-cruise a.cruise-day-card .thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

body.single-cruise a.cruise-day-card .thumb-placeholder{
  width:100%;
  height:100%;
  background: linear-gradient(135deg, #e9edf5, #f7f9fc);
}

body.single-cruise a.cruise-day-card .info .title{
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  margin: 2px 0 6px;
}

body.single-cruise a.cruise-day-card .info .meta{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  margin-bottom: 8px;
}

body.single-cruise a.cruise-day-card .info .excerpt{
  font-size: 14px;
  color: rgba(0,0,0,.72);
  line-height: 1.35;
}
/* ======================================================
   FIX: HERO moet zonnig (geen donkere laag) + geen titel-kader
====================================================== */

/* 1) Overlay weg (of heel licht) */
body.single-cruise .mc-hero-overlay{
  background: none !important;      /* volledig weg */
  opacity: 0 !important;
}

/* 2) Titel-kader (glass card) uit */
body.single-cruise .mc-hero-inner{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  /* layout iets strakker */
  padding: 86px 20px 26px !important;
}

/* 3) Tekst nog wel leesbaar zonder “donker filter” */
body.single-cruise .mc-hero-inner h1{
  color:#fff;
  text-shadow: 0 8px 22px rgba(0,0,0,.25) !important;
}

body.single-cruise .mc-hero-inner p{
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 6px 18px rgba(0,0,0,.18) !important;
}
/* ======================================================
   SINGLE CRUISE HERO – zonnig, breed, geen afkap
====================================================== */

body.single-cruise .mc-hero-overlay{
  background: none !important;
}

body.single-cruise .mc-hero-inner{
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;

  max-width: 1400px;       /* breder vlak */
  padding: 110px 40px 40px;
  margin: 0 auto;
  text-align: left;
}

body.single-cruise .mc-hero-inner h1{
  margin: 0 0 18px 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;

  /* GEEN line clamp meer */
  display: block;
  overflow: visible;
  text-shadow: 0 8px 30px rgba(0,0,0,.25);
}

body.single-cruise .mc-hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

body.single-cruise .mc-hero-pills .pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.continent-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:30px;
}

.tab {
  padding:8px 16px;
  border-radius:20px;
  background:#f0f3f7;
  text-decoration:none;
  font-weight:500;
  transition:.2s;
}

.tab:hover {
  background:#dfe7f0;
}

.tab.active {
  background:#003a70;
  color:#fff;
}

.haven-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(260px,1fr));
  gap:30px;
}

.haven-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:.2s;
}

.haven-card:hover {
  transform:translateY(-4px);
}

.haven-thumb img {
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.haven-content {
  padding:16px;
}

.haven-country {
  font-size:14px;
  opacity:.7;
}
/* =========================
   HAVENS — TABS + GRID
========================= */

.havens-section{
  padding: 28px 0 44px;
}

.havens-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin: 0 0 14px;
}

.havens-head .ncl-title{
  margin:0;
}

.havens-search input{
  width:min(360px, 70vw);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  outline: none;
}

.havens-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 12px 0 18px;
}

.havens-tab{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor:pointer;
  font-weight:600;
  line-height:1;
}

.havens-tab .havens-tab-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  font-size: 13px;
}

.havens-tab.is-active{
  border-color: rgba(0,0,0,.20);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.havens-panel{ display:none; }
.havens-panel.is-active{ display:block; }

.havens-grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* responsive */
@media (max-width: 1100px){
  .havens-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 780px){
  .havens-head{ align-items:stretch; flex-direction:column; }
  .havens-search input{ width:100%; }
  .havens-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .havens-grid{ grid-template-columns: 1fr; }
}

/* card */
.haven-card{
  border-radius: 18px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-height: 0;
}

.haven-thumb{
  position:relative;
  width:100%;
  aspect-ratio: 16 / 9;
  background: #eef2f6;
  overflow:hidden;
}

.haven-thumb img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.haven-thumb-placeholder{
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}

.haven-content{
  padding: 12px 14px 14px;
}

.haven-name{
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.15;
}

.haven-meta{
  font-size: 14px;
  opacity: .75;
}
.havens-container{
  max-width: 1100px;
  margin: 0 auto;
}

.havens-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 14px 0 18px;
}

.havens-tab{
  border:0;
  border-radius:999px;
  padding:10px 14px;
  cursor:pointer;
}

.havens-tab-count{
  margin-left:8px;
  opacity:.8;
}

.havens-panel{ display:none; }
.havens-panel.is-active{ display:block; }

.havens-country-title{
  margin: 12px 0 10px;
}
/* 3 kolommen binnen de actieve tab */
.havens-panel{
  column-count: 3;
  column-gap: 28px;
}

@media (max-width: 1100px){
  .havens-panel{ column-count: 2; }
}
@media (max-width: 700px){
  .havens-panel{ column-count: 1; }
}

/* voorkom dat landenblok “doormidden breekt” */
.havens-country-block{
  break-inside: avoid;
  page-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
}

.havens-country-items{
  margin: 8px 0 0;
  padding-left: 18px;
}
/* ================================
   HEADER: alles wit, geen blauwe gloed
   (hero afbeeldingen NIET aanpassen)
================================ */

/* 1) Header zelf: geen glow/shadow */
#masthead,
.site-header,
.kadence-header-wrap,
.kadence-header-transparent,
.kadence-sticky-header,
.kadence-sticky-header-wrap {
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

/* 2) Blur/glas-effect uit (dit veroorzaakt vaak de blauwe waas) */
#masthead * ,
.kadence-header-wrap * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 3) Achtergronden: forceer wit (ook bij transparent/sticky varianten) */
#masthead,
.kadence-header-wrap,
.kadence-header-transparent .kadence-header-wrap,
.kadence-sticky-header .kadence-header-wrap {
  background: #fff !important;
}

/* 4) Eventuele overlays/pseudo-elements die tinten */
#masthead:before,
#masthead:after,
.kadence-header-wrap:before,
.kadence-header-wrap:after,
.site-header:before,
.site-header:after {
  content: none !important;
  background: transparent !important;
}

/* 5) Navigatie + knoppen op wit */
#masthead .site-branding,
#masthead .site-navigation,
#masthead .primary-navigation,
#masthead .nav-menu,
#masthead a,
#masthead .menu a,
#masthead .kt-button,
#masthead .wp-block-button__link {
  color: #0b0b0f !important;
}

/* 6) Zorg dat de hero overlay NIET mee verandert (we raken .mc-hero niet) */
/* (geen regels nodig—dit is alleen ter duidelijkheid) */

/* Cruise Day card verticaal maken */

.cruise-day-card{
  display: flex;
  flex-direction: column;   /* <<< dit is de fix */
  text-decoration: none;
}

/* Zorg dat de foto bovenaan volle breedte heeft */
.cruise-day-card .thumb{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.cruise-day-card .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tekst eronder */
.cruise-day-card .info{
  padding: 16px 0;
}
/* ==============================
   Cruise Days grid: 3 kolommen + text onder foto
   ============================== */

/* 1) Grid naar 3 kolommen */
.cruise-days-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

/* responsive */
@media (max-width: 1100px){
  .cruise-days-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px){
  .cruise-days-grid{
    grid-template-columns: 1fr !important;
  }
}

/* 2) Card altijd vertical (foto boven, tekst onder) */
.cruise-day-card{
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* 3) Thumbnail blok full width */
.cruise-day-card .thumb{
  width: 100% !important;
  margin: 0 0 12px 0 !important;
}

/* 4) Afbeelding netjes (geen rare uitsnedes/format) */
.cruise-day-card .thumb img{
  width: 100% !important;
  height: 180px !important;        /* pas aan indien gewenst */
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

/* 5) Info onder de foto, geen “naast”-layout */
.cruise-day-card .info{
  width: 100% !important;
}

/* 6) Als je placeholder gebruikt: ook netjes */
.cruise-day-card .thumb .thumb-placeholder{
  width: 100% !important;
  height: 180px !important;
  border-radius: 14px !important;
}
/* FORCE 3 kolommen op single cruise – overschrijft je eerdere 2-col rule */
body.single-cruise .cruise-days-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

@media (max-width: 1100px){
  body.single-cruise .cruise-days-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 680px){
  body.single-cruise .cruise-days-grid{
    grid-template-columns: 1fr !important;
  }
}

/* Foto boven, tekst eronder (ook op single cruise) */
body.single-cruise a.cruise-day-card{
  display: flex !important;
  flex-direction: column !important;
}

body.single-cruise a.cruise-day-card .thumb{
  width: 100% !important;
  margin: 0 0 12px 0 !important;
}

body.single-cruise a.cruise-day-card .thumb img{
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
}

body.single-cruise a.cruise-day-card .info{
  width: 100% !important;
}
/* ======================================================
   FLOATING HEADER OVER HERO (wit kader, geen blur)
====================================================== */

/* header boven hero positioneren */
.ncl-siteheader{
  position: absolute !important;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent !important;
}

/* witte pill container */
.ncl-siteheader-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;

  background: #ffffff !important;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.ncl-nav a::after{
  background: #24364a !important;
}

/* CTA knop rechts */
.ncl-header-cta{
  background: #eef3f8 !important;
  border: 1px solid #d9e2ec !important;
  color: #24364a !important;
  box-shadow: none !important;
}

/* ======================================================
   MENU KLEUR = EXACT ALS HEADINGS (laatste override)
====================================================== */

/* gebruik dezelfde tint als je headings (h2 etc) */
:root{
  --mc-heading: rgba(0,58,112,.80);
  --mc-heading-strong: rgba(0,58,112,.86);
  --mc-accent: rgba(0,166,214,.45);
  --mc-hover: rgba(0,90,169,.92);
}

/* brand + menu links */
.ncl-siteheader .ncl-siteheader-inner .ncl-brand{
  color: var(--mc-heading-strong) !important;
  font-weight: 750 !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.ncl-siteheader .ncl-siteheader-inner .ncl-nav a{
  color: var(--mc-heading) !important;
  font-weight: 650 !important;
  letter-spacing: -0.01em !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
}

.ncl-siteheader .ncl-siteheader-inner .ncl-nav a:hover{
  color: var(--mc-hover) !important;
}

.ncl-siteheader .ncl-siteheader-inner .ncl-nav a::after{
  background: var(--mc-accent) !important;
}

/* active */
.ncl-siteheader .ncl-siteheader-inner .current-menu-item > a,
.ncl-siteheader .ncl-siteheader-inner .current_page_item > a{
  color: var(--mc-heading-strong) !important;
}

/* CTA licht (niet donker) */
.ncl-siteheader .ncl-siteheader-inner .ncl-header-cta{
  background: rgba(0,90,169,.12) !important;
  border: 1px solid rgba(0,90,169,.18) !important;
  color: var(--mc-heading-strong) !important;
  box-shadow: none !important;
}
/* ======================================================
   FIX: HERO overlay mag NIET over header heen
====================================================== */

/* overlay van de hero expliciet achter content */
.ncl-hero::before,
.mc-hero-overlay{
  z-index: 0 !important;
}

/* alles in hero standaard boven overlay */
.ncl-hero > *{
  position: relative !important;
  z-index: 1 !important;
}

/* en de header nóg hoger (voor het geval hij in de hero zit) */
.ncl-siteheader{
  position: relative !important;
  z-index: 9999 !important;
}

/* header achtergrond echt wit (geen translucency/blur) */
.ncl-siteheader-inner{
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;
  opacity: 1 !important;
}
/* ======================================================
   FINAL OVERRIDE — header overlay + hero tot top + padding fix
   Plak HELEMAAL ONDERAAN
====================================================== */

/* 1) Nooit meer globale top-padding */
body{
  padding-top: 0 !important;
}

/* 3) HOME: hero start echt bovenaan */
body.home .ncl-hero{
  margin-top: 0 !important;
  padding-top: 140px !important; /* ruimte voor floating header */
}

/* 4) Header: NIET relative. We willen ‘m OVER de hero */
.ncl-siteheader{
  position: absolute !important;   /* overlay */
  top: 24px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: transparent !important;
}

/* ingelogd = adminbar */
body.admin-bar .ncl-siteheader{
  top: 56px !important; /* 32/46 wisselt, 56 is safe */
}

/* 5) Hero overlay mag nooit over header heen */
.ncl-hero::before,
.mc-hero-overlay{
  z-index: 0 !important;
}
.ncl-hero > *{
  position: relative !important;
  z-index: 1 !important;
}

/* 6) Header “pill” echt wit (geen blur/waas) */
.ncl-siteheader-inner{
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
  filter: none !important;
}
/* ======================================================
   MENU FONT FIX — force Montserrat + nicer rendering
   Plak HELEMAAL ONDERAAN
====================================================== */

.ncl-siteheader,
.ncl-siteheader *{
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-synthesis: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* menu typografie wat “NCL-rustiger” */
.ncl-siteheader .ncl-nav a{
  font-weight: 600 !important;     /* minder “Kadence bold” */
  font-size: 14.5px !important;
  letter-spacing: -0.01em !important;
}

/* brand ook even gelijk trekken */
.ncl-siteheader .ncl-brand{
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
}

/* CTA knop tekst ook */
.ncl-siteheader .ncl-header-cta{
  font-weight: 600 !important;
}
/* ======================================================
   FIX: hero op ALLE pagina's tot bovenaan (geen body push)
   Plak HELEMAAL ONDERAAN
====================================================== */

/* 1) kill de globale body padding-top die alles naar beneden duwt */
body{
  padding-top: 0 !important;
}

/* 2) geen extra theme top spacing */
#page, #wrapper, .site, .site-container, .content-wrap{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3) hero altijd flush aan de top */
.ncl-hero,
.mc-hero{
  margin-top: 0 !important;
}

/* 4) header blijft “floating” bovenop de hero */
.ncl-siteheader{
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 99999 !important;
}

/* admin bar offset (ingelogd) */
body.admin-bar .ncl-siteheader{ top: 32px !important; }
@media (max-width: 782px){
  body.admin-bar .ncl-siteheader{ top: 46px !important; }
}

/* 5) hero krijgt ruimte voor de fixed header (zodat tekst niet eronder zit) */
.ncl-hero,
.mc-hero,
.ncl-hero--archive{
  padding-top: 140px !important; /* pas aan als je header hoger/lager is */
}
/* ======================================================
   NCL CLEAN CORE — 1 waarheid voor header + hero spacing
   Plak HELEMAAL ONDERAAN
====================================================== */

/* A) Kadence header overal uit (want jij gebruikt .ncl-siteheader) */
#masthead, .site-header { display:none !important; }

/* B) Nooit meer body padding hacks */
html, body { margin:0 !important; padding:0 !important; }
body { padding-top: 0 !important; }

/* C) Variabelen: 1 plek om hoogte/offset te regelen */
:root{
  --mc-header-gap: 14px;       /* afstand van boven */
  --mc-header-h: 72px;         /* “gevoel” hoogte van je pill */
  --mc-adminbar: 0px;          /* wordt hieronder gezet */
  --mc-hero-pad: calc(var(--mc-header-gap) + var(--mc-header-h) + 28px);
}

/* WP admin bar offset */
body.admin-bar { --mc-adminbar: 32px; }
@media (max-width: 782px){
  body.admin-bar { --mc-adminbar: 46px; }
}

/* D) Custom header: ALTIJD fixed (niet mixen met absolute/relative) */
.ncl-siteheader{
  position: fixed !important;
  top: calc(var(--mc-adminbar) + var(--mc-header-gap)) !important;
  left: 0; right: 0;
  z-index: 99999 !important;
  background: transparent !important;
}

/* Header “pill” echt wit, geen blur */
.ncl-siteheader-inner{
  background:#fff !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
  opacity:1 !important;
}

/* E) Hero tot bovenaan, overal hetzelfde */
.ncl-hero,
.mc-hero,
.ncl-hero--archive{
  margin-top: 0 !important;
  padding-top: var(--mc-hero-pad) !important; /* ruimte voor fixed header */
}

/* F) Dit is de killer: Kadence geeft vaak top padding aan content wrappers.
      Als jouw hero “niet tot bovenaan” lijkt: het zit meestal HIER. */
#page, #wrapper, .site, .site-container, .content-wrap, #inner-wrap, #content{
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* G) Gutenberg kan ook top-margin geven aan het eerste block */
.wp-site-blocks > :first-child,
.site-main > :first-child{
  margin-top: 0 !important;
}
/* =========================================
   HOME — onderste 3 links gecentreerd
========================================= */

.ncl-usp{
  width: 100%;
  margin: 40px auto 80px;
  display: flex;
  justify-content: center;   /* <<< horizontaal centreren */
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;           /* netjes op mobiel */
}

.ncl-usp__item{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  border: 1px solid rgba(0,58,112,.12);
  border-radius: 999px;

  padding: 12px 18px;
  text-decoration: none !important;

  color: rgba(0,58,112,.86);
  font-weight: 600;
  font-size: 14px;

  box-shadow: 0 10px 22px rgba(0,58,112,.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.ncl-usp__item:hover{
  transform: translateY(-2px);
  border-color: rgba(0,166,214,.28);
  box-shadow: 0 14px 30px rgba(0,58,112,.10);
}

.ncl-usp__icon{
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0,166,214,.10);
}
/* =========================
   HERO CONSISTENT HEIGHT
========================= */

.mc-hero{
  min-height: 520px;
  display:flex;
  align-items:center;
  padding-top: 140px; /* ruimte voor transparante header */
  padding-bottom: 100px;
}

/* mobiel */
@media (max-width:1024px){
  .mc-hero{
    min-height: 440px;
    padding-top:120px;
    padding-bottom:80px;
  }
}
/* ======================================================
   NCL FOOTER — wave + 4 cols + bottom bar
====================================================== */

.mc-footer{
  position: relative;
  background: #06263f;               /* NCL deep navy */
  color: rgba(255,255,255,.92);
  margin-top: 70px;
}

/* wave top (svg-ish via CSS gradient) */
.mc-footer-wave{
  height: 120px;
  background:
    radial-gradient(120% 120% at 50% 120%, rgba(255,255,255,0) 58%, #06263f 60%) ,
    radial-gradient(120% 120% at 50% 140%, rgba(0,166,214,.22) 0%, rgba(0,166,214,0) 55%),
    radial-gradient(120% 120% at 50% 120%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 55%);
}

.mc-footer-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 26px;
}

.mc-footer-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  padding: 22px 0 16px;
}

@media (max-width: 980px){
  .mc-footer-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px){
  .mc-footer-grid{ grid-template-columns: 1fr; }
}

.mc-footer-title{
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.92);
  margin: 0 0 12px;
}

.mc-footer-menu,
.mc-footer-legal-menu{
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-footer-menu li{
  margin: 0 0 10px;
}

.mc-footer-menu a{
  color: rgba(255,255,255,.86);
  text-decoration: none !important;
  font-weight: 550;
  font-size: 14px;
}

.mc-footer-menu a:hover{
  color: #fff;
  text-decoration: underline !important;
  text-underline-offset: .22em;
}

/* bottom bar */
.mc-footer-bottom{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;

  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  margin-top: 12px;
}

.mc-footer-copy{
  font-size: 13px;
  color: rgba(255,255,255,.78);
}

.mc-footer-legal-menu{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mc-footer-legal-menu a{
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
}

.mc-footer-legal-menu a:hover{
  color: rgba(255,255,255,.96);
  text-decoration: underline !important;
  text-underline-offset: .22em;
}
/* =========================
   FOOTER — Mijn Cruise Dagboek
   ========================= */

.mc-footer{
  margin-top: 70px;
  background: #0b1f33;            /* deep navy */
  color: rgba(255,255,255,.86);
  position: relative;
}

.mc-footer-wave{
  height: 90px;
  overflow: hidden;
  background: transparent;
}
.mc-footer-wave svg{
  width: 100%;
  height: 100%;
  display: block;
}
.mc-footer-wave path{
  fill: #0b1f33;
}

/* inner container */
.mc-footer-inner{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

/* top area */
.mc-footer-top{
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.mc-footer-brand{
  min-width: 0;
}

.mc-footer-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.mc-footer-mark{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
}
.mc-footer-name{
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  font-size: 16px;
}
.mc-footer-tagline{
  margin: 0;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
  max-width: 46ch;
}

/* columns */
.mc-footer-cols{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mc-footer-title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mc-footer-menu,
.mc-footer-legal-menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mc-footer-menu a,
.mc-footer-legal-menu a{
  color: rgba(255,255,255,.78);
  text-decoration: none !important;
  font-weight: 650;
}
.mc-footer-menu a:hover,
.mc-footer-legal-menu a:hover{
  color: rgba(255,255,255,.98);
  text-decoration: underline !important;
  text-underline-offset: .22em;
}

/* bottom bar */
.mc-footer-bottom{
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.mc-footer-copy{
  color: rgba(255,255,255,.70);
  font-weight: 600;
  font-size: 13px;
}

/* legal menu inline */
.mc-footer-legal-menu{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.mc-footer-legal-menu li{
  margin: 0;
  padding: 0;
}
.mc-footer-legal-menu a{
  font-size: 13px;
  font-weight: 700;
  opacity: .9;
}

/* responsive */
@media (max-width: 980px){
  .mc-footer-top{
    grid-template-columns: 1fr;
  }
  .mc-footer-cols{
    grid-template-columns: 1fr;
  }
}
/* === MC FOOTER — menu items zichtbaar maken === */
.mc-footer{
  color: rgba(255,255,255,.88) !important;
}

.mc-footer-title{
  color: rgba(255,255,255,.95) !important;
}

.mc-footer-menu,
.mc-footer-legal-menu{
  list-style: none !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
}

.mc-footer-menu li,
.mc-footer-legal-menu li{
  margin: 0 0 8px 0 !important;
}

.mc-footer-menu a,
.mc-footer-legal-menu a{
  display: inline-block !important;
  color: rgba(255,255,255,.78) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.mc-footer-menu a:hover,
.mc-footer-legal-menu a:hover{
  color: rgba(255,255,255,.95) !important;
  text-decoration: underline !important;
  text-underline-offset: .22em;
}
/* =========================
   Sitemap (menselijk)
========================= */
.mc-smap-wrap{
  padding: 48px 18px;
}
.mc-smap-inner{
  max-width: 1100px;
  margin: 0 auto;
}
.mc-smap-head{
  margin-bottom: 26px;
}
.mc-smap-head h1{
  margin: 0 0 10px;
}
.mc-smap-head p{
  margin: 0;
  opacity: .85;
}

.mc-smap-block{
  margin: 22px 0;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.mc-smap-block h2{
  margin: 0 0 12px;
  font-size: 18px;
}

.mc-smap-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.mc-smap-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.06);
}

.mc-smap-item a{
  text-decoration: none;
}

.mc-smap-meta{
  font-size: 12px;
  opacity: .75;
  white-space: nowrap;
}

.mc-smap-empty{
  margin: 0;
  opacity: .75;
}
.mc-section { padding: 36px 0; }
.mc-wrap { max-width: 1100px; margin: 0 auto; padding: 0 18px; }
.mc-title { margin: 0 0 18px; font-weight: 800; letter-spacing: -0.02em; }

.mc-planning-toolbar {
  display: flex; gap: 16px; align-items: flex-end; justify-content: space-between;
  padding: 16px; border-radius: 18px; background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.06);
}

.mc-field label { display:block; font-size: 13px; opacity: .75; margin-bottom: 6px; }
.mc-field select {
  min-width: 320px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.mc-actions { display:flex; gap: 10px; align-items:center; }
.mc-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}
.mc-btn:disabled { opacity: .45; cursor: not-allowed; }
.mc-btn--ghost { background: transparent; }

.mc-status { font-size: 13px; opacity: .8; }
.mc-status--bad { color: #b00020; opacity: 1; }

.mc-empty {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(0,0,0,.06);
}

.mc-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mc-card {
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
}
.mc-card--wide { grid-column: 1 / -1; }
.mc-card h2 {
  margin: 0;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mc-card-body { padding: 14px 16px; }

.mc-check {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
}
.mc-check input { width: 18px; height: 18px; }

.mc-pack-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}
.mc-pack-qty {
  width: 90px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.mc-day { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.mc-day:last-child { border-bottom: 0; }

.mc-day-head {
  display:flex; align-items:center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.mc-day-title { font-weight: 700; text-decoration: none; }
.mc-day-title:hover { text-decoration: underline; }

.mc-day-actions { display:flex; gap: 8px; flex-wrap: wrap; }

.mc-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
  overflow: hidden;
}
.mc-pill input { width: 18px; height: 18px; margin: 0 8px; }
.mc-pill span { padding: 8px 10px 8px 0; font-size: 13px; font-weight: 600; }

#mcNotes{
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  resize: vertical;
}

@media (max-width: 900px){
  .mc-grid { grid-template-columns: 1fr; }
  .mc-field select { min-width: 0; width: 100%; }
  .mc-planning-toolbar { flex-direction: column; align-items: stretch; }
  .mc-actions { justify-content: space-between; }
}
.mc-days-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 1100px){ .mc-days-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .mc-days-grid{ grid-template-columns: 1fr; } }

.mc-day{
  display:block;
  border:1px solid rgba(0,58,112,.08);
  border-radius:16px;
  overflow:hidden;
  background: rgba(0,58,112,.02);
  text-decoration:none;
}
.mc-day img{ width:100%; height:120px; object-fit:cover; display:block; }
.mc-day-ph{ height:120px; background: rgba(0,58,112,.06); }
.mc-day-t{
  padding:10px 12px;
  font-weight:800;
  color: rgba(0,58,112,.92);
}
.mc-days{ display:flex; flex-direction:column; gap:10px; }
.mc-day-row{
  display:block;
  text-decoration:none;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(0,58,112,.08);
  background: rgba(0,58,112,.02);
}
.mc-day-title{ font-weight:800; color: rgba(0,58,112,.92); }
.mc-day-meta{ margin-top:4px; font-size:13px; color: rgba(0,58,112,.72); }

.mc-day-row{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(0,58,112,.08);
  background: rgba(0,58,112,.02);
}

.mc-day-link{ display:block; text-decoration:none; }
.mc-day-actions{
  margin-top:10px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

/* pills */
.mc-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,58,112,.10);
  background: rgba(255,255,255,.75);
  font-weight:800;
  font-size:12px;
}
.mc-pill input{ transform: scale(1.05); }
/* Force checkbox rendering (Kadence kan appearance uitzetten) */
.mc-item input[type="checkbox"],
.mc-pill input[type="checkbox"],
.mc-done input[type="checkbox"]{
  -webkit-appearance: checkbox !important;
  appearance: auto !important;
  display: inline-block !important;
  opacity: 1 !important;
  position: static !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  accent-color: #005AA9;
}

/* dagen-acties netjes */
.mc-day-actions{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.mc-pill{ display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px; border:1px solid rgba(0,58,112,.10); background: rgba(255,255,255,.75); font-weight:800; font-size:12px; }
/* ======================================================
   CRUISE DAY HERO — FIX (matcht jouw PHP classes)
   Plak HELEMAAL ONDERAAN ncl.css
====================================================== */

/* Kadence hero/title weg (mag blijven) */
body.single-cruise_day .entry-header,
body.single-cruise_day .entry-hero,
body.single-cruise_day .kadence-page-title-wrap{
  display:none !important;
}

/* Zorg dat jouw hero altijd zichtbaar is */
body.single-cruise_day .mc-hero.ncl-day-hero{
  display:flex !important;
  position:relative !important;
  width:100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  min-height: 52vh !important;
  background-size: cover !important;
  background-position: center !important;

  border-radius: 0 0 34px 34px !important;
  overflow:hidden !important;
  align-items:flex-end !important;

  padding: 120px 0 28px !important; /* ruimte voor header */
}

/* Overlay laag: achter tekst */
body.single-cruise_day .mc-hero.ncl-day-hero .mc-hero-overlay{
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.30) 0%,
    rgba(0,0,0,.20) 45%,
    rgba(0,0,0,.35) 100%
  ) !important;
}

/* Inner: boven overlay */
body.single-cruise_day .mc-hero.ncl-day-hero .mc-hero-inner{
  position:relative !important;
  z-index:2 !important;
  width: min(1100px, calc(100% - 40px)) !important;
  margin: 0 auto !important;

  /* Geen glass-card, gewoon clean */
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  text-align:left !important;
}

/* Titel wit & leesbaar */
body.single-cruise_day .mc-hero-title{
  margin: 10px 0 12px !important;
  color: #fff !important;
  font-weight: 650 !important;
  line-height: 1.08 !important;
  font-size: clamp(28px, 3.0vw, 46px) !important;
  text-shadow: 0 10px 26px rgba(0,0,0,.28) !important;
}

/* Breadcrumb link */
body.single-cruise_day .ncl-day-back{
  display:inline-block !important;
  color: rgba(255,255,255,.92) !important;
  font-weight: 650 !important;
  text-decoration:none !important;
  text-shadow: 0 8px 20px rgba(0,0,0,.25) !important;
}
body.single-cruise_day .ncl-day-back:hover{
  text-decoration: underline !important;
  text-underline-offset: .2em !important;
}

/* Pills zoals je andere hero */
body.single-cruise_day .mc-hero-pills{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px 12px !important;
  padding-bottom: 6px !important;
}

body.single-cruise_day .mc-hero-pills .pill{
  color: rgba(255,255,255,.92) !important;
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}