/* ========== Base ========== */
:root {
  --bg: #0b0c0e;
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --brand-green: #8edb1f;
  --brand-green-hover: #9eea35;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--bg);
  color: var(--text);
}


/* Honeypot veld verstoppen (niet display:none) */
.hp-field{
   position:absolute;
        left:-10000px;
        top:auto;
        width:1px;
        height:1px;
        overflow:hidden;
      }
  

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.72);
  border-bottom: 1px solid var(--border);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.brand__text {
  display: none;
  line-height: 1.1;
}
.brand__name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.brand__tagline {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.phone {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.phone__label {
  color: var(--muted);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 13px;
  border: 1px solid transparent;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}
.btn--primary {
  background: var(--brand-green);
  color: #0a0a0a;
  box-shadow: 0 10px 26px rgba(166, 255, 0, 0.14);
}
.btn--primary:hover {
  background: var(--brand-green-hover);
  transform: translateY(-1px);
}

/* Bottom row */
.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 14px;
}

.nav--desktop {
  display: none;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.nav--desktop a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.15s ease;
}

.nav--desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.18s ease;
}

.nav--desktop a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav--desktop a:hover::after {
  width: 100%;
}

/* Mobile toggle */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}
/* Hamburger bars */
.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  display: block;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}

/* Hover = groen accent */
.nav-toggle:hover .nav-toggle__bar {
  background: var(--brand-green);
}

/* Wanneer menu open is */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: var(--brand-green);
}

/* Mobile panel */
.mobile-panel {
  padding-bottom: 14px;
}

.nav--mobile {
  display: grid;
  gap: 4px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
}
.nav--mobile a {
  position: relative;
  padding: 12px 12px 12px 18px; /* extra ruimte links */
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.12s ease,
    color 0.12s ease;
}

/* Verticale accentlijn */
.nav--mobile a::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.12s ease;
}

/* Hover / focus */
.nav--mobile a:hover,
.nav--mobile a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav--mobile a:hover::before,
.nav--mobile a:focus-visible::before {
  background: var(--brand-green);
}

/* ========== Responsive ========== */
@media (min-width: 560px) {
  .brand__text {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .nav--desktop {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-panel {
    display: none !important;
  }
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: center top;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.2) 65%,
      rgba(0, 0, 0, 0.05) 85%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__text {
  max-width: 560px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-green);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  margin: 0 0 18px;
}

.hero__title span {
  color: var(--brand-green);
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 34px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.85) 75%
    );
  }

  .hero__text {
    padding-top: 80px;
  }
}

/* ========== Scroll down indicator ========== */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
  z-index: 3;
}

.scroll-down:hover {
  border-color: var(--brand-green);
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
}

.scroll-down__mouse {
  width: 18px;
  height: 28px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  position: relative;
}

.scroll-down__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-green);
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: scrollDot 1.35s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.35;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

@media (max-width: 360px) {
  .scroll-down__text {
    display: none;
  }
}

/* ========== Section headings ========== */
.section-head {
  padding: 70px 0 22px;
  max-width: 760px;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 900;
  color: var(--brand-green);
  margin: 0 0 10px;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  font-weight: 950;
}
.section-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

/* ========== Offer section ========== */
.offer {
  padding-bottom: 70px;
}

/* Tabs (Aanbod) */
.tabs {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px;
  margin: 18px 0 26px;
}

.tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.tab.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Grid cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

/* Green accent line (Aanbod) */
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.15s ease;
}

.card:hover,
.card:focus-within {
  border-color: rgba(142, 219, 31, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.18),
    0 14px 36px rgba(142, 219, 31, 0.08),
    0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.card:hover::before,
.card:focus-within::before {
  background: var(--brand-green);
}

.card:hover .card__body h3,
.card:focus-within .card__body h3 {
  color: var(--brand-green);
}

.card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #0a0a0a;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.badge--green {
  background: rgba(142, 219, 31, 0.2);
  border-color: rgba(142, 219, 31, 0.55);
  color: #eaffd1;
}

