/*
Theme Name: PFC Child
Template: generatepress
Version: 5.0
Description: Premium Fit Coaching — definitief systeem — dynamiek update
*/

/* =============================================
   TOKENS
   ============================================= */
:root {
  --pfc-bg:           #0B0B0B;
  --pfc-surface:      #151515;
  --pfc-surface-2:    #1E1E1E;
  --pfc-text:         #F5F5F5;
  --pfc-text-muted:   #a0a0a0;
  --pfc-brand:        #800020;
  --pfc-brand-light:  #a8324e;
  --pfc-brand-dark:   #4C1C24;
  --pfc-border:       rgba(245, 245, 245, 0.08);
  --pfc-border-light: rgba(245, 245, 245, 0.14);
  --pfc-glow:         rgba(128, 0, 32, 0.12);

  --pfc-space-xs:  8px;
  --pfc-space-sm:  16px;
  --pfc-space-md:  32px;
  --pfc-space-lg:  64px;
  --pfc-space-xl:  96px;
  --pfc-space-2xl: 128px;

  --pfc-container:        1200px;
  --pfc-container-narrow: 800px;
  --pfc-container-text:   680px;
  --pfc-radius:           12px;
  --pfc-radius-sm:        8px;
}


/* =============================================================
   A. HEADER & NAVIGATIE
   ============================================================= */
.site-header,
.inside-header {
  padding: 12px 0;
}

.inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-branding .site-title,
.site-branding .site-description {
  display: none;
}

.site-logo img,
.custom-logo {
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
}

.pfc-nav-logo,
#sticky-navigation .pfc-nav-logo,
.navigation-branding .pfc-nav-logo {
  display: none;
}

.main-navigation {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.main-navigation .inside-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-navigation .main-nav > ul > li > a {
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.1;
  opacity: 0.95;
  position: relative;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.main-navigation .main-nav > ul > li > a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.main-navigation .main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.main-navigation .main-nav > ul > li > a:hover::after {
  transform: scaleX(1);
}

.main-navigation .main-nav > ul > li.current-menu-item > a {
  opacity: 1;
}

.main-navigation .main-nav > ul > li.current-menu-item > a::after {
  transform: scaleX(1);
  background: rgba(255, 255, 255, 0.75);
}

.main-navigation .main-nav > ul > li.menu-item--cta > a::after {
  display: none;
}

.main-navigation .main-nav > ul > li.menu-item--cta > a {
  background: var(--pfc-brand);
  color: #fff;
  border-radius: 16px;
  padding: 10px 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.main-navigation .main-nav > ul > li.menu-item--cta > a:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.main-navigation.is_stuck,
#sticky-navigation.is_stuck,
.navigation-stick .main-navigation {
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}

.main-navigation.is_stuck .main-nav > ul > li > a::after,
#sticky-navigation.is_stuck .main-nav > ul > li > a::after {
  background: rgba(255, 255, 255, 0.45);
}


/* =============================================================
   B. SECTION SPACING
   ============================================================= */
.pfc-section {
  padding: 56px var(--pfc-space-md);
}

.pfc-section--tight {
  padding: 32px var(--pfc-space-md);
}

.pfc-section--hero {
  padding: 80px var(--pfc-space-md) 56px;
}


/* =============================================================
   C. CONTAINERS
   ============================================================= */
.pfc-container {
  max-width: var(--pfc-container);
  margin-left: auto;
  margin-right: auto;
}

.pfc-container--narrow {
  max-width: var(--pfc-container-narrow);
  margin-left: auto;
  margin-right: auto;
}

.pfc-container--text {
  max-width: var(--pfc-container-text);
  margin-left: auto;
  margin-right: auto;
}


/* =============================================================
   D. PAGE HERO (alle subpagina's)
   ============================================================= */
.pfc-page-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 20px;
}

.pfc-page-hero h1 {
  margin-bottom: 12px;
}

.pfc-page-hero p,
.pfc-page-hero h2,
.pfc-page-hero h3 {
  color: var(--pfc-text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.pfc-page-hero h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pfc-page-hero::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--pfc-border);
  margin: 24px auto 0;
  max-width: 520px;
}


/* =============================================================
   E. PROSE CONTENT
   ============================================================= */
.pfc-prose {
  max-width: var(--pfc-container-text);
}

.pfc-prose h2 {
  margin-top: var(--pfc-space-lg);
  margin-bottom: var(--pfc-space-sm);
  padding-left: 16px;
  border-left: 3px solid var(--pfc-brand);
}

.pfc-prose h3 {
  margin-top: var(--pfc-space-md);
  margin-bottom: var(--pfc-space-xs);
}

.pfc-prose p {
  margin-bottom: 1.4em;
  color: var(--pfc-text-muted);
}

.pfc-prose strong {
  color: var(--pfc-text);
}

.pfc-pullquote {
  color: var(--pfc-text-muted);
  font-style: italic;
  display: block;
  border-left: 2px solid var(--pfc-brand);
  padding-left: var(--pfc-space-sm);
  margin: var(--pfc-space-md) 0;
}

.pfc-prose ul {
  padding-left: 1.5em;
  margin-bottom: 1.4em;
  color: var(--pfc-text-muted);
}

.pfc-prose li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.pfc-prose li strong {
  color: var(--pfc-text);
}

.pfc-prose ol {
  list-style: none;
  counter-reset: pfc-counter;
  padding-left: 0;
  margin-bottom: 1.4em;
  color: var(--pfc-text-muted);
}

.pfc-prose ol li {
  counter-increment: pfc-counter;
  padding-left: 2em;
  position: relative;
  margin-bottom: 8px;
}

.pfc-prose ol li::before {
  content: counter(pfc-counter) ".";
  position: absolute;
  left: 0;
  color: var(--pfc-brand);
  font-weight: 600;
}


/* =============================================================
   F. HOME HERO (split layout)
   ============================================================= */
.hero-left-inner {
  text-align: center;
}

.hero-left-inner p {
  margin-left: auto;
  margin-right: auto;
}

.hero-left-inner ul {
  display: inline-block;
  text-align: left;
  margin: 18px auto 0;
  padding-left: 0;
  list-style-position: inside;
}

.hero-left-inner li {
  margin: 6px 0;
}

.hero-left-inner .gb-buttons,
.hero-left-inner .wp-block-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}


