/* =====================================================
   NEXT LEVEL VOETBALSCHOOL — STYLESHEET
   Kleurenpalet, typografie en designprincipes
   volledig gebaseerd op het officiële brandbook.
   ===================================================== */

/* ===== CSS VARIABELEN ===== */
:root {
  --gold:        #F1B02D;
  --gold-light:  #FFD060;
  --orange:      #D9771B;
  --black:       #0D0D0D;
  --dark:        #141414;
  --dark2:       #1A1A1A;
  --gray:        #606060;
  --gray-light:  #999;
  --white:       #FFFFFF;

  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
  --font-accent:  'Dancing Script', cursive;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  all 0.3s var(--ease);
  --radius:      4px;
  --radius-lg:   10px;

  --shadow-gold: 0 0 40px rgba(241, 176, 45, 0.25);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== HELPERS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-light);
  max-width: 480px;
  line-height: 1.7;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-tag {
  justify-content: center;
}

/* ===== KNOPPEN ===== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 14px 38px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease);
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(241, 176, 45, 0.35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(241, 176, 45, 0.55);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(241, 176, 45, 0.4);
}

.btn-small {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-small:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

/* ===== SCROLL-ANIMATIES ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  border-bottom-color: rgba(241, 176, 45, 0.15);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

#navbar.scrolled .nav-logo img {
  height: 64px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 135px;
  width: auto;
  filter: drop-shadow(0 0 14px rgba(241, 176, 45, 0.55));
  transition: height 0.4s ease, filter 0.3s ease;
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 18px rgba(241, 176, 45, 0.7));
}

.nav-menu {
  display: flex;
  gap: 44px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
  border-radius: 1px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;  /* Onder alles binnen de isolated stacking context */
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Cinematic multi-layer overlay */
  background:
    linear-gradient(
      108deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.52) 42%,
      rgba(0, 0, 0, 0.22) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.25) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.55) 100%
    );
}

/* Verticale goudlijn links — uit het brandbook */
.hero-overlay::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--orange) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 24px 100px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(241, 176, 45, 0.3);
  border-radius: 2px;
  background: rgba(241, 176, 45, 0.07);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.015em;
  margin-bottom: 32px;
  max-width: 600px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 42px;
}

.hero-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Scroll-pijl */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(241, 176, 45, 0.7);
  border-bottom: 2px solid rgba(241, 176, 45, 0.7);
  transform: rotate(45deg);
  animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50%       { transform: rotate(45deg) translate(5px, 5px); opacity: 0.4; }
}

/* Diagonale overgang hero → about */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--dark2);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
  z-index: 3;
  pointer-events: none;
}

/* ===== OVER ONS ===== */
.about {
  background: var(--dark2);
  padding: 110px 0 100px;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-title {
  text-align: left;
}

.about-text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  padding: 9px 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(241, 176, 45, 0.09);
  border: 1px solid rgba(241, 176, 45, 0.28);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: rgba(241, 176, 45, 0.18);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(241, 176, 45, 0.2);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.55;
}

/* About afbeelding */
.about-image {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s var(--ease);
  position: relative;
  z-index: 1;
}

.about-img-wrapper:hover img {
  transform: scale(1.02);
}

.about-img-border {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(241, 176, 45, 0.4);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
  transition: var(--transition);
}

