/**
 * HW Yachtcharter — Front v2 stylesheet
 * Nautica stijl · Mobile-first · Bootstrap 5 basis
 */

/* ── Design tokens ───────────────────────────────────── */
:root {
  --fv2-navy:      #0f1b2a;
  --fv2-navy-mid:  #1a2e4a;
  --fv2-red:       #b70c12;
  --fv2-green:     #0fc766;
  --fv2-green-hov: #0aaa55;
  --fv2-gold:      #d4af37;
  --fv2-white:     #ffffff;
  --fv2-off-white: #f8f9fb;
  --fv2-gray:      rgba(15,27,42,.06);
  --fv2-border:    rgba(15,27,42,.10);
  --fv2-font:      'Raleway', sans-serif;
  --fv2-serif:     'Libre Baskerville', Georgia, serif;
  --fv2-radius:    0;
  --fv2-shadow:    0 4px 24px rgba(15,27,42,.12);
}

/* ── Reset / Base ────────────────────────────────────── */
.fv2-page *,
.fv2-page *::before,
.fv2-page *::after { box-sizing: border-box; }

.fv2-page {
  font-family: var(--fv2-font);
  color: var(--fv2-navy);
  overflow-x: hidden;
}

.fv2-page a { color: inherit; text-decoration: none; }
.fv2-page img { max-width: 100%; height: auto; display: block; }

/* ── Container ───────────────────────────────────────── */
.fv2-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Buttons ─────────────────────────────────────────── */
.fv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.fv2-btn:active { transform: scale(.98); }

.fv2-btn--primary {
  background: var(--fv2-green);
  color: #fff;
}
.fv2-btn--primary:hover { background: var(--fv2-green-hov); color: #fff; }

.fv2-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.fv2-btn--outline:hover { border-color: #fff; color: #fff; }

.fv2-btn--phone {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 999px;
}
.fv2-btn--phone:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ── Section gemeenschappelijk ───────────────────────── */
.fv2-section { padding: 64px 0; }
.fv2-section--sm { padding: 40px 0; }
.fv2-section--dark {
  background: var(--fv2-navy);
  color: #fff;
}
.fv2-section--light { background: var(--fv2-off-white); }

.fv2-section__label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fv2-red);
  display: block;
  margin-bottom: 10px;
}
.fv2-section__title {
  font-family: var(--fv2-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
}
.fv2-section__sub {
  font-size: 1rem;
  color: rgba(15,27,42,.6);
  max-width: 560px;
  line-height: 1.65;
  margin: 0 0 32px;
}
.fv2-section--dark .fv2-section__sub { color: rgba(255,255,255,.6); }

/* ── 1. HERO ─────────────────────────────────────────── */
.fv2-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--fv2-navy);
  border-top: 4px solid var(--fv2-red);
  overflow: hidden;
}

.fv2-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fv2-hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.fv2-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,18,30,.85) 0%,
    rgba(15,27,42,.65) 60%,
    rgba(15,27,42,.4) 100%
  );
  z-index: 1;
}

.fv2-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0 80px;
}

.fv2-hero__eyebrow {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fv2-green);
  display: block;
  margin-bottom: 14px;
}

.fv2-hero__title {
  font-family: var(--fv2-serif);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 20px;
  max-width: 720px;
}
.fv2-hero__title em {
  font-style: normal;
  color: var(--fv2-green);
}

.fv2-hero__sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 36px;
}

.fv2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.fv2-hero__search {
  margin-top: 48px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  max-width: 640px;
}
.fv2-hero__search-title {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
  display: block;
}

.fv2-hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fv2-bounce 2s ease-in-out infinite;
}
@keyframes fv2-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 2. TRUST BAR ────────────────────────────────────── */
.fv2-trustbar {
  background: var(--fv2-navy-mid);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}
.fv2-trustbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.fv2-trustbar__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
}
.fv2-trustbar__item svg { color: var(--fv2-green); flex-shrink: 0; }
.fv2-trustbar__sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
@media(max-width:480px){
  .fv2-trustbar__sep { display: none; }
}

/* ── 3. BARRIÈRE BREKEN ──────────────────────────────── */
.fv2-barrier {
  background: var(--fv2-off-white);
}
.fv2-barrier__lead {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(15,27,42,.6);
  font-style: italic;
  margin-bottom: 8px;
}
.fv2-barrier__answer {
  font-family: var(--fv2-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--fv2-navy);
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}
.fv2-barrier__answer span { color: var(--fv2-green); }

.fv2-fearbusters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.fv2-fearbuster {
  background: #fff;
  border: 1px solid var(--fv2-border);
  padding: 28px 24px;
  border-top: 3px solid var(--fv2-green);
}
.fv2-fearbuster__icon {
  width: 40px;
  height: 40px;
  background: rgba(15,243,102,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--fv2-green);
}
.fv2-fearbuster__title {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 8px;
}
.fv2-fearbuster__text {
  font-size: .85rem;
  color: rgba(15,27,42,.6);
  line-height: 1.6;
  margin: 0;
}

