/* Google Fonts – moet ALTIJD als eerste regel staan */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@800&display=swap');

/* ═══════════════════════════════════════════════
   HEADER – Liquid Glass Island
════════════════════════════════════════════════ */
.mf-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.mf-island {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 20px 10px 14px;
  border-radius: 999px;

  /* Liquid glass effect */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);

  transition: background .3s ease, box-shadow .3s ease;
}

.mf-island:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

/* Logo */
.mf-island-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mf-island-logo img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* Nav links */
.mf-island-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.mf-island-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
  font-family: var(--font-body);
}

.mf-island-nav a:hover {
  background: rgba(104, 204, 255, 0.15);
  color: var(--accent);
}

/* Actions: cart + burger */
.mf-island-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mf-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: background .2s, color .2s;
}

.mf-cart:hover {
  background: rgba(104, 204, 255, 0.15);
  color: var(--accent);
}

.mf-cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: #000;
  font-size: 9px;
  font-weight: 700;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Burger – alleen mobiel zichtbaar */
.mf-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background .2s;
}

.mf-burger:hover { background: rgba(104, 204, 255, 0.15); }

.mf-burger span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mf-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 1100;
  padding: 80px 32px 40px;
  transition: right .35s cubic-bezier(.22,.61,.36,1);
  display: flex;
  flex-direction: column;
}

.mf-mobile-menu.open { right: 0; }

.mf-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.mf-mobile-close:hover { background: rgba(255,255,255,0.1); }

.mf-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mf-mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  font-family: var(--font-head);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color .2s, padding-left .2s;
}

.mf-mobile-menu a:hover { color: var(--accent); padding-left: 8px; }

.mf-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.mf-mobile-overlay.open { opacity: 1; pointer-events: all; }

/* Responsive */
@media (max-width: 768px) {
  .mf-island-nav { display: none; }
  .mf-burger { display: flex; }
  .mf-island { gap: 16px; }
}


/* ═══════════════════════════════════════════════
   FONTS
════════════════════════════════════════════════ */
@font-face {
  font-family: 'TerminaDemi';
  src: url('TerminaTest-Demi.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #191919;
  --accent:   #68ccff;
  --white:    #ffffff;
  --muted:    #aaaaaa;
  --card-bg:  #242424;
  --font-head: 'TerminaDemi', 'Montserrat', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

/* Alle koppen altijd Termina Demi */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
}

body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SHARED LAYOUT
════════════════════════════════════════════════ */
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.mf-hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mf-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.4);
}

.mf-overlay {
  position: absolute;
  inset: 0;
}

.mf-center {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mf-quote {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-style: italic;
  color: #151515;
  line-height: 1.55;
  font-weight: 800;
  max-width: 520px;
  margin-bottom: 28px;
  margin-top: -120px;
}

.mf-question {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 28px;
  margin-top: 200px;
}

.mf-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.mf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: clamp(.85rem, 2.5vw, 1rem);
  font-weight: 700;
  letter-spacing: .03em;
  text-decoration: none;
  min-width: 170px;
  flex: 1;
  max-width: 220px;
  transition: transform .15s ease, opacity .15s ease;
}

.mf-btn:hover { transform: translateY(-2px); opacity: .92; }
.mf-btn-body { background: var(--white); color: #111; }
.mf-btn-mind { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }

@media (max-width: 767px) {
  .mf-hero { min-height: 100svh; height: 100svh; }
  .mf-hero-img { object-position: center top; }
}

/* ═══════════════════════════════════════════════
   EVENEMENT
════════════════════════════════════════════════ */
.event-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.event-content h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--white);
}

.event-content p {
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--muted);
}

.event-countdown {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.event-countdown small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
  color: var(--white);
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
}

.event-location p { margin: 0; color: var(--muted); }

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