.about-img-wrapper:hover .about-img-border {
  border-color: var(--gold);
  top: -10px;
  right: -10px;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  z-index: 2;
  background: var(--gold);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(241, 176, 45, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-number {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.3em;
}

.badge-year {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

/* Diagonale overgang about → carrousel */
.about::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* ===== TRAINERS ===== */
.trainers {
  background: var(--black);
  padding: 100px 0 90px;
  position: relative;
}

.trainers-grid {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  gap: 40px;
  justify-content: center;
}

.trainer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.trainer-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.trainer-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.55s var(--ease);
}

.trainer-card:hover .trainer-img-wrapper img {
  transform: scale(1.06);
}

.trainer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.trainer-name-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.trainer-card:hover .trainer-name-bar {
  background: var(--gold-light);
}

.trainer-name-bar span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  color: var(--black);
  font-weight: 700;
}

/* ===== FOTO CARROUSEL ===== */
.carousel-section {
  background: var(--black);
  padding: 80px 0 90px;
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: 48px;
}

.carousel-outer {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

.carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollLeft 65s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-item {
  flex-shrink: 0;
  width: 330px;
  height: 230px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(241, 176, 45, 0.08);
  transition: border-color 0.3s ease;
}

.carousel-item:hover {
  border-color: rgba(241, 176, 45, 0.4);
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.carousel-item:hover img {
  transform: scale(1.08);
}

/* ===== PRIJZEN ===== */
.pricing {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.pricing-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("Next%20Level%20Foto's/2026-03-01%2012.43.31-1.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.pricing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--black) 0%,
    rgba(20, 20, 20, 0.97) 40%,
    rgba(20, 20, 20, 0.97) 60%,
    var(--black) 100%
  );
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 38px 30px 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(241, 176, 45, 0.28);
  box-shadow: var(--shadow-card);
}

.pricing-featured {
  border-color: var(--gold);
  background: rgba(241, 176, 45, 0.04);
  box-shadow: 0 0 50px rgba(241, 176, 45, 0.14), var(--shadow-card);
}

.pricing-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 70px rgba(241, 176, 45, 0.22), var(--shadow-card);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 5px 22px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card-top {
  text-align: center;
}

.pricing-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.price-currency {
  font-size: 2rem;
  line-height: 1.15;
}

.price-suffix {
  font-size: 1.6rem;
}

.pricing-period {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.12em;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
}

.check {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ===== AGENDA ===== */
.agenda {
  background: var(--dark2);
  padding: 100px 0 110px;
  position: relative;
}

/* Diagonale top-rand */
.agenda::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
}

.agenda-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.agenda-col-header {
  margin-bottom: 22px;
}

.agenda-clinic-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.agenda-centered {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.agenda-centered .agenda-card {
  flex: 0 0 380px;
}

.agenda-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.agenda-card:hover {
  border-left-color: var(--gold);
  border-color: rgba(241, 176, 45, 0.2);
  border-left-color: var(--gold);
  transform: translateX(6px);
  box-shadow: -4px 0 30px rgba(241, 176, 45, 0.08);
}

/* Result cards */
.results-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.result-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.result-card:hover {
  border-color: rgba(241, 176, 45, 0.22);
  border-left-color: var(--gold);
  transform: translateX(4px);
  box-shadow: -4px 0 24px rgba(241, 176, 45, 0.08);
}

.result-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.result-competition {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.result-date {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-left: auto;
}

.result-badge {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  padding: 3px 12px;
  border-radius: 20px;
}

.result-win {
  background: rgba(76, 175, 80, 0.15);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.result-draw {
  background: rgba(241, 176, 45, 0.1);
  color: var(--gold);
  border: 1px solid rgba(241, 176, 45, 0.25);
}

.result-loss {
  background: rgba(220, 50, 50, 0.12);
  color: #ef9a9a;
  border: 1px solid rgba(220, 50, 50, 0.25);
}

.result-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.result-team {
  display: flex;
  align-items: center;
}

.result-team-right {
  justify-content: flex-end;
}

.result-team-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.result-score {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  background: rgba(241, 176, 45, 0.06);
  border: 1px solid rgba(241, 176, 45, 0.15);
  border-radius: var(--radius);
  padding: 8px 18px;
}

.result-score-sep {
  color: var(--gray-light);
  font-size: 1.2rem;
}

.agenda-date {
  flex-shrink: 0;
  width: 66px;
  height: 66px;
  background: rgba(241, 176, 45, 0.08);
  border: 1px solid rgba(241, 176, 45, 0.25);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.agenda-card:hover .agenda-date {
  background: rgba(241, 176, 45, 0.15);
  border-color: var(--gold);
}

.agenda-day {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.agenda-day-sep {
  font-size: 1.2rem;
  opacity: 0.6;
}

.agenda-month {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.agenda-info {
  flex: 1;
  min-width: 0;
}

.agenda-type {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.agenda-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.agenda-title-gold {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  white-space: normal;
}

.agenda-card-block {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.agenda-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 26px;
}

.agenda-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  gap: 16px;
}

.agenda-price-badge {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}

.agenda-price-badge span {
  font-size: 1rem;
  opacity: 0.65;
}

.agenda-price-old {
  font-size: 1.4rem;
  color: var(--gray-light);
  text-decoration: none;
  margin-right: 6px;
  position: relative;
}

.agenda-price-old::after {
  content: '';
  position: absolute;
  left: -4%;
  top: 50%;
  width: 108%;
  height: 1px;
  background: var(--gray-light);
  transform: rotate(-18deg);
}

.agenda-cta {
  font-size: 0.8rem;
  padding: 9px 36px;
  white-space: nowrap;
}

.agenda-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--gray-light);
}

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
}

.contact-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("Next%20Level%20Foto's/2026-03-01%2011.15.32-2.jpg");
  background-size: cover;
  background-position: center top;
  opacity: 0.09;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(13, 13, 13, 0.98) 0%,
    rgba(13, 13, 13, 0.94) 100%
  );
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.contact-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-detail-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.social-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(241, 176, 45, 0.07);
}

/* Formulier */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}

.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background-color: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(241, 176, 45, 0.04);
  box-shadow: 0 0 0 3px rgba(241, 176, 45, 0.1);
}

.form-group select {
  /* Solid dark background – transparentie werkt niet betrouwbaar op <select> */
  background-color: #161616;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F1B02D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 13px 40px 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  cursor: pointer;
  width: 100%;
}

.form-group select:focus {
  border-color: var(--gold);
  background-color: #1e1a0f;
  box-shadow: 0 0 0 3px rgba(241, 176, 45, 0.1);
}

.form-group select option {
  background-color: #161616;
  color: var(--white);
}

.form-group input.is-error,
.form-group textarea.is-error {
  border-color: #e55;
  box-shadow: 0 0 0 3px rgba(220, 50, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 1);
  opacity: 1;
}

.form-group select option[disabled] {
  color: rgba(255, 255, 255, 0.5);
}

.field-error {
  display: none;
  font-size: 0.72rem;
  color: #e55;
  margin-top: 2px;
}

.form-group.has-error .field-error {
  display: block;
}

.form-success {
  display: none;
  font-size: 0.9rem;
  color: #4caf50;
  text-align: center;
  padding: 14px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: var(--radius);
}

/* ===== CLINIC CARD ===== */
.clinic-card-single {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  transition: var(--transition);
}

.clinic-card-single:hover {
  border-color: rgba(241, 176, 45, 0.28);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.clinic-card-content {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.clinic-img-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-top: 4px;
}

.clinic-img-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s var(--ease);
}

.clinic-card-single:hover .clinic-img-square img {
  transform: scale(1.04);
}

.clinic-season-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(241, 176, 45, 0.09);
  border: 1px solid rgba(241, 176, 45, 0.22);
  border-radius: 20px;
  padding: 5px 16px;
  width: fit-content;
}

.clinic-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
}