.card__body {
  padding: 16px 16px 18px;
}

.card__body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 950;
}

.card__body p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.card__link {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}
.card__link:hover {
  color: var(--brand-green);
}

/* ========== Schedule (Rooster) ========== */
.schedule {
  padding: 10px 0 80px;
}

/* Tabs */
.schedule-tabs {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px;
  margin: 18px 0 18px;
}

.schedule-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.schedule-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Card container */
.schedule-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* Accordion day */
.schedule-day {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.schedule-day:first-child {
  border-top: none;
}

.schedule-day__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-weight: 950;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.schedule-day__icon {
  color: var(--brand-green);
  font-weight: 950;
  font-size: 22px;
  line-height: 1;
}

.schedule-day__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.schedule-day__inner {
  padding: 4px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-lesson {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(26, 26, 26, 0.65);
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease,
    box-shadow 0.12s ease;
}

.schedule-lesson::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.12s ease;
}

.schedule-lesson:hover,
.schedule-lesson:focus-visible {
  background: rgba(26, 26, 26, 0.85);
  border-color: rgba(142, 219, 31, 0.35);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.16),
    0 10px 28px rgba(142, 219, 31, 0.08);
  transform: translateY(-1px);
}

.schedule-lesson:hover::before,
.schedule-lesson:focus-visible::before {
  background: var(--brand-green);
}

.schedule-time {
  color: var(--brand-green);
  font-weight: 950;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.schedule-name {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.95);
}

.schedule-empty {
  color: rgba(255, 255, 255, 0.65);
  padding: 12px 12px 16px;
  font-style: italic;
}

@media (max-width: 520px) {
  .schedule-lesson {
    grid-template-columns: 1fr;
  }
  .schedule-day__btn {
    font-size: 17px;
  }
}

/* ========== Video (onder aanbod) ========== */
.offer .video-card {
  margin-top: 40px;
}

.video-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}

.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #0a0a0a;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.01);
}

.video-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}

.video-play::before {
  content: "";
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid var(--brand-green);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-embed:hover .video-play,
.video-embed:focus-visible .video-play {
  transform: translate(-50%, -50%) scale(1.04);
  border-color: rgba(142, 219, 31, 0.45);
}

.video-embed:hover::after,
.video-embed:focus-visible::after {
  opacity: 0.85;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========== Pricing (Tarieven) ========== */
.pricing {
  padding: 10px 0 80px;
}

/* Tabs */
.pricing-tabs {
  display: inline-flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px;
  margin: 18px 0 26px;
}

.pricing-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.pricing-tab[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Layout grids */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1040px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Main pricing cards */
.price-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.15s ease;
}

.price-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.price-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.price-card__price {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.95);
  transition:
    color 0.16s ease,
    transform 0.16s ease;
}

.price-card__desc {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.price-card__hint {
  display: inline-block;
  margin-top: 8px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.9);
}

.price-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  transition:
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.price-card--featured {
  border-color: rgba(142, 219, 31, 0.35);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.35);
}

/* Subtiele highlight (combi rand + glow) */
.price-card:hover,
.price-card:focus-within,
.price-card.is-selected {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(142, 219, 31, 0.6);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.25),
    0 14px 42px rgba(142, 219, 31, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.price-card:hover::before,
.price-card:focus-within::before,
.price-card.is-selected::before {
  background: var(--brand-green);
}

.price-card:hover .price-card__price,
.price-card.is-selected .price-card__price {
  color: var(--brand-green);
}

.price-card:hover .price-card__cta,
.price-card.is-selected .price-card__cta {
  border-color: rgba(142, 219, 31, 0.55);
  color: var(--brand-green);
}

@media (max-width: 520px) {
  .price-card__price {
    font-size: 21px;
  }
}

/* Mini cards */
.pricing-mini-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .pricing-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mini-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 16px 16px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.15s ease;
}