/* ── 4. ZOEKVORM ─────────────────────────────────────── */
.fv2-search-section {
  background: var(--fv2-navy);
  padding: 48px 0;
}
.fv2-search-section .fv2-section__title { color: #fff; }

/* ── 5. VLOOT ────────────────────────────────────────── */
.fv2-fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.fv2-yacht-card {
  background: #fff;
  border: 1px solid var(--fv2-border);
  box-shadow: var(--fv2-shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
@media(hover:hover){
  .fv2-yacht-card:hover {
    box-shadow: 0 8px 40px rgba(15,27,42,.16);
    transform: translateY(-3px);
  }
}
.fv2-yacht-card__img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.fv2-yacht-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
@media(hover:hover){
  .fv2-yacht-card:hover .fv2-yacht-card__img img { transform: scale(1.05); }
}
.fv2-yacht-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--fv2-red);
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
}
.fv2-yacht-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv2-yacht-card__name {
  font-family: var(--fv2-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.fv2-yacht-card__meta {
  font-size: .7rem;
  color: rgba(15,27,42,.45);
  font-weight: 600;
}
.fv2-yacht-card__specs {
  display: flex;
  gap: 0;
  border: 1px solid var(--fv2-border);
}
.fv2-yacht-card__spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4px;
  border-right: 1px solid var(--fv2-border);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(15,27,42,.4);
}
.fv2-yacht-card__spec:last-child { border-right: none; }
.fv2-yacht-card__spec strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--fv2-navy);
  display: block;
  margin-bottom: 2px;
}
.fv2-yacht-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--fv2-border);
  margin-top: auto;
  gap: 10px;
}
.fv2-yacht-card__price-label {
  font-size: .62rem;
  color: rgba(15,27,42,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 2px;
}
.fv2-yacht-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--fv2-navy);
  line-height: 1;
}
.fv2-fleet__cta {
  text-align: center;
  margin-top: 40px;
}

/* ── 6. FRIESLAND BELEVENIS ──────────────────────────── */
.fv2-experience {
  background: var(--fv2-navy);
  color: #fff;
}
.fv2-experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}
@media(max-width:640px){
  .fv2-experience__grid { grid-template-columns: 1fr; }
}
.fv2-experience__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.fv2-experience__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.fv2-experience__photo:hover img { transform: scale(1.04); }
.fv2-experience__photo--large { grid-row: span 2; }
.fv2-experience__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10,18,30,.8));
  padding: 20px 16px 14px;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
}

.fv2-routes {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.fv2-route-pill {
  border: 1px solid rgba(255,255,255,.15);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .15s;
  cursor: pointer;
}
.fv2-route-pill:hover { background: rgba(255,255,255,.08); }
.fv2-route-pill__icon { color: var(--fv2-green); flex-shrink: 0; }
.fv2-route-pill__name { font-size: .85rem; font-weight: 700; }
.fv2-route-pill__days { font-size: .7rem; color: rgba(255,255,255,.5); }

/* ── 7. SOCIAL PROOF ─────────────────────────────────── */
.fv2-proof { background: var(--fv2-off-white); }
.fv2-rating-big {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fv2-rating-big__score {
  font-family: var(--fv2-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fv2-navy);
  line-height: 1;
}
.fv2-rating-big__stars { color: var(--fv2-gold); font-size: 1.3rem; letter-spacing: 2px; }
.fv2-rating-big__label { font-size: .8rem; color: rgba(15,27,42,.5); }

.fv2-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.fv2-review {
  background: #fff;
  border: 1px solid var(--fv2-border);
  padding: 24px;
  border-left: 3px solid var(--fv2-green);
}
.fv2-review__text {
  font-size: .9rem;
  line-height: 1.65;
  color: rgba(15,27,42,.75);
  font-style: italic;
  margin: 0 0 16px;
}
.fv2-review__author {
  font-size: .75rem;
  font-weight: 800;
  color: var(--fv2-navy);
}
.fv2-review__date {
  font-size: .7rem;
  color: rgba(15,27,42,.4);
}

/* ── 8. LAST MINUTE ──────────────────────────────────── */
.fv2-lastminute { background: var(--fv2-navy); color: #fff; }
.fv2-lastminute .fv2-section__title { color: #fff; }
.fv2-lastminute .fv2-section__sub { color: rgba(255,255,255,.6); }

/* ── 9. LEAD CAPTURE ─────────────────────────────────── */
.fv2-lead { background: var(--fv2-navy-mid); }
.fv2-lead__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.fv2-lead__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}
.fv2-lead__input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  padding: 13px 16px;
  font-family: var(--fv2-font);
  font-size: .9rem;
  width: 100%;
  outline: none;
  transition: border-color .15s;
}
.fv2-lead__input:focus { border-color: var(--fv2-green); }
.fv2-lead__input::placeholder { color: rgba(255,255,255,.35); }
.fv2-lead textarea.fv2-lead__input { resize: vertical; min-height: 90px; }
.fv2-lead__submit {
  background: var(--fv2-green);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--fv2-font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s;
  width: 100%;
}
.fv2-lead__submit:hover { background: var(--fv2-green-hov); }
.fv2-lead__privacy {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 8px;
}

/* ── Sticky header ───────────────────────────────────── */
.fv2-sticky-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--fv2-navy);
  border-bottom: 3px solid var(--fv2-red);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 10px 0;
}
.fv2-sticky-bar.visible { transform: translateY(0); }
.fv2-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.fv2-sticky-bar__logo img { height: 40px; }
.fv2-sticky-bar__tagline {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  font-weight: 600;
  display: none;
}
@media(min-width:640px){ .fv2-sticky-bar__tagline { display: block; } }