/* =============================================================
   G. HOME CARDS (image-backed)
   ============================================================= */
.pfc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--pfc-radius);
  background: var(--pfc-surface);
}

.pfc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.18s ease;
  pointer-events: none;
  z-index: 1;
}

.pfc-card:hover::before {
  background: rgba(0, 0, 0, 0.22);
}

.pfc-card > * {
  position: relative;
  z-index: 2;
}


/* =============================================================
   H. BUTTONS
   ============================================================= */
.wp-block-button__link,
.gb-button,
a.gb-button,
a.pfc-btn-outline {
  text-decoration: none;
  box-shadow: none;
}

/* Filled (bordeaux) */
.pfc-btn,
.pfc-btn.gb-button,
.wp-block-button__link.pfc-btn {
  background: var(--pfc-brand);
  color: var(--pfc-text);
  border: 0;
  border-radius: 16px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: background 0.15s ease;
}

.pfc-btn:hover,
.pfc-btn:focus {
  background: var(--pfc-brand-dark);
  color: var(--pfc-text);
}

/* Outline */
.pfc-btn-outline {
  background: transparent;
  color: var(--pfc-text);
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  transition: border-color 0.15s ease;
  cursor: pointer;
}

.pfc-btn-outline:hover {
  border-color: rgba(245, 245, 245, 0.40);
  background: transparent;
  color: var(--pfc-text);
}

/* WP Button block defaults */
.wp-block-button__link,
.gb-button {
  border-radius: var(--pfc-radius);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--pfc-brand);
  color: var(--pfc-text);
}

.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--pfc-brand-dark);
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--pfc-text);
  border: 1.5px solid var(--pfc-border);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: var(--pfc-text);
}


/* =============================================================
   I. CONTACT CARDS
   ============================================================= */
