/* =================================================================== */
/* == 1. FONT DEFINITIES                                            == */
/* =================================================================== */
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/Merriweather-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300;
  src: url("/fonts/Merriweather-Italic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: bold;
  src: url("/fonts/Merriweather-Bold.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: italic;
  font-weight: bold;
  src: url("/fonts/Merriweather-BoldItalic.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/VestulaPro-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: italic;
  font-weight: normal;
  src: url("/fonts/VestulaItalic-Regular.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/VestulaPro-DemiBold.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/VestulaPro-Bold.woff2") format("woff2");
}

/* =================================================================== */
/* == 2. DESIGN TOKENS (CSS VARIABLES)                              == */
/* =================================================================== */
:root {
  /* Kleuren */
  --clr-text: #333;
  --clr-primary: #001158;
  --clr: #0c76bc;
  --clr-accent: #42c3eb;
  --clr-bg: #bcdcf5;
  --clr-light-blue: #e7f4fa;
  --clr-white: #ffffff;

  /* Typografie */
  --font-body: "Vestula", "Verdana", sans-serif;
  --font-heading: "Vestula", "Verdana", sans-serif;
  --font-serif: "Merriweather", "Georgia", serif;

  /* Font Weights */
  --fw-normal: 400;
  --fw-bold: 600;
  --fw-extrabold: 800;

  /* Spacing */
  --space-s: 0.5rem;
  --space-m: 1rem;
  --space-l: 2rem;
  --space-xl: 4rem;
  --soace-xxl: 6rem;

  /* Iconen */
  --star-icon-outline: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='currentColor'%20d='M22%209.24l-7.19-.62L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021%2012%2017.27%2018.18%2021l-1.63-7.03L22%209.24zM12%2015.4l-3.76%202.27%201-4.28-3.32-2.88%204.38-.38L12%206.1l1.71%204.04%204.38.38-3.32%202.88%201%204.28L12%2015.4z'/%3E%3C/svg%3E");
  --star-icon-filled: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20fill='currentColor'%20d='M12%2017.27L18.18%2021l-1.64-7.03L22%209.24l-7.19-.61L12%202%209.19%208.63%202%209.24l5.46%204.73L5.82%2021z'/%3E%3C/svg%3E");
}

/* =================================================================== */
/* == 3. MODERNE RESET & GLOBALE INSTELLINGEN                       == */
/* =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--clr-bg);
  background: linear-gradient(
    90deg,
    rgba(230, 244, 250, 1) 0%,
    rgb(243 250 252) 100%
  );
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

/* =================================================================== */
/* == 4. BASIS TYPOGRAFIE                                           == */
/* =================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--fw-extrabold);
  line-height: 1.2;
  color: var(--clr-primary);
}
/* Voeg hier je fluide font-size clamp() functies toe */

p {
  margin: 0;
  padding: 0;
}

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

/* =================================================================== */
/* == 5. TOEGANKELIJKHEID & LAYOUT HELPERS                          == */
/* =================================================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--space-m);
  z-index: 1000;
  transition: top 0.3s;
}
.skip-link:focus {
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.container {
  width: 100%;
  /* max-width: 90rem; 1440px */
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: var(--space-l);
}

/* =================================================================== */
/* == 6. COMPONENTEN: HEADER                                        == */
/* =================================================================== */

/* --- Meldingenbalk --- */
.notification-bar {
  background-color: var(--clr-primary);
  color: var(--clr-white);
}
.notification-bar__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  padding-block: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}
.notification-bar a {
  font-weight: var(--fw-bold);
  text-decoration: underline;
}
.notification-bar__close-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
}
.notification-bar__close-btn svg {
  width: 14px;
  height: 14px;
}

/* --- Top Bar --- */
.header-top-bar {
    background-color: #fff;
    border-bottom: 1px dotted #ccc;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.header-top-bar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}
.header-top-bar .user-actions span {
    font-weight: 600;
}

/* --- Hoofd Header --- */
.main-header {
    background-color: #fff;
    position: sticky;
    top: 0; /* Let op: dit moet de hoogte van de notification bar zijn als je die sticky wilt houden */
    z-index: 1000;
}
.main-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}
.logo img {
    max-height: 110px;
    display: block;
}