.btn {
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.btn.primary { background: var(--accent); color: var(--white); }
.btn.secondary { border: 2px solid var(--accent); color: var(--white); }
.btn:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .event-block {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 24px;
  }
  .event-content { display: flex; flex-direction: column; align-items: center; }
  .event-meta { flex-direction: column; gap: 12px; }
  .event-buttons { justify-content: center; }
  .event-countdown { font-size: 2.4rem; }
  .event-content h2 { font-size: 1.55rem; text-transform: none; line-height: 1.2; }
}

/* ═══════════════════════════════════════════════
   ABOUT / CHOICE GRID
════════════════════════════════════════════════ */
.mf-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mf-choice-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--accent);
  text-decoration: none;
}

.mf-choice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.mf-choice-card:hover img { transform: scale(1.06); }

.mf-choice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.2));
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mf-choice-top { color: #9edfff; font-weight: 700; font-size: 14px; }

.mf-choice-overlay h2 {
  font-family: var(--font-head);
  margin: 4px 0 0;
  color: var(--white);
  font-size: 34px;
}

@media (max-width: 900px) {
  .mf-choice-grid { grid-template-columns: 1fr; }
  .mf-choice-card { min-height: 300px; }
  .mf-choice-overlay { justify-content: center; text-align: center; }
  .mf-choice-overlay h2 { font-size: 1.8rem; line-height: 1.2; width: 100%; }
}

/* ═══════════════════════════════════════════════
   INSTAGRAM FEED
════════════════════════════════════════════════ */
.ig-feed { width: 100%; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ig-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ig-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.ig-logo { display: flex; align-items: center; gap: 6px; }
.ig-logo svg { width: 18px; height: 18px; flex-shrink: 0; }
.ig-logo-name { font-size: 11px; font-weight: 700; color: var(--white); letter-spacing: .02em; }
.ig-date { font-size: 10px; color: #888; letter-spacing: .03em; }

.ig-carousel { position: relative; overflow: hidden; background: #000; width: 100%; }

.ig-track {
  display: flex;
  height: 100%;
  transition: transform .35s ease;
}

.ig-track img {
  min-width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.ig-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.55);
  color: var(--white);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .2s;
}

.ig-btn:hover { background: rgba(0,0,0,.82); }
.ig-prev { left: 8px; }
.ig-next { right: 8px; }

.ig-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 3;
}

.ig-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); transition: background .2s; }
.ig-dot.on { background: var(--white); }