.pfc-contact-card {
  background: var(--pfc-surface);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius);
  padding: var(--pfc-space-md) var(--pfc-space-md) 28px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pfc-contact-card:hover {
  border-color: var(--pfc-border-light);
  transform: translateY(-2px);
}

.pfc-contact-card h3 {
  margin-bottom: 8px;
}

.pfc-contact-card p {
  color: var(--pfc-text-muted);
  font-size: 15px;
  margin-bottom: var(--pfc-space-sm);
  flex-grow: 1;
}

.pfc-contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pfc-surface-2);
  border: 1px solid var(--pfc-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--pfc-space-sm);
  color: var(--pfc-text);
}

.pfc-contact-icon svg {
  width: 24px;
  height: 24px;
}


/* =============================================================
   J. LOCATION CARDS
   ============================================================= */
.pfc-location-card {
  background: var(--pfc-surface);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius);
  padding: var(--pfc-space-md);
  text-align: center;
}

.pfc-location-card h3 {
  margin-bottom: var(--pfc-space-sm);
}

.pfc-location-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--pfc-space-sm);
}

.pfc-location-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--pfc-border);
  color: var(--pfc-text-muted);
  font-size: 15px;
}

.pfc-location-card li:last-child {
  border-bottom: 0;
}


/* =============================================================
   K. BADGE
   ============================================================= */
.pfc-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pfc-brand);
  border: 1px solid var(--pfc-brand);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: var(--pfc-space-sm);
}


/* =============================================================
   L. SPLIT COLUMNS
   ============================================================= */
.pfc-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pfc-space-md);
}

.pfc-split__col {
  background: var(--pfc-bg);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-sm);
  padding: 24px;
}

.pfc-split__col h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.pfc-split__col ul {
  padding-left: 1.2em;
  color: var(--pfc-text-muted);
}

.pfc-split__col li {
  margin-bottom: 6px;
  font-size: 14px;
}

.pfc-split__col p {
  color: var(--pfc-text-muted);
  font-size: 14px;
  line-height: 1.6;
}


/* =============================================================
   M. VALUES LIST
   ============================================================= */
.pfc-values ul {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.pfc-values li {
  padding: 14px 0;
  border-bottom: 1px solid var(--pfc-border);
  color: var(--pfc-text);
  font-size: 17px;
  font-weight: 500;
}

.pfc-values li:last-child {
  border-bottom: 0;
}


/* =============================================================
   N. COPYBLOCK
   ============================================================= */
.pfc-copyblock {
  background: var(--pfc-surface);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius-sm);
  padding: var(--pfc-space-md);
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.9;
  color: var(--pfc-text-muted);
  position: relative;
}

.pfc-copyblock::before {
  content: "Kopieer \2193";
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pfc-brand);
}


/* =============================================================
   O. STEP CARDS
   ============================================================= */
.pfc-step {
  padding: 22px;
  background: var(--pfc-surface);
  border: 1px solid var(--pfc-border);
  border-radius: var(--pfc-radius);
}

.pfc-step h3 {
  margin: 0 0 6px;
}

.pfc-step p {
  margin: 0.35em 0 0;
  color: var(--pfc-text-muted);
}

.pfc-step-num {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pfc-brand);
  margin-bottom: 10px;
}


/* =============================================================
   P. GOOGLE MAPS
   ============================================================= */
.pfc-map-wrapper {
  border-radius: var(--pfc-radius);
  overflow: hidden;
  border: 1px solid var(--pfc-border);
  max-width: var(--pfc-container-narrow);
  margin: 0 auto;
}

.pfc-map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(1) invert(0.92) contrast(0.85);
  transition: filter 0.3s ease;
}

.pfc-map-wrapper:hover iframe {
  filter: grayscale(0.3) invert(0.92) contrast(0.9);
}


/* =============================================================
   Q. NOTE
   ============================================================= */
.pfc-note {
  border-left: 2px solid var(--pfc-brand);
  padding-left: 14px;
  color: var(--pfc-text-muted);
  font-style: italic;
}