/* --- Navigatie & Acties Wrapper (Desktop) --- */
.header-nav-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}
.main-navigation a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 800;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.main-navigation a:hover,
.main-navigation a.active {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

/* --- Overige acties (Taal, Gebruiker, CTA) --- */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}
.lang-switch a {
    text-decoration: none;
    color: #666;
    font-weight: 600;
}
.lang-switch a.active {
    color: #0d6efd;
}
.lang-switch span {
    color: #ccc;
}
.user-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}
.user-actions svg {
    width: 24px;
    height: 24px;
}
.cta-button {
    background-color: #0d6efd;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}
.cta-button:hover {
    background-color: #0b5ed7;
}

/* --- Mobiele Acties (in uitklapmenu) --- */
.mobile-header-actions {
    display: none; /* Standaard verborgen */
}

/* --- Mobiele Navigatie Knop (Hamburger) --- */
.mobile-nav-toggle {
    display: none; /* Standaard verborgen op desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.mobile-nav-toggle .icon-close { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* =========================================================== */
/* == MEDIA QUERY VOOR MOBIELE LAYOUT                       == */
/* =========================================================== */
@media (max-width: 992px) {
    .header-top-bar {
        display: none; /* Verberg de desktop top-bar */
    }

    .mobile-nav-toggle {
        display: block; /* Toon de hamburger knop */
    }

    /* --- DE BELANGRIJKSTE CORRECTIE --- */
    /* Dit blok ontbrak en is essentieel voor het uitklapmenu */
    .header-nav-content {
        display: none; /* Verborgen als het menu dicht is */
        position: absolute;
        top: 80px; /* Start direct onder de header */
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 2rem;
        gap: 2rem;
        border-bottom: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .header-nav-content.is-open {
        display: flex; /* Zichtbaar als het menu open is */
    }
    /* --- EINDE CORRECTIE --- */

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 2rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .mobile-header-actions {
        display: flex; /* Laat de mobiele acties zien in het uitklapmenu */
        border-top: 1px solid #e9ecef;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* ============================================== */
/* == STIJLEN VOOR DE HERO MET COLLAGE         == */
/* ============================================== */

.hero-section {
  position: relative;
  padding-block: 4rem;
  /* background: var(--clr-white); */
  color: var(--clr-white);
  overflow: hidden;
}

/* VERBETERING: De decoratieve "blob" als een pseudo-element of aparte div */
.hero-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 640px;
  height: 640px;
  background-image: url(/assets/images/rings-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
  z-index: 0;
}

/* De hoofd-layout van de hero. De container krijgt een hogere z-index */
.hero-grid-container {
  position: relative;
  background-color: #fff;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-l); /* Variabele, kleiner op mobiel */
  align-items: center;
  box-shadow: 0 0 40px 0 rgb(32 71 75 / 10%), 0 6px 6px 0px rgb(32 71 75 / 5%);
  border-radius: 20px;
  padding: 0;
      max-width: 1360px;
}

@media (min-width: 900px) {
  .hero-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

/* Titel styling met variabelen */

.hero-main-content {
  margin-left: 4rem;
}

#hero-title {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1;
  color: var(--clr-primary);
}

#hero-title span {
  color: var(--clr-accent);
}

.info-list {
  display: flex;
  flex-direction: column;
  color: #333;
  font-size: 19px;
  margin-block: 40px;
  padding-block: 16px;
  border-block: 1px dotted #ccc;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 12px;
}

.info-item dd {
  text-align: right;
}

.info-item:last-child {
  padding-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background-color: #0c76bc;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  padding: 8px 30px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}

.button-icon {
  width: 1em;
  height: 1em;
  transition: transform 0.2s ease-out;
}

.button:hover .button-icon {
  transform: translateX(3px);
}

.hero-image-wrapper {
  margin: 0;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/* --- De Collage  --- */
.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  min-height: 450px;
  position: relative;
}

.collage-item {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
  max-width: 280px;
}
.collage-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.collage-item:nth-child(1) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  transform: rotate(8deg);
  z-index: 2;
}

.collage-item:nth-child(2) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  transform: rotate(2deg) translate(30%, -20%);
  z-index: 3;
}

.collage-item:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  transform: translate(20%, 0%);
  z-index: 1;
}

.collage-item:nth-child(4) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  transform: rotate(-10deg) translate(-20%, -20%);
  z-index: 4;
}

/* ============================================== */
/* === STIJLEN VOOR DE STERREN-RATING          == */
/* ============================================== */

.star-rating {
  display: inline-flex;
  gap: 0.25rem;
  color: #ab4d4d;
}

.star {
  display: inline-block;
  width: 20px;
  height: 20px;
  --star-icon: var(--star-icon-outline);
  background-color: #333;
  mask-image: var(--star-icon);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.star-rating[style*="--rating: 1"] .star:nth-child(1),
.star-rating[style*="--rating: 2"] .star:nth-child(1),
.star-rating[style*="--rating: 3"] .star:nth-child(1) {
  --star-icon: var(--star-icon-filled);
}

.star-rating[style*="--rating: 2"] .star:nth-child(2),
.star-rating[style*="--rating: 3"] .star:nth-child(2) {
  --star-icon: var(--star-icon-filled);
}

.star-rating[style*="--rating: 3"] .star:nth-child(3) {
  --star-icon: var(--star-icon-filled);
}

/* ============================================== */
/* == STAP 3: STIJLEN VOOR DE INTRO-LAAG         == */
/* ============================================== */

.content-layer {
  padding-block: 4rem;
}

/* De 2-koloms layout (herbruikbaar) */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr; /* Mobiel: onder elkaar */
  gap: 3rem;
  align-items: start; /* Lijn de bovenkanten van de kolommen uit */
}

@media (min-width: 800px) {
  .two-column-layout {
    /* Desktop: 60% voor tekst, 40% voor kader */
    grid-template-columns: 3fr 2fr;
  }
}

/* Stijlen voor de linkerkolom met tekst */
.intro-text-block h2 {
  font-family: "Vestula", serif;
  font-size: 48px;
  color: #0e76bc;
  line-height: 1;
  max-width: 20ch;
  text-transform: uppercase;
  margin-bottom: var(--space-l);
}

.intro-text-block p {
  font-size: 1.3rem;
  max-width: 50ch;
  font-family: var(--font-serif);
}

.section-intro {
  text-align: center;
}

.section-intro.left {
  text-align: left;
}

.section-intro h2 {
  font-size: 48px;
  line-height: 1;
  color: #0e76bc;
  text-transform: uppercase;
}

/* ============================================== */
/* == STIJLEN VOOR FILTER SIDEBAR (HERSTELD)     == */
/* ============================================== */

/* Hoofd-layout voor de pagina met sidebar (deze had je al) */
.page-layout-with-sidebar {
  display: grid;
  /* ... etc ... */
}

/* --- Algemene stijlen voor de filter sidebar --- */
.filter-sidebar h3 {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.filter-group {
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}
.filter-group:last-of-type {
  border-bottom: none;
}

.filter-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
  color: #333;
}

/* --- Custom Checkbox & Radio Button Styling (DE BELANGRIJKE KERN) --- */
.filter-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 22px;
}
.filter-checkbox.is-parent {
  font-weight: bold;
}
.filter-child-group {
  padding-left: 20px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border-left: 2px solid #f0f0f0;
}

.filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.filter-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.filter-checkbox input:checked ~ .checkmark {
  background-color: #001b48;
  border-color: #001b48;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.filter-checkbox input[type="radio"] ~ .checkmark {
  border-radius: 50%;
}
.filter-checkbox input[type="radio"]:checked ~ .checkmark:after {
  display: none;
}
.filter-checkbox input[type="radio"]:checked ~ .checkmark::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.filter-checkbox .intensity-label {
  display: inline-block;
}
.filter-checkbox .intensity-label .star-rating {
  color: #333;
  vertical-align: middle;
}
.filter-checkbox .intensity-label .star {
  width: 18px;
  height: 18px;
}

.filter-reset {
  font-size: 0.9rem;
  color: #888;
  text-decoration: underline;
  margin-top: 0.75rem;
  display: inline-block;
}

/* --- Mobiele Filter Knop --- */
.filter-toggle-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  color: #333;
}
@media (min-width: 900px) {
  .filter-toggle-mobile {
    display: none;
  }
}
.filter-toggle-mobile::after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.filter-toggle-mobile[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

@media (max-width: 899px) {
  .filter-form {
    display: none;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: #fff;
  }
  .filter-toggle-mobile[aria-expanded="true"] + .filter-form {
    display: flex;
  }
}

/* ============================================== */
/* == STIJLEN VOOR REQUIREMENTS BOX  == */
/* ============================================== */

.requirements-box {
  position: relative;
  background-color: #bcdcf5;
  border-radius: 20px;
  padding: 0;
}

.requirements-box-content {
  padding: 3rem;
  background-image: url(/assets/images/rings-white.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-bottom-right-radius: 20px;
}

.requirements-box .info-box-title {
  margin-top: 18px;
  margin-bottom: 2rem;
  color: #001158;
  font-size: 26px;
  text-transform: uppercase;
}

.requirements-box .checklist {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirements-box .checklist-item {
  font-family: Merriweather;
  display: block;
  position: relative;
  padding-left: 40px;
  cursor: pointer;
  font-size: 1.125rem;
  line-height: 1.4;
  user-select: none;
  color: #333;
  font-weight: 500;
}
.requirements-box .checklist-item small {
  display: block;
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.9rem;
}

.requirements-box .checklist-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.requirements-box .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 4px; /* Voeg een radius toe voor consistentie */
  transition: all 0.2s ease;
}

.requirements-box .checklist-item:hover input ~ .checkmark {
  background-color: rgba(255, 255, 255, 0.8);
}

.requirements-box .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid var(--clr-primary);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.requirements-box .checklist-item input:checked ~ .checkmark:after {
  display: block;
}

.requirements-box .checklist-item input:checked ~ .checkmark {
  background-color: #edf7fa;
  border-color: transparent;
}

/* ============================================== */
/* == STIJLEN VOOR DE ROOSTER SECTIE           == */
/* ============================================== */

.roster-section {
  padding-block: 0;
}

.roster-container {
  background: #fff;
  border-radius: 20px;
  padding: 3rem; /* Gebruik rems voor schaalbaarheid */
}

.roster-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.roster-section-header h2 {
  font-size: 1.2rem;
  font-family: "Vestula", serif;
  color: var(--clr-accent);
  font-weight: normal;
}

/* De Tab-navigatie */
.tabs-nav {
  display: flex;
}

.tab-button {
  font-family: "Vestula", serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 20px 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  margin-bottom: -1px;
  transition: all 0.2s ease;
  border-radius: 20px 20px 0 0;
}

.tab-button:hover {
  color: #333;
}

.tab-button.is-active {
  color: #001b48;
  background: #fff;
}

/* De tab-panelen */
.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
  background: #fff;
  border-radius: 0 20px 20px 20px;
  padding: 40px;
}

/* Styling binnen een tab-paneel */
.timetable-block {
  margin-bottom: 2.5rem;
}
.timetable-block:last-child {
  margin-bottom: 0;
}
.timetable-block h3 {
  font-size: 20px;
  font-family: "Vestula", serif;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: #41c3eb;
}

.iframe-container {
  overflow: hidden;
}

.no-timetable-message {
  text-align: center;
  padding: 2rem;
  background-color: #f1f9fc;
  border-radius: 12px;
}

/* ============================================== */
/* == STIJLEN VOOR DE "VOOR WIE?" SECTIE         == */
/* ============================================== */

.audiences-section .section-intro {
  margin-bottom: 3rem;
}

.audiences-section .two-column-layout {
  align-items: center; /* Lijn de content verticaal uit */
}
@media (min-width: 900px) {
  .audiences-section .two-column-layout {
    /* Desktop: 1/3 voor accordion, 2/3 voor afbeeldingen */
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
}

.audience-item {
  border-bottom: 1px solid rgba(0, 27, 72, 0.1);
}
.audience-item:last-child {
  border-bottom: none;
}

.audience-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-size: 22px;
    font-weight: 700;
    color: #0e76bc;
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
}
.audience-item summary::-webkit-details-marker {
  display: none;
}
.audience-item summary .arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  transform: rotate(-90deg); /* Start naar rechts */
}
.audience-item[open] > summary .arrow {
  transform: rotate(0deg); /* Roteer naar beneden */
}