.ig-card-footer {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ig-first-line {
  font-size: 12px;
  color: #ddd;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ig-full-caption {
  font-size: 11px;
  color: #aaa;
  line-height: 1.55;
  display: none;
  margin-top: 2px;
  white-space: pre-line;
}

.ig-full-caption.open { display: block; }

.ig-toggle {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  letter-spacing: .04em;
  text-align: left;
  margin-top: 2px;
}

.ig-insta-link {
  font-size: 10px;
  color: #555;
  text-decoration: none;
  margin-top: auto;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.ig-insta-link:hover { color: #aaa; }
.ig-insta-link svg { width: 14px; height: 14px; }

@media (max-width: 700px) { .ig-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .ig-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   PRODUCT SLIDER
════════════════════════════════════════════════ */
.mf-slider-wrap {
  padding-top: 60px;
  padding-bottom: 80px;
}

.reveal-title {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.mf-slider {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.mf-arrow {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.mf-arrow:hover { background: var(--accent); color: var(--bg); }
.mf-arrow:disabled { opacity: .35; cursor: not-allowed; }

.mf-track {
  position: relative;
  height: 560px;
  overflow: hidden;
  perspective: 1000px;
}

.mf-product {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  aspect-ratio: 3 / 5;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--accent);
  background: rgba(255,255,255,.03);
  text-decoration: none;
  color: inherit;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition:
    transform .65s cubic-bezier(.22,.61,.36,1),
    opacity .65s cubic-bezier(.22,.61,.36,1),
    filter .65s cubic-bezier(.22,.61,.36,1);
}

.mf-track.no-anim .mf-product { transition: none !important; }

.mf-product img {
  width: 100%;
  height: calc(100% - 52px);
  object-fit: cover;
  display: block;
}

.mf-product h4 {
  margin: 0;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  font-family: var(--font-head);
  font-size: 15px;
  text-align: center;
  padding: 0 10px;
  background: rgba(0,0,0,.2);
}

.mf-left  { transform: translate3d(-185%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); z-index: 1; }
.mf-active { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 3; }
.mf-right { transform: translate3d(85%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); z-index: 1; }

.mf-track.anim-next .mf-left   { transform: translate3d(-285%, -50%, 0) scale(.62); opacity: 0; filter: blur(2px); }
.mf-track.anim-next .mf-active { transform: translate3d(-185%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); }
.mf-track.anim-next .mf-right  { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 4; }

.mf-track.anim-prev .mf-right  { transform: translate3d(185%, -50%, 0) scale(.62); opacity: 0; filter: blur(2px); }
.mf-track.anim-prev .mf-active { transform: translate3d(85%, -50%, 0) scale(.78); opacity: .25; filter: blur(1px); }
.mf-track.anim-prev .mf-left   { transform: translate3d(-50%, -50%, 0) scale(1); opacity: 1; filter: blur(0); z-index: 4; }

@media (max-width: 767px) {
  .mf-slider-wrap { padding: 0 12px 60px; }
  .reveal-title { font-size: 1.3rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mf-track { height: 360px; }
  .mf-product { width: 170px; height: 320px; border-radius: 14px; }
  .mf-product img { height: calc(100% - 44px); }
  .mf-left  { transform: translate3d(-215%, -50%, 0) scale(.7); }
  .mf-right { transform: translate3d(125%, -50%, 0) scale(.7); }
  .mf-track.anim-next .mf-active { transform: translate3d(-215%, -50%, 0) scale(.7); }
  .mf-track.anim-prev .mf-active { transform: translate3d(125%, -50%, 0) scale(.7); }
}

/* ═══════════════════════════════════════════════
   NIEUWSBRIEF
════════════════════════════════════════════════ */
.newsletter {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: 20px;
}

.newsletter h2 {
  font-family: var(--font-head);
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.6rem;
}

.newsletter p {
  margin-bottom: 24px;
  color: #555;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.newsletter-form input {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #00ABFF;
  background-color: var(--white);
  opacity: 1;
  font-family: var(--font-body);
}

.newsletter-form input:focus {
  outline: none;
  border-color: #00ABFF;
}

.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #00ABFF;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset;
}

.newsletter-form button {
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .15s ease, opacity .15s ease;
}

.newsletter-form button:hover { transform: translateY(-2px); opacity: .9; }

.newsletter-image {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.newsletter-image img { width: 100%; height: 100%; object-fit: cover; }

.newsletter-feedback {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.newsletter-feedback.is-success {
  display: block;
  background: rgba(0,171,255,0.12);
  border: 1px solid rgba(0,171,255,0.45);
  color: #007fc0;
}

.newsletter-feedback.is-error {
  display: block;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.35);
  color: #b91c1c;
}

.newsletter-form .hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .newsletter { grid-template-columns: 1fr; padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════
   TRAIN JE BODY – HERO
════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 90vh;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: var(--white);
}

.hero-text h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 10px;
}

.hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  color: var(--white);
  margin: 0;
}

/* MARQUEE */
.marquee-section {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.marquee-mask {
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  will-change: transform;
  white-space: nowrap;
}

.marquee-item {
  flex: 0 0 auto;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
}

.marquee-quote {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  font-weight: 500;
  color: #111;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .hero-text {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
  }
  .marquee-item { padding: 16px 24px; min-width: 130vw; }
  .marquee-quote { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════
   PRODUCT CATEGORIEËN
════════════════════════════════════════════════ */
.product-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.product-categories h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.product-categories p {
  max-width: 600px;
  margin-bottom: 48px;
  color: var(--muted);
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  height: 320px;
  padding: 32px;
  background: #f6f7f8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
}

.category-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.category-card span {
  font-size: 0.90rem;
  background-color: var(--white);
  color: #111;
  padding: 5px 10px;
  display: block;
  width: fit-content;
}

.category-card.clickable {
  background-image: url('https://mightyfit.nl/wp-content/uploads/2026/04/DSC02443-scaled.jpg');
  background-size: cover;
  background-position: center;
}

.category-card.clickable:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.category-card.disabledtraining {
  opacity: 0.4;
  cursor: default;
  background-image: url('https://mightyfit.nl/wp-content/uploads/2026/02/DSC02114-scaled.jpg');
  background-size: cover;
  background-position: center;
}

.category-card.disabledkleding {
  opacity: 0.4;
  cursor: default;
  background-image: url('https://mightyfit.nl/wp-content/uploads/2026/04/DSC02618.jpg');
  background-size: cover;
  background-position: center;
}

.category-card.disabledtraining::after,
.category-card.disabledkleding::after {
  content: "Binnenkort beschikbaar";
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  background: var(--accent);
  color: var(--white);
  padding: 6px 10px;
}

@media (max-width: 900px) {
  .category-grid { grid-template-columns: 1fr; }
  .product-categories { padding: 60px 24px; }
}

/* ═══════════════════════════════════════════════
   WAAROM ZOU IK – REVEAL SECTIE
════════════════════════════════════════════════ */
.reveal-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.reveal-title {
  grid-column: 1 / -1;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  overflow: hidden;
  color: var(--white);
}

.reveal-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-title span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-image {
  position: sticky;
  top: 120px;
  height: 70vh;
}

.reveal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.reveal-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.reveal-item {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  color: var(--muted);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item.final {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

@media (max-width: 900px) {
  .reveal-section { grid-template-columns: 1fr; gap: 32px; }
  .reveal-image { position: relative; height: 300px; top: 0; }
}

/* ═══════════════════════════════════════════════
   BOOK HERO
════════════════════════════════════════════════ */
.book-hero {
  position: relative;
  padding: 6vw 5vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.book-hero__media,
.book-hero__copy { position: relative; z-index: 1; }

.book-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  animation: float 6s ease-in-out infinite both;
}

.book-hero__glow {
  position: absolute;
  inset: auto;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(104, 204, 255, 0.35), transparent 70%);
  filter: blur(16px);
  z-index: 0;
}

.book-hero__media img {
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  transform: translateX(-10%);
  animation: slide-in 1.2s ease-out forwards;
}

.book-hero__copy { color: #f4f4f4; animation: fade-up 1s ease-out forwards; }

.book-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.6);
}

.book-hero__copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.book-hero__copy p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.85);
  max-width: 28rem;
}

.book-hero__cta {
  background: var(--accent);
  color: var(--white);
  padding: 14px 26px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.book-hero__cta:hover { transform: translateY(-2px); }

@keyframes slide-in {
  from { opacity: 0; transform: translate3d(-30px, 30px, 0) scale(0.9); }
  to   { opacity: 1; transform: translate3d(-10%, 0, 0) scale(1); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@media (max-width: 720px) {
  .book-hero {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .book-hero__media { order: 2; }
  .book-hero__media img { width: 100%; transform: translateX(0); }
  .book-hero__copy { order: 1; align-items: center; justify-content: center; display: flex; flex-direction: column; }
  .book-hero__copy p { max-width: 100%; }
  .book-hero__cta { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s ease, transform .3s ease;
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}

.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 6px;
}

.review-excerpt {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.4;
  margin: 0;
}

.review-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--white);
  margin: 0;
}

.review-title {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0;
  font-weight: 600;
}

.review-body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.review-date {
  font-size: 0.8rem;
  color: #555;
  margin: 0;
  margin-top: auto;
  padding-top: 8px;
}

.review-link {
  color: var(--accent);
  text-decoration: none;
  transition: opacity .2s;
}

.review-link:hover { opacity: 0.8; }

/* Active nav link */
.mf-island-nav a.active {
  background: rgba(104, 204, 255, 0.15);
  color: var(--accent);
}

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

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

/* ═══════════════════════════════════════════════
   COMMUNITY HERO – sticky scroll
════════════════════════════════════════════════ */
#cp-root {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#cp-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}

#cp-title {
  position: absolute;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  will-change: opacity, transform;
}

#cp-hero-img {
  position: absolute;
  z-index: 1;
  width: 35%;
  max-width: 420px;
  min-width: 180px;
  object-fit: cover;
  bottom: 47%;
  left: 50%;
  transform: translateX(-50%);
  will-change: opacity, transform;
  pointer-events: none;
}

#cp-card {
  position: absolute;
  z-index: 3;
  width: 88%;
  max-width: 860px;
  display: flex;
  align-items: center;
  gap: 48px;
  opacity: 0;
  will-change: opacity, transform;
}

#cp-card-img {
  width: 42%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

#cp-card-text { color: var(--white); flex: 1; }

#cp-card-tag {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}

#cp-card-heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}

#cp-card-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
}

#cp-card-btn {
  display: inline-block;
  padding: 13px 32px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background .2s, color .2s;
}

#cp-card-btn:hover { background: rgba(255,255,255,0.85); color: #111; }

@media (max-width: 640px) {
  #cp-card { flex-direction: column; gap: 14px; width: 92%; padding: 20px 0 32px; }
  #cp-card-img { width: 100%; max-height: 38vh; aspect-ratio: unset; }
  #cp-card-text { text-align: center; }
  #cp-hero-img { width: 55%; max-width: none; bottom: 49%; }
  #cp-card-heading { font-size: clamp(1.2rem, 5.5vw, 1.8rem); margin-bottom: 10px; }
  #cp-card-body { font-size: 0.85rem; margin-bottom: 18px; line-height: 1.6; }
  #cp-title { font-size: clamp(2.6rem, 10vw, 10rem); }
}

/* ═══════════════════════════════════════════════
   EVENEMENTEN SLIDER
════════════════════════════════════════════════ */
.ev-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 24px;
}

.ev-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
  padding: 0 5vw;
}