.clinic-date-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.clinic-date-nums {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.clinic-amp {
  font-size: 1.6rem;
  color: var(--gray-light);
}

.clinic-date-month {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gray-light);
}

.clinic-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  max-width: 420px;
}

.clinic-meta-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.clinic-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
}

.clinic-meta-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--black);
  padding: 100px 0 110px;
  position: relative;
}

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

.review-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.review-card:hover {
  border-color: rgba(241, 176, 45, 0.28);
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(241, 176, 45, 0.1);
}

.review-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
}

.review-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--white);
}

.review-role {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-text {
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 5px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  text-align: center;
}

/* Pricing instapprijs tag */
.pricing-first-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 4px;
}

/* Pricing renewal block */
.pricing-renewal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(241, 176, 45, 0.07);
  border: 1px solid rgba(241, 176, 45, 0.25);
  border-radius: 8px;
  padding: 12px 18px;
  margin-top: 14px;
  position: relative;
}

.pricing-renewal::before {
  content: '↓';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--dark);
  padding: 0 4px;
  line-height: 1.4;
}

.pricing-card:not(.pricing-featured) .pricing-renewal::before {
  background: rgba(13, 13, 13, 0.9);
}

.pricing-renewal-label {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.pricing-renewal-price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

/* ===== SPONSORS ===== */
.sponsors {
  background: #0f0f0f;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.sponsors-header {
  text-align: center;
  margin-bottom: 50px;
}

.sponsors-header .section-tag {
  justify-content: center;
}

.sponsors-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sponsor-item {
  transition: var(--transition);
}

.sponsor-item:hover {
  transform: translateY(-5px);
}

.sponsor-card {
  width: 200px;
  height: 100px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: var(--transition);
  overflow: hidden;
}

.sponsor-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.sponsor-item:hover .sponsor-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.sponsor-item:hover .sponsor-card img {
  transform: scale(1.06);
}

/* Voetbalshop logo iets ingezoomd voor leesbaarheid */
.sponsor-card img[alt="Voetbalshop.nl"] {
  object-fit: cover;
  transform: scale(1.3);
}

.sponsor-item:hover .sponsor-card img[alt="Voetbalshop.nl"] {
  transform: scale(1.38);
}


/* ===== FOOTER ===== */
.footer {
  background: #090909;
  padding: 72px 0 0;
  border-top: 1px solid rgba(241, 176, 45, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
}

.footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(241, 176, 45, 0.25));
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(241, 176, 45, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.footer-social-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}

.footer-social-btn:hover::after {
  transform: translateX(100%);
}

.footer-social-btn:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 176, 45, 0.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-image {
    order: -1;
  }

  .about-img-wrapper img {
    height: 380px;
  }

  .about-img-badge {
    left: 12px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Reviews tablet */
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

}


@media (max-width: 768px) {
  /* Mobile nav */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 40px;
    transition: right 0.4s var(--ease);
    border-left: 1px solid rgba(241, 176, 45, 0.1);
    z-index: 1005;
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Trainers */
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    margin: 0 auto;
  }

  .trainer-name-bar {
    padding: 8px 10px;
  }

  .trainer-name-bar span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 14px;
    margin: 0 auto;
  }

  /* Sponsors */
  .sponsor-card {
    width: 155px;
    height: 82px;
    padding: 14px 16px;
  }

  /* Hero */
  .hero {
    min-height: 100dvh;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 4.2rem);
  }

  .hero-video {
    object-fit: cover;
    object-position: 60% center;
  }

  /* About */
  .about-features {
    grid-template-columns: 1fr;
  }

  .about-img-wrapper img {
    height: 300px;
  }

  /* Agenda */
  .agenda-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .agenda-card {
    flex-wrap: wrap;
  }

  /* Reviews */
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Clinic card mobiel */
  .clinic-card-content {
    padding: 28px 20px;
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  /* Sponsors */
  .sponsors-row {
    gap: 12px;
  }

  .sponsor-box {
    width: 140px;
    height: 64px;
    font-size: 0.75rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  /* Carousel */
  .carousel-item {
    width: 250px;
    height: 175px;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .pricing-card {
    padding: 20px 14px;
    text-align: center;
    gap: 16px;
  }

  .pricing-name {
    font-size: 1rem;
  }

  .pricing-price {
    font-size: 2.4rem;
  }

  .pricing-features {
    font-size: 0.78rem;
  }

  .pricing-renewal-price {
    font-size: 1.3rem;
  }

  .btn-block {
    font-size: 0.78rem;
    padding: 10px 12px;
  }

  .agenda-card {
    padding: 18px;
  }

  .carousel-item {
    width: 200px;
    height: 145px;
  }
}