.item-content {
    font-family: Merriweather;
    padding: 0 1rem 1.5rem 0;
    line-height: 1.7;
    color: #333;
    font-size: 18px;
}

/* De grid voor de afbeeldingen */
.audience-image-grid {
  display: grid;
  /* Mobiel: 2 kolommen */
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
/* Desktop: 3 kolommen */
@media (min-width: 600px) {
  .audience-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Layout op de pagina: op mobiel wordt dit 1 kolom */
@media (max-width: 899px) {
  .audience-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-image-grid figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.audience-image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4; /* Dwingt de staande verhouding af */
}

/* ============================================== */
/* == STIJLEN VOOR ACCORDION BLOK                == */
/* ============================================== */

.test {
  background: url(/assets/images/tennisbaan.svg);
    width: 490px;
    height: 330px;
    position: absolute;
    right: 210px;
    background-repeat: no-repeat;
    opacity: .3;
    top: 230px;
    z-index: -1;
    transform: rotate(-13deg);
}



.accordion {
    max-width: 100%;
    margin-inline: auto;
    margin-top: 3rem;
    /* padding: 40px; */
    /* background-color: #001158; */
    /* border-radius: 20px; */
    /* color: #fff; */
    /* background-image: url(/assets/images/rings-white.svg);
    background-repeat: no-repeat;
    background-position: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}



.accordion-item {
    /* border-bottom: 1px dotted rgb(255 255 255 / 30%); */
    width: 65%;
    box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 20px;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 3rem;
     font-size: 21px;

  font-weight: 700;
  text-align: left;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.accordion-title::-webkit-details-marker {
  display: none;
}

.accordion-title .arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.accordion-item[open] > .accordion-title .arrow {
  transform: rotate(0deg);
}

.accordion-content {
  padding: 0 3rem 3rem 3rem;
  font-family: 'Merriweather';
}

/* De wrapper voor het icoon */
.accordion-icon {
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    flex-shrink: 0; /* Voorkomt dat het icoon krimpt */
    color: #0e76bc; /* Accentkleur */
    transition: transform 0.2s ease-in-out;
}

/* Standaard staat: Toon de PLUS, verberg de MIN */
.accordion-item .icon-minus {
    display: none;
}
.accordion-item .icon-plus {
    display: block;
}

/* Als de <details> tag open is: Verberg de PLUS, toon de MIN */
.accordion-item[open] .icon-plus {
    display: none;
}
.accordion-item[open] .icon-minus {
    display: block;
}

/* Optioneel: een kleine rotatie-animatie voor een speels effect */
.accordion-item[open] .accordion-icon {
    transform: rotate(180deg);
}

/* ============================================== */
/* == STIJLEN VOOR NIVEAUS                 == */
/* ============================================== */

.level-cards-container {
  display: grid;
  gap: 2.5rem;
  margin: 2rem auto;
}

.level-card {
  overflow: hidden;
}
.level-card-header {
     color: #001158;
    padding: 0.5rem 2rem;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    background-color: rgb(255 255 255 / 50%);
    border-radius: 20px 20px 0 0;
    font-weight: bold;
}
.level-card-content {
  background-color: rgb(255 255 255 / 50%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 0 20px 20px 20px;
}
@media (min-width: 600px) {
  .level-card-content {
    grid-template-columns: 1fr 1fr;
  }
}
.level-column h4 {
      font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #001158;
  margin-bottom: 0.75rem;
  border-bottom: 1px dotted #7783b7;
  padding-bottom: 0.5rem;
}
.level-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
      font-size: 18px;
}
.level-column li {
  position: relative;
  padding-left: 20px;
      color: #333;
}
.level-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #001b48;
  font-weight: bold;
}


.level-tabs-container {
    margin: 2rem auto 1rem;
    overflow: hidden;
}

button.level-tab {
  font-family: Vestula;
    color: #333;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 12px 1.5rem;
    text-align: center;
    cursor: pointer;
    border: none;
    background: none;
}

.level-tab.active {
    background-color: #bbdcf5;
    border-radius: 20px 20px 0 0;
    color: #333;
}

.level-content-panel {
    display: none;
    padding: 1.5rem 2rem;
   
}

.level-content-panel.active {
  display: block;
  background-color: #bbdcf5;
  border-radius: 20px;
}

.level-content-panel:first-child.active {
    border-radius: 0 20px 20px 20px;
}

.level-columns-wrapper {
    display: flex;
    gap: 2rem;
}

.level-column {
    flex: 1;
}

/* --- ALGEMENE FOOTER STYLING --- */
.site-footer {
    background-color: #0d1a2c; /* Donkerblauw/grijs, pas aan naar wens */
    color: #fff; /* Lichte tekstkleur */
    padding: 4rem 2rem;
    font-size: 15px;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- LAYOUT VAN DE KOLOMMEN (FLEXBOX) --- */
.footer-main {
    display: flex;
    flex-wrap: wrap; /* Zorgt dat kolommen onder elkaar springen op kleine schermen */
    gap: 2rem; /* Ruimte tussen de kolommen */
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1; /* Verdeelt de ruimte eerlijk */
    min-width: 250px; /* Voorkomt dat kolommen te smal worden */
}

/* --- TYPOGRAFIE EN LINKS --- */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    display: flex;
    align-items: center;
}

.site-footer a:hover {
    color: #3498db; /* Accentkleur bij hover */
}

/* --- SPECIFIEKE ELEMENTEN --- */
.contact-info p {
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

/* --- SVG ICON STYLING --- */
.icon-link .icon-svg {
    /* Grootte en uitlijning voor de pijltjes-iconen naast tekst */
    width: 1em;
    height: 1em;
    margin-right: 8px;
    vertical-align: -0.125em; /* Lijn het icoon mooi uit met de tekst */
    color: #3498db; /* Accentkleur voor de icoontjes */
}

.footer-social .social-icon-svg {
    /* Grootte voor de social media iconen */
    width: 24px;
    height: 24px;
}
/* --- ONDERSTE BALK (FOOTER-BOTTOM) --- */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e; /* Subtiele scheidingslijn */
    font-size: 0.9rem;
    color: #bdc3c7; /* Iets donkerdere tekst voor copyright */
}


.lang-select {
    display: flex;
    gap: 0.5rem;
}

.lang-link {
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    border: 1px solid transparent;
}

.lang-link.active {
    border-color: #3498db;
    color: #3498db;
}

/* --- RESPONSIVE AANPASSINGEN --- */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 1rem;
        text-align: center; /* Centreer tekst op mobiel */
    }

    .footer-main {
        flex-direction: column; /* Stapel kolommen verticaal */
        align-items: center;
    }
    
    .footer-column {
        min-width: 100%;
        margin-bottom: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column; /* Stapel elementen in de bottom bar */
        justify-content: center;
    }

    .footer-copyright {
        order: 3; /* Verplaats copyright naar de onderkant */
    }
}









     /* Algemene styling voor de demo */


        /* De container die de tariefkaarten vasthoudt */
        .pricing-section {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Het grid systeem voor de kaarten */
        .pricing-grid {
            display: grid;
            /* Maak 3 kolommen op desktop, 1 op mobiel */
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem; /* Ruimte tussen de kaarten */
                margin-block: 6rem;
        }

        /* Styling voor elke individuele tariefkaart */
        .pricing-card {
            background-color: #ffffff;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            padding: 2rem;
            text-align: center;
            border-top: 5px solid #0e76bc;
            display: flex;
            flex-direction: column; /* Zorgt dat de knop onderaan kan worden uitgelijnd */
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        /* Styling voor de doelgroep (Studenten, etc.) */
        .pricing-card__audience {
            font-size: 1.5rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 0.5rem;
            color: #1a202c;
        }

        /* Styling voor de product- en plannaam */
        .pricing-card__product-name,
        .pricing-card__plan-type {
            font-size: 0.9rem;
            color: #718096;
            margin: 0.25rem 0;
        }

        /* De prijs is het belangrijkste element */
        .pricing-card__price-container {
            margin: 2rem 0;
        }
        
        .pricing-card__price-label {
            font-size: 0.8rem;
            color: #a0aec0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }

        .pricing-card__price {
            font-size: 3rem;
            font-weight: 800;
            color: #1a202c;
            line-height: 1;
        }
        
        .pricing-card__price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            vertical-align: top;
            margin-right: 4px;
        }

        .pricing-card__price .period {
            font-size: 1rem;
            font-weight: 500;
            color: #718096;
            margin-left: 4px;
        }

        /* Call to Action knop */
        .pricing-card__cta {
            display: inline-block;
            background-color: #0e76bc;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.8rem 1.5rem;
            border-radius: 6px;
            margin-top: auto; /* Duwt de knop naar de onderkant van de kaart */
            transition: background-color 0.2s;
        }

        .pricing-card__cta:hover {
            background-color: #2d3748;
        }

        /* --- STYLING VOOR EEN UITGELICHT PLAN --- */
        .pricing-card--highlighted {
            border-color: #0d6efd; /* Accentkleur */
            position: relative;
            transform: scale(1.05); /* Maak het iets groter */
        }
        
        .pricing-card--highlighted .pricing-card__cta {
            background-color: #0d6efd;
            color: #ffffff;
        }

        .pricing-card--highlighted .pricing-card__cta:hover {
            background-color: #0b5ed7;
        }
        
        /* Optioneel: "Populairst" badge */
        .pricing-card--highlighted::before {
            content: "Populairst";
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #0d6efd;
            color: #fff;
            padding: 4px 12px;
            font-size: 0.75rem;
            font-weight: 700;
            border-radius: 20px;
        }

        /* Styling voor de nieuwe dropdown */
.pricing-card__plan-selector {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #f8f9fa;
    text-align: center;
    font-weight: 500;
    margin-bottom: 1rem;
    cursor: pointer;
    -webkit-appearance: none; /* Verwijder standaard OS styling */
    -moz-appearance: none;
    appearance: none;
    /* Voeg een custom pijl-icoon toe */
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" stroke="%23a0aec0" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
}


/* Styling voor de "Wat zit er in" sectie */
.features-list {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0 4rem 0;
}
.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}
.features-list li {
    font-weight: 500;
}
.fine-print {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Styling voor de FAQ sectie */
.faq-section {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.faq-item {
    border-left: 3px solid #0d6efd;
    padding-left: 1.5rem;
}

.faq-item h4 {
    margin-top: 0;
}

/* Styling voor de Try Out promo box */
.promo-box {
      background-color: #001158;
    border-radius: 20px;
    padding: 2rem;
    margin-block: 4rem;
    color: #fff;
}
.promo-box h3 {
    margin-top: 0;
        color: #fff;
}
.promo-box p {
  font-family: Merriweather;
}
.promo-box .button {
    margin-top: 1rem;
}


  /* Sectie voor een stad */
        .city-location-section {
            margin-bottom: 4rem;
        }

        .city-title {
            font-size: 2rem;
            font-weight: 700;
            border-bottom: 2px solid #0d6efd;
            padding-bottom: 0.5rem;
            margin-bottom: 2rem;
        }

        /* Het grid voor de locatiekaarten */
        .location-grid {
               display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
        }

        /* Styling voor een individuele locatiekaart */
        .location-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
            overflow: hidden; /* Zorgt dat de afbeelding netjes binnen de afgeronde hoeken blijft */
            display: flex;
            flex-direction: column;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        a.location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .location-card__image img {
            width: 100%;
            height: 200px;
            object-fit: cover; /* Zorgt dat de afbeelding altijd de ruimte vult zonder te vervormen */
            display: block;
        }

        .location-card__content {
            padding: 1.5rem;
            flex-grow: 1; /* Zorgt dat deze content de resterende ruimte inneemt */
            display: flex;
            flex-direction: column;
        }

        .location-card__title {
            font-size: 1.5rem;
            margin-top: 0;
            margin-bottom: 0.5rem;
        }

        .location-card__address {
            font-style: normal;
            color: #6c757d;
            margin-bottom: 1.5rem;
        }
        .location-card__address a {
            color: inherit;
            text-decoration: none;
        }
        .location-card__address a:hover {
            text-decoration: underline;
        }

        .location-card__features {
            list-style: none;
            padding: 0;
            margin: 0 0 1.5rem 0;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.5rem;
            color: #495057;
        }
        .feature-item svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: #0d6efd; /* Accentkleur voor iconen */
        }
        
        .location-card__actions {
            margin-top: auto; /* Duwt de knoppen naar de onderkant van de kaart */
            padding-top: 1rem;
            border-top: 1px solid #e9ecef;
        }



        /* --- STYLING VOOR PARTNERLOCATIES --- */

/* --- SPECIFIEKE STYLING VOOR DE PARTNERLIJST-KAART --- */
.partner-card--list .location-card__title {
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}
.partner-location-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1; /* Zorgt dat de lijst de resterende hoogte vult */
    display: flex;
    flex-direction: column;
}
.partner-location-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    flex-grow: 1; /* Verdeelt de ruimte in de lijst eerlijk */
}
.partner-location-item:last-child {
    border-bottom: none;
}
.partner-location-item__info { flex-grow: 1; }
.partner-location-item__info strong { display: block; font-weight: 600; }
.partner-location-item__info span { font-size: 0.9rem; color: #6c757d; }
.partner-location-item__link { font-weight: 600; font-size: 0.9rem; text-decoration: none; color: #0d6efd; white-space: nowrap; }



/* --- SECTIE: CLUB FEATURE BOX (voor Qravel) --- */

.club-feature-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem; /* Ruime padding voor een luxe uitstraling */
       box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
    
    /* Flexbox voor de twee-kolommen layout */
    display: flex;
    align-items: center; /* Lijn de kolommen verticaal uit in het midden */
    gap: 3rem; /* Ruimte tussen de tekst en de afbeelding */
}

/* De linkerkolom met tekst */
.club-feature-box__text {
    flex: 1.2; /* Geef de tekstkolom net iets meer ruimte dan de afbeelding */
        font-family: 'Merriweather';
    font-size: 18px;
}

.club-feature-box__title {
    margin-top: 0;
    font-size: 1.8rem;
}

.club-feature-box__text p {
    line-height: 1.6;

        margin-block: 1rem;
}

.club-feature-box__text .button {
    margin-top: 1.5rem;
}

/* De rechterkolom met de afbeelding */
.club-feature-box__image {
    flex: 1; /* Geef de afbeeldingskolom een flex-waarde */
    max-width: 350px; /* Voorkom dat de afbeelding te groot wordt op brede schermen */
}

.club-feature-box__image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Zorgt ervoor dat de afbeelding altijd vierkant is */
    object-fit: cover; /* Vult de ruimte zonder de afbeelding te vervormen */
    border-radius: 20px;
    display: block; /* Voorkomt een kleine witruimte onder de afbeelding */
}