.mini-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.mini-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.mini-card__price {
  font-size: 20px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.16s ease;
}

.mini-card__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.mini-card__hint {
  font-weight: 950;
  color: rgba(255, 255, 255, 0.9);
}

.mini-card:hover,
.mini-card:focus-within,
.mini-card.is-selected {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(142, 219, 31, 0.6);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.22),
    0 14px 42px rgba(142, 219, 31, 0.1),
    0 18px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.mini-card:hover::before,
.mini-card:focus-within::before,
.mini-card.is-selected::before {
  background: var(--brand-green);
}

.mini-card:hover .mini-card__price,
.mini-card.is-selected .mini-card__price {
  color: var(--brand-green);
}

/* ========== Parallax Divider ========== */
.parallax-divider {
  position: relative;
  height: 380px;
  margin: 70px 0; /* 👈 KEY */
  overflow: hidden;
}

.parallax-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 12, 14, 0) 60%,
    rgba(11, 12, 14, 0.65) 100%
  );
  pointer-events: none;
}

/* Fade-in actief */
.parallax-divider.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background image */
.parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-image: url("../images/parallax-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(1.05) contrast(1.1);
}

/* Mini brand accent */
.parallax-accent {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-green);
  opacity: 0.9;
}

/* Mobile fix */

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
  }
  .parallax-divider {
    height: 300px;
  }
}

/* ========== Reservatie ========== */
.reservation {
  padding: 10px 0 80px;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.reservation-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

/* Groen accent links */
.reservation-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.15s ease;
}

/* Hover */
.reservation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(142, 219, 31, 0.45);
  box-shadow:
    0 0 0 1px rgba(142, 219, 31, 0.2),
    0 14px 42px rgba(142, 219, 31, 0.12),
    0 18px 50px rgba(0, 0, 0, 0.35);
}

.reservation-card:hover::before {
  background: var(--brand-green);
}

/* Primary proefles kaart (iets sterker) */
.reservation-card--primary h3 {
  color: var(--brand-green);
}

.reservation-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 950;
}

.reservation-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ========== Location (Locatie) - rustiger ========== */
.location {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 520px;
  background: #000; /* fallback */
}

/* Background image */
.location__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/locatie.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.02);
}

/* ? Lichtere, spotlight overlay (minder zwaar, card blijft leesbaar) */
.location__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 28% 55%,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.40) 55%,
      rgba(0, 0, 0, 0.65) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0.34) 100%
    );
}

/* Content */
.location__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

/* ? Info card iets minder dominant */
.location__card {
  position: relative;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(10, 10, 10, 0.48); /* was 0.58 */
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px 20px 18px; /* net iets compacter */
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

/* Left green accent line (iets subtieler) */
.location__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--brand-green);
  opacity: 0.75; /* was 0.9 */
}

/* Headings */
.location__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.20em; /* iets rustiger */
  font-size: 12px;
  font-weight: 800; /* was 900 */
  color: var(--brand-green);
  opacity: 0.9;
}

.location__title {
  margin: 0 0 14px;
  font-weight: 800; /* ok, maar niet zwaarder */
  font-size: clamp(24px, 2.8vw, 32px); /* iets kleiner */
  letter-spacing: 0.2px;
  line-height: 1.08;
}

/* List */
.location__list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px; /* was 12px */
}

.location__list li {
  display: grid;
  gap: 4px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(26, 26, 26, 0.40); /* was 0.55 */
}