.ev-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #444;
  background: var(--card-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.ev-arrow:hover { border-color: var(--accent); color: var(--accent); }
.ev-arrow:disabled { opacity: .3; cursor: default; }

.ev-track-wrap { overflow: hidden; cursor: grab; user-select: none; }
.ev-track-wrap.dragging { cursor: grabbing; }

.ev-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 8px 5vw;
}

.ev-card {
  flex: 0 0 calc((100% - 48px) / 2.4);
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color .3s;
}

.ev-card:hover { border-color: var(--accent); }

.ev-card--past { opacity: 0.6; }

.ev-img-wrap { position: relative; }
.ev-img-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.ev-card--past .ev-img-wrap img { filter: grayscale(100%) brightness(.7); }

.ev-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.55);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.ev-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.ev-desc { color: var(--muted); line-height: 1.6; font-size: .95rem; margin: 0; }
.ev-meta { display: flex; flex-direction: column; gap: 5px; font-size: .88rem; color: #666; }
.ev-meta span { color: var(--muted); }
.ev-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

.ev-btn {
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease;
  display: block;
}

.ev-btn:hover { transform: translateY(-2px); }
.ev-countdown { font-size: .9rem; color: var(--accent); text-align: center; font-weight: 500; }

@media (max-width: 600px) {
  .ev-card { flex: 0 0 80%; }
  .ev-img-wrap img { height: 200px; }
}

/* ═══════════════════════════════════════════════
   SAMENWERKING BLOK
════════════════════════════════════════════════ */
.mf-collab-block {
  background: var(--card-bg);
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 60px 48px;
  overflow: hidden;
  position: relative;
}

.mf-collab-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mf-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}