/* --- RESPONSIVE AANPASSINGEN VOOR MOBIEL --- */
@media (max-width: 768px) {
    .club-feature-box {
        /* Stapel de kolommen op elkaar */
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    /* Zorg dat de tekstkolom nu de volledige breedte inneemt */
    .club-feature-box__text {
        text-align: center; /* Centreer de tekst voor een nette mobiele weergave */
    }
    
    .club-feature-box__image {
        max-width: 100%;
        width: 100%;
    }
}

.contact-info-list {
    margin-block: 1rem;
        font-family: 'Vestula';
}

.contact-info-list dl {
    display: grid;
    /* De eerste kolom past zich aan de breedte van de tekst aan, de tweede neemt de rest in */
    grid-template-columns: auto 1fr; 
    gap: 0.75rem 1.5rem; /* Ruimte tussen rijen en kolommen */
    margin: 0;
}

.contact-info-list dt { /* De labels: Website, E-mail, etc. */
    font-weight: 600;
    color: #6c757d;
}

.contact-info-list dd { /* De waarden: de links */
    margin: 0; /* Verwijder de standaard browser-marge */
}

.contact-info-list a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}
.contact-info-list a:hover {
    text-decoration: underline;
}

/* Responsive aanpassing voor kleine schermen */
@media (max-width: 576px) {
    .contact-info-list dl {
        grid-template-columns: 1fr; /* Maak er één kolom van */
        gap: 0.25rem;
    }
    
    .contact-info-list dt {
        text-align: left; /* Lijn de labels weer links uit */
        font-size: 0.8em;
        text-transform: uppercase;
        margin-bottom: 0.25rem;
    }
}