/* ? Labels minder vet en iets kleiner */
.location__label {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700; /* was 800 */
  font-size: 11px;  /* was 12px */
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ? Values minder headline, meer body */
.location__value {
  color: rgba(255, 255, 255, 0.78); /* was 0.92 */
  font-weight: 600;                /* was 800 */
  line-height: 1.55;
  font-size: 14px;
}

.location__value a {
  color: rgba(255, 255, 255, 0.80);
  text-decoration: none;
}

.location__value a:hover {
  color: var(--brand-green);
}

/* Actions */
.location__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mini brand accent under the section (zachter) */
.location__accent {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 44px; /* was 52px */
  height: 3px;
  border-radius: 999px;
  background: var(--brand-green);
  opacity: 0.65; /* was 0.9 */
  z-index: 2;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .location {
    padding: 60px 0;
    min-height: 460px;
  }

  .location__bg {
    background-attachment: scroll; /* mobile fix */
    background-position: center;
  }

  .location__content {
    justify-content: center;
  }

  .location__card {
    max-width: 100%;
  }
}


/* ========== Contact (full width) ========== */
.contact {
  padding: 10px 0 90px;
}

.contact-card {
  position: relative;
  width: 100%;
  padding: 26px 26px 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

/* Accent lijn links */
.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--brand-green);
}

/* Grid layout */
.contact-grid--wide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.field--full {
  grid-column: 1 / -1;
}

/* Labels */
.field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

/* Inputs */
.field input,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 14px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.field textarea {
  resize: vertical;
}

/* Focus */
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(142, 219, 31, 0.6);
  box-shadow: 0 0 0 2px rgba(142, 219, 31, 0.18);
  background: rgba(0, 0, 0, 0.6);
}

/* Actions */
.contact-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}



/* Contact feedback (ingebed in card) */
.contact-alert {
  position: relative;
  margin-bottom: 22px;
  padding: 14px 18px 14px 20px;
  border-radius: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);

  /* micro fade in */
  opacity: 0;
  transform: translateY(6px);
  animation: alertIn 0.35s ease forwards;
}

@keyframes alertIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Success */
.contact-alert.alert-success {
  color: #eaffd1;
  border-color: rgba(142, 219, 31, 0.35);
}

/* Error */
.contact-alert.alert-error {
  color: #ffd1d1;
  border-color: rgba(255, 80, 80, 0.35);
}



/* Responsive */
@media (max-width: 900px) {
  .contact-grid--wide {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .contact-actions .btn {
    width: 100%;
  }
}

/* ========== Footer (rustig) ========== */
.site-footer {
  margin-top: 30px;
  padding: 44px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
}

/* Brand */
.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.footer-logo__text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.footer-logo__name {
  font-weight: 900;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.92);
}

.footer-logo__tagline {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

/* Contact lines */
.footer-contact {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.footer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(142, 219, 31, 0.7);
  opacity: 0.7;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.35);
}

/* Links (rustiger dan hoofdnavigatie) */
.footer-link,
.footer-links a {
  font-weight: 600; /* minder vet */
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-link:hover,
.footer-links a:hover {
  color: rgba(142, 219, 31, 0.95);
}

/* Right side */
.footer-nav {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.footer-links a {
  position: relative;
  font-weight: 600; /* lichter dan topnav */
  font-size: 14px; /* niet groter dan header */
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.15s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  transition: width 0.18s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Social icons (subtiel) */
.footer-socials {
  display: inline-flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease,
    background 0.14s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social:hover {
  transform: translateY(-1px);
  border-color: rgba(142, 219, 31, 0.35);
  color: rgba(142, 219, 31, 0.95);
  background: rgba(0, 0, 0, 0.3);
}

/* Bottom */
.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom__muted {
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 860px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    justify-items: start;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

/* ========== Short Hero Section ========== */
.short-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #000;
}

/* Video */
.short-hero__media {
  position: absolute;
  inset: 0;
}

.short-hero__media iframe {
  position: absolute;
  left: 50%;
  top: 45%; /* ⬅️ was 50% */
  width: 100vw;
  height: 177.78vw; /* 9:16 */
  min-width: 56.25vh;
  min-height: 100vh;
  transform: translate(-50%, -35%);
  border: 0;
  pointer-events: none;
}

/* Subtiele overlay */
.short-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Mini brand accent */
.short-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--brand-green);
  opacity: 0.8;
  z-index: 2;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .short-hero {
    height: 60vh;
    min-height: 420px;
  }
}