.mf-collab-block h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 12px;
  line-height: 1.15;
  color: var(--white);
}

.mf-collab-block p {
  font-size: 17px;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.mf-collab-block ul {
  margin: 0 0 26px;
  padding-left: 18px;
  color: #f1f5f9;
  line-height: 1.8;
}

.mf-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  transition: transform .2s ease, opacity .2s ease;
}

.mf-btn:hover { transform: translateY(-2px); opacity: .9; }

.mf-reveal {
  opacity: 0;
  transform: translateY(28px) scale(.98);
  transition: opacity .7s ease, transform .7s ease;
}

.mf-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .mf-reveal, .mf-reveal.is-visible { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════
   CONTACT FORMULIER
════════════════════════════════════════════════ */
.contact-anchor { scroll-margin-top: 120px; }

.contact-section {
  max-width: 800px;
  margin: 0 auto;
}

.contact-title {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
  color: var(--white);
}

.contact-feedback {
  display: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
}

.contact-feedback.is-success {
  display: block;
  background: rgba(0,171,255,0.12);
  border: 1px solid rgba(0,171,255,0.45);
  color: #007fc0;
}

.contact-feedback.is-error {
  display: block;
  background: rgba(239,68,68,0.10);
  border: 1px solid rgba(239,68,68,0.35);
  color: #b91c1c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #333;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--card-bg);
  color: var(--white);
  font-family: var(--font-body);
  transition: border .3s ease, box-shadow .3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(104,204,255,0.1);
}

.contact-btn {
  padding: 16px;
  border: none;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: transform .2s ease, opacity .2s ease;
}

.contact-btn:hover { transform: translateY(-2px); opacity: .9; }

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .mf-collab-block { padding: 40px 24px; }
}