/* =============================================================
   R. UTILITIES & FOOTER
   ============================================================= */
.pfc-surface {
  background: var(--pfc-surface);
  border-top: 1px solid var(--pfc-border);
  border-bottom: 1px solid var(--pfc-border);
}

.pfc-divider {
  border: 0;
  border-top: 1px solid var(--pfc-border);
  margin: 0;
}

.pfc-text-muted {
  color: var(--pfc-text-muted);
}

.pfc-text-center {
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--pfc-border);
}


/* =============================================================
   S. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  :root {
    --pfc-space-xl: 72px;
    --pfc-space-2xl: 96px;
  }
}

@media (max-width: 768px) {
  :root {
    --pfc-space-xl: 56px;
    --pfc-space-2xl: 72px;
    --pfc-space-lg: 48px;
  }

  .site-header,
  .inside-header {
    padding: 10px 0;
  }

  .site-logo img,
  .custom-logo {
    max-height: 44px;
  }

  .main-navigation .main-nav > ul > li > a {
    padding: 12px 14px;
    font-size: 15px;
  }

  .main-navigation .main-nav > ul > li.menu-item--cta > a {
    border-radius: 14px;
    padding: 10px 14px;
  }

  .hero-left-inner ul {
    margin-top: 14px;
  }

  .pfc-split {
    grid-template-columns: 1fr;
  }

  .pfc-page-hero {
    padding: 40px 20px 16px;
  }
}

/* =============================================================
   S2. MOBILE — TELEFOON SPECIFIEK (max 480px)
   ============================================================= */