/* ── Responsive ──────────────────────────────────────── */
@media(max-width:767px){
  .fv2-section { padding: 48px 0; }
  .fv2-hero__content { padding: 80px 0 60px; }
  .fv2-hero__actions { flex-direction: column; align-items: flex-start; }
  .fv2-hero__search { padding: 16px; margin-top: 32px; }
  .fv2-fleet__grid { grid-template-columns: 1fr; }
  .fv2-fearbusters { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════
   SHARED PARTIALS — header-main / footer-main / footer-booking-flow
   Mirrors the brand tokens used in accommodatiecombi.php + zoeken-nieuw.php
   ══════════════════════════════════════════════════════ */

/* Brand token bridge (so partials work without the plugin's :root block) */
:root {
  --brand-blue-dark:       #0f1b2a;
  --brand-red:             #b70c12;
  --brand-green:           #155f38;
  --brand-blue:            #005586;
  --brand-gold:            #d6b065;
  --brand-natural-light:   #ccba9f;
  --font-base:             'Raleway', sans-serif;
  --font-heading:          'Libre Baskerville', serif;
  --text-inverse:          #ffffff;
}

/* ── Topbar ─────────────────────────────────────────── */
.hwyc-topbar {
  background: var(--brand-blue-dark) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  padding: 10px 0;
}

/* Logo sprite (CSS background, same sprite as plugin templates) */
.hwyc-logo-sprite {
  display: inline-block;
  flex-shrink: 0;
  margin: 4px 0;
  background-image: url('../images/csg-542135f8b5877.png');
  background-repeat: no-repeat;
  background-size: 78px 897px;
  background-position: 0 -623px;
  width: 78px;
  height: 52px;
}
@media(max-width:767px){
  .hwyc-logo-sprite {
    background-size: 60px 689px;
    background-position: 0 -479px;
    width: 60px;
    height: 40px;
  }
}

/* Phone */
.hwyc-topbar-phone-wrapper,
.hwyc-topbar-phone-wrapper a,
.hwyc-topbar-phone-wrapper svg,
.hwyc-topbar-phone-wrapper .bi-telephone-fill {
  color: #fff !important;
  font-size: .9rem;
}

/* Language toggle — exact gelijk aan accommodatiecombi.php */
.hwyc-topbar-language-toggle {
  border-color: rgba(255,255,255,.3) !important;
  background: rgba(255,255,255,.1) !important;
  color: #fff !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  padding: .3rem .65rem !important;
  min-width: 52px !important;
  box-shadow: none !important;
}
.hwyc-topbar-language-toggle::after { border-top-color: #fff !important; }
.hwyc-topbar-language-toggle:hover,
.hwyc-topbar-language-toggle:focus {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.5) !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
}
.hwyc-topbar-language-menu {
  background: var(--brand-blue-dark);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 0;
  min-width: 80px;
  padding: 4px 0;
}
.hwyc-topbar-language-menu .dropdown-item {
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .45rem 1rem;
}
.hwyc-topbar-language-menu .dropdown-item.active,
.hwyc-topbar-language-menu .dropdown-item:active {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.hwyc-topbar-language-menu .dropdown-item:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* Book / CTA button in topbar — exact gelijk aan accommodatiecombi.php */
.hwyc-topbar-book-button {
  background: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  font-size: .72rem !important;
  padding: .5rem 1.1rem !important;
}
.hwyc-topbar-book-button:hover {
  background: #9a0a0f !important;
  border-color: #9a0a0f !important;
  color: #fff !important;
}

/* ── Footer — main ──────────────────────────────────── */
.hwyc-footer-main {
  background: var(--brand-blue-dark);
  color: rgba(255,255,255,.55);
  padding: 60px 0 36px;
  font-size: .88rem;
  font-family: var(--font-base);
}
.hwyc-footer-main strong { color: rgba(255,255,255,.88); }
.hwyc-footer-main a      { color: rgba(255,255,255,.55); text-decoration: none; }
.hwyc-footer-main a:hover{ color: rgba(255,255,255,.9); }
.hwyc-footer-main .hwyc-muted { color: rgba(255,255,255,.4) !important; }

/* ── Footer — booking flow ──────────────────────────── */
.hwyc-footer-booking {
  background: var(--brand-blue-dark);
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  font-family: var(--font-base);
}
.hwyc-footer-booking a { color: rgba(255,255,255,.4); text-decoration: none; }
.hwyc-footer-booking a:hover { color: rgba(255,255,255,.75); }
.hwyc-footer-booking .hwyc-muted { color: rgba(255,255,255,.35) !important; }