/* ═══════════════════════════════════════════════
   OVER MIJ
════════════════════════════════════════════════ */
.mf-about-mom {
  padding: 120px 20px 70px;
}

.mf-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.mf-title {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.08;
  color: var(--white);
}

.mf-intro {
  margin: 0 0 40px;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.mf-intro strong { color: var(--white); }

.mf-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 60px;
}

.mf-photo {
  border: 1px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
}

.mf-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.mf-quote {
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  background: var(--card-bg);
}

.mf-quote p {
  margin: 0;
  font-size: 22px;
  line-height: 1.5;
  color: #e2e8f0;
  font-weight: 600;
  font-style: italic;
}

/* Timeline */
.mf-timeline-section {
  margin-bottom: 60px;
}

.mf-subtitle {
  margin: 0 0 28px;
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--white);
}

.mf-timeline {
  border-left: 3px solid rgba(104, 204, 255, 0.35);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mf-time-item {
  position: relative;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--card-bg);
  transition: border-color .3s, transform .3s;
}

.mf-time-item:hover {
  border-color: rgba(104,204,255,0.8);
  transform: translateX(4px);
}

.mf-time-item::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(104, 204, 255, 0.15);
}

.mf-time-item span {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mf-time-item p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 15px;
}

/* Fotogalerij */
.mf-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.mf-gallery .mf-photo { min-height: 260px; }

/* CTA blok */
.mf-cta {
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  background: var(--card-bg);
  margin-bottom: 0;
}

.mf-cta h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 30px;
}

.mf-cta p { margin: 0 0 20px; color: #cbd5e1; }

/* Reveal animatie (aparte class om conflict te vermijden) */
.mf-about-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.mf-about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mf-about-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

@media (max-width: 900px) {
  .mf-hero-grid { grid-template-columns: 1fr; }
  .mf-gallery { grid-template-columns: 1fr; }
  .mf-quote p { font-size: 18px; }
  .mf-cta { padding: 28px 20px; }
}