@media (max-width: 480px) {
  /* Kleinere section padding */
  .pfc-section {
    padding: 40px 16px;
  }
  
  .pfc-section--tight {
    padding: 24px 16px;
  }

  /* Hero: tekst grootte */
  .pfc-page-hero {
    padding: 32px 16px 12px;
  }
  
  .pfc-page-hero h1 {
    font-size: 28px;
  }
  
  .pfc-page-hero p,
  .pfc-page-hero h2,
  .pfc-page-hero h3 {
    font-size: 15px;
  }
  
  .pfc-page-hero::after {
    margin: 16px auto 0;
  }

  /* Prose: betere leesbaarheid */
  .pfc-prose h2 {
    font-size: 22px;
    padding-left: 12px;
  }
  
  .pfc-prose p {
    font-size: 15px;
    line-height: 1.65;
  }

  /* Buttons: full width op mobiel */
  .wp-block-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .wp-block-button {
    width: 100%;
  }
  
  .wp-block-button__link {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Contact cards: 1 kolom */
  .pfc-contact-card {
    padding: 24px 20px;
  }

  /* Split cols: meer padding */
  .pfc-split__col {
    padding: 20px 16px;
  }
  
  .pfc-split__col h3 {
    font-size: 16px;
  }
  
  .pfc-split__col li {
    font-size: 13px;
  }

  /* Step cards: kleiner */
  .pfc-step {
    padding: 18px 16px;
  }

  /* Stats strip: compacter */
  .pfc-stats__number {
    font-size: 26px;
  }
  
  .pfc-stats__label {
    font-size: 11px;
  }

  /* CTA: kleiner heading */
  .pfc-section.pfc-text-center h2 {
    font-size: 26px;
  }

  /* Pullquote: kleiner */
  .pfc-pullquote {
    font-size: 14px;
    padding-left: 12px;
  }

  /* Values list */
  .pfc-values li {
    font-size: 15px;
    padding: 12px 0;
  }

  /* Copyblock */
  .pfc-copyblock {
    font-size: 12px;
    padding: 20px 16px;
    line-height: 1.8;
  }
  
  .pfc-copyblock::before {
    font-size: 10px;
  }

  /* Location cards */
  .pfc-location-card {
    padding: 24px 20px;
  }

  /* Map kleiner */
  .pfc-map-wrapper iframe {
    height: 280px;
  }

  /* Footer */
  .site-footer {
    font-size: 12px;
    padding: 20px 16px;
  }
  
  /* CTA button glow: minder op mobiel (performance) */
  .pfc-section.pfc-text-center .wp-block-button__link,
  .pfc-section.pfc-text-center .pfc-btn {
    box-shadow: 0 2px 12px var(--pfc-glow);
  }
  
  /* Scroll animations: sneller op mobiel */
  .pfc-section,
  .pfc-section--tight,
  .pfc-page-hero {
    animation-duration: 0.4s;
  }
}

/* =============================================================
   T. SPLIT COLUMN VARIANTS (Past wel / Past niet)
   ============================================================= */
.pfc-split__col--yes {
  border-top: 2px solid #2d6a4f;
}

.pfc-split__col--no {
  border-top: 2px solid var(--pfc-brand);
}


/* =============================================================
   U. STATS STRIP (cijfers/feiten)
   ============================================================= */
.pfc-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pfc-stats__item {
  flex: 1;
  padding: 32px 24px;
  position: relative;
}

.pfc-stats__number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--pfc-text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pfc-stats__label {
  display: block;
  font-size: 13px;
  color: var(--pfc-text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Subtiele verticale dividers */
.pfc-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--pfc-border);
}

@media (max-width: 768px) {
  .pfc-stats {
    flex-direction: column;
    max-width: 320px;
  }
  
  .pfc-stats__item:not(:last-child)::after {
    top: auto;
    bottom: 0;
    right: 20%;
    left: 20%;
    height: 1px;
    width: 60%;
  }
  
  .pfc-stats__item {
    padding: 20px 16px;
  }
}


/* =============================================================
   V. SCROLL ANIMATIONS (fade-in bij scrollen)
   ============================================================= */
@keyframes pfc-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Alles begint onzichtbaar */
.pfc-section,
.pfc-section--tight,
.pfc-page-hero {
  animation: pfc-fade-up 0.6s ease both;
}

/* Stagger: elke volgende sectie iets later */
.pfc-section:nth-child(2) { animation-delay: 0.1s; }
.pfc-section:nth-child(3) { animation-delay: 0.2s; }
.pfc-section:nth-child(4) { animation-delay: 0.3s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pfc-section,
  .pfc-section--tight,
  .pfc-page-hero {
    animation: none;
  }
}


/* =============================================================
   W. ENHANCED HOVER & INTERACTION EFFECTS
   ============================================================= */

/* Split columns: subtle lift + border glow */
.pfc-split__col {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pfc-split__col:hover {
  transform: translateY(-3px);
  border-color: var(--pfc-border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Contact cards: stronger hover */
.pfc-contact-card {
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pfc-contact-card:hover {
  border-color: var(--pfc-border-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Location cards: hover lift */
.pfc-location-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pfc-location-card:hover {
  transform: translateY(-3px);
  border-color: var(--pfc-border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Step cards: hover */
.pfc-step {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pfc-step:hover {
  transform: translateY(-2px);
  border-color: var(--pfc-border-light);
}

/* Values list items: subtle highlight on hover */
.pfc-values li {
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.pfc-values li:hover {
  color: var(--pfc-text);
  padding-left: 6px;
}


/* =============================================================
   X. CTA SECTION ENHANCEMENT
   ============================================================= */
/* Bordeaux glow achter CTA button */
.pfc-section.pfc-text-center .wp-block-button__link,
.pfc-section.pfc-text-center .pfc-btn {
  position: relative;
  box-shadow: 0 4px 20px var(--pfc-glow), 0 0 60px var(--pfc-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.pfc-section.pfc-text-center .wp-block-button__link:hover,
.pfc-section.pfc-text-center .pfc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(128, 0, 32, 0.25), 0 0 80px rgba(128, 0, 32, 0.15);
}

/* CTA H2 iets groter */
.pfc-section.pfc-text-center h2 {
  font-size: 32px;
}


/* =============================================================
   Y. SUBTLE ACCENT LINES & DIVIDERS
   ============================================ */
/* Bordeaux accent lijn boven stats strip */
.pfc-section--tight.pfc-surface::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--pfc-brand);
  margin: 0 auto 24px;
}

/* Page hero H1: subtiel text-shadow voor diepte */
.pfc-page-hero h1 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* Prose strong: bordeaux accent */
.pfc-prose strong {
  color: var(--pfc-text);
  text-shadow: 0 0 20px var(--pfc-glow);
}

/* Badge subtle glow */
.pfc-badge {
  box-shadow: 0 0 12px var(--pfc-glow);
}


/* =============================================================
   Z. GLOBAL POLISH
   ============================================ */
/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Better selection color */
::selection {
  background: var(--pfc-brand);
  color: var(--pfc-text);
}

/* Links in prose */
.pfc-prose a {
  color: var(--pfc-brand-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s ease;
}

.pfc-prose a:hover {
  color: var(--pfc-text);
}

/* Footer: subtiele style */
.site-footer {
  padding: 24px 0;
  font-size: 13px;
  color: var(--pfc-text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

.site-footer a {
  color: var(--pfc-text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer a:hover {
  color: var(--pfc-text);
  
  
  
  
  
  
  /* =============================================================
   PFC HERO PATCH V1 — veilig, alleen homepage hero 12-3-2026
   ============================================================= */

/* Hero row strakker en rustiger */
.gb-element-f0e1fe6a {
  max-width: 1200px;
  column-gap: 56px;
  align-items: center;
}

/* Linker kolom: desktop links uitlijnen */
.gb-element-cc0079ef {
  max-width: 640px;
  text-align: left !important;
  justify-self: start;
}

/* H1 */
.gb-text-53f340a4 {
  max-width: 11ch;
  margin: 0 0 20px 0;
  text-align: left !important;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}

/* Lead */
.gb-text-4d9192b8 {
  max-width: 580px !important;
  margin: 0 0 14px 0 !important;
  text-align: left !important;
  font-size: 21px !important;
  line-height: 1.45;
  color: #c7c7c7 !important;
}

/* Meta-regel */
.gb-text-092cf55e {
  max-width: 580px !important;
  margin: 0 0 26px 0 !important;
  text-align: left !important;
  font-size: 13px !important;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f8f8f !important;
}

/* Bullets + knoppen wrapper */
.gb-element-3cdf1036 {
  max-width: 580px !important;
  text-align: left !important;
  justify-self: start !important;
}

.gb-element-3cdf1036 ul {
  display: block !important;
  margin: 0 0 28px 0 !important;
  padding-left: 1.1rem !important;
  list-style-position: outside !important;
}

.gb-element-3cdf1036 li {
  margin: 0 0 10px 0 !important;
  font-size: 16px;
  line-height: 1.55;
  color: #d9d9d9;
}

.gb-element-3cdf1036 .wp-block-buttons {
  justify-content: flex-start !important;
  gap: 14px;
  margin-top: 0 !important;
}

.gb-element-3cdf1036 .wp-block-button__link {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
}

/* Rechter kolom sterker maken */
.gb-element-81c05ce6 {
  max-width: 460px !important;
  opacity: 1 !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.gb-element-81c05ce6 img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* Tablet en kleiner */
@media (max-width: 1024px) {
  .gb-element-f0e1fe6a {
    grid-template-columns: 1fr !important;
    row-gap: 32px;
  }

  .gb-element-cc0079ef,
  .gb-text-53f340a4,
  .gb-text-4d9192b8,
  .gb-text-092cf55e,
  .gb-element-3cdf1036 {
    max-width: 100% !important;
  }

  .gb-element-cc0079ef,
  .gb-text-53f340a4,
  .gb-text-4d9192b8,
  .gb-text-092cf55e,
  .gb-element-3cdf1036 {
    text-align: center !important;
  }

  .gb-element-3cdf1036 ul {
    display: inline-block !important;
    text-align: left !important;
  }

  .gb-element-3cdf1036 .wp-block-buttons {
    justify-content: center !important;
  }

  .gb-element-81c05ce6 {
    max-width: 520px !important;
    margin: 0 auto;
  }
}

/* Mobiel */
@media (max-width: 767px) {
  .pfc-section--hero {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .gb-text-53f340a4 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 0.98;
  }

  .gb-text-4d9192b8 {
    font-size: 17px !important;
  }

  .gb-text-092cf55e {
    font-size: 12px !important;
    letter-spacing: 0.10em;
  }

  .gb-element-f0e1fe6a {
    row-gap: 24px;
  }
}
}

/* =========================================================
   PREMIUM FIT COACHING — HOMEPAGE PREMIUM V1
   ========================================================= */

.pfc-homepage {
  background: #050505;
  color: #f3f0ea;
}

.pfc-homepage *,
.pfc-homepage *::before,
.pfc-homepage *::after {
  box-sizing: border-box;
}

.pfc-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.pfc-section-label {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a15c68;
}

.pfc-section-label--center {
  text-align: center;
}

.pfc-homepage h1,
.pfc-homepage h2,
.pfc-homepage h3 {
  margin: 0;
  color: #f6f1ea;
  letter-spacing: -0.03em;
}

.pfc-homepage p {
  margin: 0;
}

.pfc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.pfc-btn:hover {
  transform: translateY(-1px);
  opacity: .96;
}

.pfc-btn--primary {
  background: #8e0b2f;
  color: #fff;
}

.pfc-btn--secondary {
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}

.pfc-btn--large {
  min-height: 58px;
  padding: 16px 30px;
  font-size: 17px;
}

/* HERO */
.pfc-hero {
  padding: 88px 0 44px;
}

.pfc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: center;
}

.pfc-eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9a9a9;
}

.pfc-hero h1 {
  max-width: 10.5ch;
  margin-bottom: 22px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .94;
  text-wrap: balance;
}

.pfc-lead {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.45;
  color: #cfcfcf;
}

.pfc-meta {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f8f8f;
}

.pfc-points {
  margin: 0 0 30px;
  padding-left: 1.1rem;
}

.pfc-points li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.55;
  color: #dddddd;
}

.pfc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pfc-hero__media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
}

.pfc-hero__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

/* FOCUS CARDS */
.pfc-focus {
  padding: 20px 0 56px;
}

.pfc-focus__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pfc-focus-card {
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.pfc-focus-card__image,
.pfc-focus-card__image img {
  width: 100%;
  height: 100%;
}

.pfc-focus-card__image img {
  object-fit: cover;
  display: block;
}

.pfc-focus-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.24) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.74) 100%);
}

.pfc-focus-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  z-index: 2;
}

.pfc-focus-card h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 3vw, 46px);
  line-height: .98;
}

.pfc-focus-card p {
  max-width: 24ch;
  font-size: 16px;
  line-height: 1.5;
  color: #f2f2f2;
}

/* WHY */
.pfc-why {
  padding: 84px 0 60px;
}

.pfc-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 64px;
  align-items: center;
}

.pfc-why h2 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: .98;
}

.pfc-why__intro {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.4;
  color: #f0f0f0;
}

.pfc-why__copy p:not(.pfc-why__intro) {
  font-size: 18px;
  line-height: 1.7;
  color: #bcbcbc;
}

.pfc-why blockquote {
  margin: 30px 0 0;
  padding-left: 18px;
  border-left: 2px solid #8e0b2f;
  font-size: 20px;
  line-height: 1.55;
  color: #dddddd;
}

.pfc-why__media {
  border-radius: 22px;
  overflow: hidden;
}

.pfc-why__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

/* STATS */
.pfc-stats {
  padding: 20px 0 28px;
}

.pfc-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 20px;
  overflow: hidden;
}

.pfc-stat {
  padding: 30px 28px;
  text-align: center;
}

.pfc-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.05);
}

.pfc-stat h3 {
  margin-bottom: 8px;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1;
}

.pfc-stat p {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9f9f9f;
}

/* FIT */
.pfc-fit {
  padding: 64px 0 80px;
}

.pfc-fit h2 {
  margin-bottom: 16px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1;
  text-align: center;
}

.pfc-fit__lead {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 18px;
  line-height: 1.65;
  color: #bfbfbf;
}

.pfc-fit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.pfc-fit-card {
  border-radius: 18px;
  padding: 28px 28px 24px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,.08);
}

.pfc-fit-card--yes {
  box-shadow: inset 0 1px 0 rgba(31, 167, 90, .35);
}

.pfc-fit-card--no {
  box-shadow: inset 0 1px 0 rgba(180, 18, 52, .35);
}

.pfc-fit-card h3 {
  margin-bottom: 18px;
  font-size: 28px;
  line-height: 1.1;
}

.pfc-fit-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.pfc-fit-card li {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.55;
  color: #d1d1d1;
}

/* LOCATION */
.pfc-location {
  padding: 10px 0 80px;
}

.pfc-location__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: center;
}

.pfc-location h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
}

.pfc-location__copy p:not(.pfc-section-label) {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.7;
  color: #bcbcbc;
}

.pfc-location__media {
  border-radius: 22px;
  overflow: hidden;
}

.pfc-location__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* CTA */
.pfc-cta {
  padding: 14px 0 96px;
}

.pfc-cta__inner {
  text-align: center;
}

.pfc-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
}

.pfc-cta p {
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 19px;
  line-height: 1.6;
  color: #bfbfbf;
}

/* TABLET */
@media (max-width: 1024px) {
  .pfc-container {
    width: min(100% - 40px, 1200px);
  }

  .pfc-hero__grid,
  .pfc-why__grid,
  .pfc-location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pfc-hero__copy,
  .pfc-why__copy,
  .pfc-location__copy {
    text-align: center;
  }

  .pfc-hero h1,
  .pfc-why h2,
  .pfc-location h2 {
    max-width: 100%;
  }

  .pfc-points {
    display: inline-block;
    text-align: left;
  }

  .pfc-actions {
    justify-content: center;
  }

  .pfc-focus__grid {
    grid-template-columns: 1fr;
  }

  .pfc-fit__grid {
    grid-template-columns: 1fr;
  }

  .pfc-stats__grid {
    grid-template-columns: 1fr;
  }

  .pfc-stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .pfc-container {
    width: calc(100% - 32px);
  }

  .pfc-hero {
    padding: 46px 0 24px;
  }

  .pfc-eyebrow,
  .pfc-meta,
  .pfc-section-label {
    font-size: 12px;
    letter-spacing: .08em;
  }

  .pfc-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
    line-height: .98;
    margin-bottom: 16px;
  }

  .pfc-lead {
    font-size: 17px;
    line-height: 1.55;
  }

  .pfc-meta {
    margin-bottom: 18px;
  }

  .pfc-points {
    margin-bottom: 24px;
  }

  .pfc-points li {
    font-size: 15px;
    line-height: 1.5;
  }

  .pfc-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pfc-btn,
  .pfc-btn--large {
    width: 100%;
  }

  .pfc-hero__media img {
    aspect-ratio: 4 / 5;
  }

  .pfc-focus {
    padding: 18px 0 38px;
  }

  .pfc-focus-card {
    min-height: 250px;
  }

  .pfc-focus-card__content {
    padding: 20px;
  }

  .pfc-focus-card h2 {
    font-size: 26px;
  }

  .pfc-focus-card p {
    max-width: none;
    font-size: 15px;
  }

  .pfc-why,
  .pfc-fit,
  .pfc-location {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .pfc-why h2,
  .pfc-fit h2,
  .pfc-location h2,
  .pfc-cta h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .pfc-why__intro,
  .pfc-why__copy p:not(.pfc-why__intro),
  .pfc-fit__lead,
  .pfc-location__copy p:not(.pfc-section-label),
  .pfc-cta p {
    font-size: 16px;
    line-height: 1.65;
  }

  .pfc-fit-card {
    padding: 22px 20px 18px;
  }

  .pfc-fit-card h3 {
    font-size: 22px;
  }

  .pfc-fit-card li {
    font-size: 15px;
  }

  .pfc-stat {
    padding: 22px 18px;
  }

  .pfc-cta {
    padding: 6px 0 64px;
  }
}