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

@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/VestulaPro-Light.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/VestulaPro-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: italic;
  font-weight: 400;
  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: 700;
  src: url("/fonts/VestulaPro-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Vestula";
  font-style: normal;
  font-weight: 900;
  src: url("/fonts/VestulaPro-Black.woff2") format("woff2");
}

/* ===================================================================
   2. DESIGN TOKENS (CSS VARIABLES)
   =================================================================== */
:root {
  /* Kleurenpalet */
  --clr-dark-blue: #001158;
  --clr-med-blue: #0e76bc;
  --clr-accent: #41c3eb; /* #42c3eb in sommige delen, #41c3eb in andere. Consistent gemaakt op accent */
  --clr-yellow: #fdd835;
  --clr-text: #333333;
  --clr-bg-light: #e7f4fa;
  --clr-white: #ffffff;
  --clr-bg-blue: #bcdcf5;


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

  /* Spacing & Radius */
  --container-max: 1200px;
  --radius-std: 20px;
  --radius-btn: 10px;

  /* Spatiëring */
  --space-xs: 0.5rem; /* 8px */
  --space-s: 1rem; /* 16px */
  --space-m: 1.5rem; /* 24px */
  --space-l: 2rem; /* 32px */
  --space-xl: 4rem; /* 64px */

  /* 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. RESET & GLOBALE INSTELLINGEN
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; 
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-text);
  min-height: 100vh;
  background-color: var(--clr-white); /* Standaard wit */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Body variant voor pagina's ZONDER hero image */
body.bg-blue {
  /* background: var(--clr-bg-light); */
  background-color: #e7f4fa;
}

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

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

ul {
  list-style: none;
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

/* Specifieke H1 en H2 styling (o.a. gebruikt in intro's) */
h1 {
  font-size: 52px;
  color: var(--clr-dark-blue);
  line-height: 1;
  margin-bottom: 2rem;
}

h1 strong {
  color: var(--clr-accent);
}

h2 {
  font-size: clamp(36px, 4vw + 1rem, 52px);
  color: var(--clr-dark-blue);
  line-height: 1;
  margin-bottom: 2rem;
}

h2 span:nth-child(2) {
  display: block;
  color: var(--clr-accent);
}

h2 strong {
  color: var(--clr-accent);
}

/* ===================================================================
   4. LAYOUT & UTILITIES
   =================================================================== */
.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.top-margin {
  margin-top: 20px;
}

.bottom-margin {
  margin-bottom: 6rem;
}

.content-section {
  padding: 80px 40px;
  background-color: var(--clr-white);
  min-height: 50vh;
}

.dashboard-section {
  background-color: var(--clr-bg-light);
    padding-block: 6rem;
}

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

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

.responsive-video-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
}

.responsive-video-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.prose p {
  font-size: 18px;
  font-family: var(--font-serif);
}

.prose a {
  border-bottom: 2px solid #41c3eb;
}

.prose a:hover {
  border-bottom: none;
}

.prose ul {
    list-style: initial;
    font-family: var(--font-serif);
    font-size: 18px;
}

.prose.level-tabs ul {
  list-style: none;
}

.prose ul li::marker {
  color: var(--clr-accent);
  font-size: 1.2em;
}

.prose ol li::marker {
  color: var(--clr-accent);
  font-weight: bold;
}

.full-image {
  margin: 0;
}

.full-image img,
.text-image img {
  border-radius: 20px;
}

.margin-left-1 {
  margin-left: 10px;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .two-column-layout.layout-3-2 {
    grid-template-columns: 3fr 2fr;
  }

  .two-column-layout.layout-2-3 {
    grid-template-columns: 2fr 3fr;
  }

  .two-column-layout.layout-1-1 {
    grid-template-columns: 1fr 1fr;
  }

  .two-column-layout.layout-2-1 {
    grid-template-columns: 2fr 1fr;
  }

  .two-column-layout.layout-1-2 {
    grid-template-columns: 1fr 2fr;
  }

  .two-column-layout.layout-2-4 {
    grid-template-columns: 2fr 4fr;
  }

  .two-column-layout.location-map.layout-2-4 {
    gap: 10rem;
    grid-template-columns: 1fr 1.4fr;
  }

  .two-column-layout.layout-4-2 {
    grid-template-columns: 4fr 2fr;
  }
}

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

/* Hoofd-layout voor pagina's met sidebar */
.page-layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 20px;
}

@media (min-width: 900px) {
  .page-layout-with-sidebar {
    grid-template-columns: 260px 1fr;
    gap: 2rem;
  }
}

/* ===================================================================
   5. HEADER & NAVIGATIE
   =================================================================== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: var(--clr-white);
  margin: auto;
  width: 90%;
  max-width: var(--container-max);
}

/* Header style op pagina's zonder hero image (blauwe achtergrond) */
.bg-blue .main-header {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  z-index: inherit;
  color: var(--clr-text);
}

.logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* --- Logo Styling --- */
.logo {
  display: block;
  width: 160px;
}
.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Logo logica: Standaard (donker) of Wit (diapositief) */

/* Situatie 1: Pagina MET Hero Image (Header is transparant) */
.logo-standard {
  display: none;
}
.logo-white {
  display: block;
}

/* Situatie 2: Pagina ZONDER Hero Image (Body is blauw, header is normaal) */
.bg-blue .logo-standard {
  display: block;
}
.bg-blue .logo-white {
  display: none;
}

/* --- Navigatie Menu --- */
.main-nav ul {
  display: flex;
  align-items: center;
}

.main-nav a {
  font-size: 1.1em;
  font-weight: 600;
  position: relative;
  padding: 12px 24px;
}

.main-nav a:hover {
  background: #fff;
  border-radius: var(--radius-btn);
  color: #333;
  text-decoration: none;
}

.main-nav a.active {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  text-decoration-color: #41c3eb;
}

.main-nav a.active:hover {
  text-decoration: none;
}

.main-nav a.nav-button:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

.nav-button {
  align-items: center;
  padding: 12px 24px;
  background-color: var(--clr-med-blue);
  color: var(--clr-white);
  border-radius: var(--radius-btn);
  font-size: 1.1em;
  font-weight: 400;
  font-family: var(--font-body);
  transition: background-color 0.6s ease, transform 0.2s ease;
  border: none;
  margin-left: 20px;
}


.nav-item-has-dropdown {
    position: relative; /* Zodat het menu eronder blijft hangen */
    display: flex;
    align-items: center;
}

/* Zorg dat de link en het icoon netjes uitlijnen */
.nav-item-has-dropdown > a {
    display: flex;
    align-items: center;
}

.nav-item-has-dropdown > a:hover {
    background: none;
    color: #fff;
}

.bg-blue .nav-item-has-dropdown > a:hover {
    color: #333;
}


/* De Dropdown (Verborgen) */
.nav-dropdown-menu {
    position: absolute;
    top: 100%; /* Direct onder de balk */
    left: 0;   /* Links uitlijnen met de tekst 'Sporten' */
    background: var(--clr-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px; /* Iets breder dan de taalswitch */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
    display: block;          /* Overschrijf display: flex van de parent */
    flex-direction: column;  /* Voor de zekerheid (als je toch flex wilt) */
}

/* De Linkjes in de dropdown */
.nav-dropdown-menu li {
    display: block;
    width: 100%;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 1rem; /* Iets kleiner dan hoofdmenu */
    font-weight: normal;
    color: var(--clr-text);
    text-align: left;
}

.menu-open .nav-dropdown-menu li a {
  text-align: center;
}

/* Hover linkjes */
.nav-dropdown-menu li a:hover {
    /* color: var(--clr-med-blue); */
    background-color: var(--clr-bg-light);
}
/* Verwijder het onderstreep-effect van het hoofdmenu voor deze items */
.nav-dropdown-menu li a::after {
    display: none;
}

/* --- DE ACTIE (Hover) --- */
.nav-item-has-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item-has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .nav-dropdown-menu {
        position: static; /* Gewoon in de stroom */
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px; /* Beetje inspringen */
        background: transparent;
        display: block; /* Altijd zichtbaar op mobiel (of maak er een accordeon van) */
    }
    
    .nav-item-has-dropdown {
        flex-direction: column; /* Onder elkaar */
    }
    
    .dropdown-icon {
        display: none; /* Pijltje is vaak niet nodig op mobiel als alles al open staat */
    }
}

.lang-switch-item {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 20px;
  cursor: pointer;
}

.lang-trigger {
  display: flex;
  gap: 6px;
  font-weight: bold;
}

.lang-trigger .dropdown-icon {
  transition: transform 0.3s ease;
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 99;
}

.lang-dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  text-align: center;
  color: #333;
}

.lang-dropdown-menu li a:hover {
  color: var(--clr-med-blue);
}
.main-nav .lang-dropdown-menu li a:hover::after {
  width: 0%;
}

.lang-switch-item:hover .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switch-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* --- HAMBURGER KNOP (Alleen zichtbaar op mobiel) --- */
.hamburger-btn {
  display: none; /* Standaard weg op desktop */
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001; /* Moet boven het menu liggen */
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin-top: 14px;
}

.hamburger-btn .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--clr-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.bg-blue .hamburger-btn .bar,
.menu-open .hamburger-btn .bar{
  background-color: var(--clr-text);
}

/* --- Styling voor de Breadcrumbs --- */
.breadcrumbs {
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
  /* order: 3;  */
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin: 0 var(--space-xs);
  color: var(--clr-white);
}

.breadcrumbs__item a {
  color: var(--clr-white);
  text-decoration: none;
}

.bg-blue .breadcrumbs__item a,
.bg-blue .breadcrumbs__item:not(:last-child)::after {
  color: var(--clr-text);
}

.breadcrumbs__item a:hover {
  text-decoration: underline;
}

.breadcrumbs__item span {
  /* color: var(--clr-text); */
  font-weight: bold;
}

/* --- MOBIELE STIJLEN --- */
@media (max-width: 992px) {
  /* Toon de hamburger */
  .hamburger-btn {
    display: flex;
  }

  /* Het Menu Container (Standaard verborgen rechts buiten beeld) */
  .header-nav-content {
    position: fixed;
    top: 0;
    right: -100%; /* Uit beeld geschoven */
    width: 100%;
    height: 100vh;
    background-color: white; /* Of USC Oranje/Grijs */
    z-index: 1000;
    padding: 80px 20px 40px; /* Ruimte bovenin voor de knop */
    transition: right 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto; /* Zorg dat je kunt scrollen als het menu lang is */
  }

  /* Als het menu OPEN is (via Javascript class) */
  .header-nav-content.is-open {
    right: 0; /* Schuif in beeld */
  }

  /* De lijst onder elkaar zetten */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center; /* Alles centreren */
    gap: 20px;
    padding: 0;
  }

  .main-nav li {
    width: 100%;
    text-align: center;
  }

  /* Links groter maken voor dikke duimen */
  .main-nav a {
    font-size: 1.2rem;
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
  }
  

  /* De "Word Lid" knop op mobiel */
  .main-nav a.nav-button {
    display: inline-block !important; /* Zorg dat hij niet 100% breed wordt als je dat niet wilt */
    margin-top: 10px;
    color: #fff;
  }

  .current-lang {
    color: var(--clr-bg-blue);
  }

  /* --- HAMBURGER ANIMATIE NAAR KRUISJE --- */
  body.menu-open .hamburger-btn .bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }
  body.menu-open .hamburger-btn .bar:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .hamburger-btn .bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  /* --- TAAL SWITCH OP MOBIEL --- */
  /* We willen geen hover, maar gewoon dat het menuutje eronder staat of uitklapt */
  .lang-switch-item {
    margin-left: 0; /* Reset desktop margin */
    width: auto;
    display: inline-block;
  }

  .lang-trigger {
    justify-content: center;
    padding: 10px 20px;
  }

  /* Op mobiel de dropdown 'relatief' maken zodat hij niet zweeft maar ruimte inneemt */
  .lang-dropdown-menu {
    position: static; /* Niet meer absolute */
    box-shadow: none;
    background: transparent;
    display: none; /* Verberg items standaard */
    padding-top: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
  }

  /* Als je op de taal klikt (of we maken hem standaard open op mobiel) */
  .lang-switch-item:active .lang-dropdown-menu,
  .lang-switch-item:focus-within .lang-dropdown-menu {
    display: block;
  }
}

/* ===================================================================
   HOMEPAGE
   =================================================================== */

.home-hero {
    position: relative;
    /* Hoogte: Minimaal 600px, maar liefst 90% van het scherm */
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center; /* Verticaal centreren van de .container */
    color: var(--clr-white);
    overflow: hidden;
}

/* --- ACHTERGRONDEN & OVERLAY --- */
.home-hero__bg {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 0; /* Helemaal achteraan */
}

/* Video Support (Zorg dat video ook 'cover' pakt) */
.home-hero__bg video,
.home-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* De Gradients Overlay */
.home-hero .overlay {
    position: absolute;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    z-index: 1; /* Bovenop de video/foto */
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 40%), 
        linear-gradient(68deg, rgb(0 8 16) 10%, rgba(0, 0, 0, 0) 80%);
}

/* Ken Burns Animatie */
@keyframes kenBurns {
    0% { 
        transform: scale(1.0);
        transform-origin: 10% 10%;
    }
    100% { 
        transform: scale(1.25);
        transform-origin: 90% 90%;
    }
}

.ken-burns {
    animation: kenBurns 15s infinite alternate ease-in-out;
    will-change: transform; /* Performance optimalisatie */
}

/* --- CONTENT --- */
.home-hero__content {
    position: relative;
    z-index: 2; /* MOET hoger zijn dan .overlay (1) */
    max-width: 800px;
    padding-top: 60px; /* Visuele correctie voor header */
}

/* Typografie */
#hero-title {
    /* Font-size staat al in je globale CSS, maar hier specifiek: */
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.hero-lead {
    font-size: 1.5rem; /* Lekker groot leesbaar intro */
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.9;
    color: var(--clr-white);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

/* --- MOBIEL --- */
@media (max-width: 768px) {
    .home-hero {
        height: auto; /* Op mobiel mag hij gewoon zo hoog zijn als de content */
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-lead {
        font-size: 1.2rem;
    }
    
}

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center; /* Tekst centreren */
    }
}

/* Container voor de divider */
.hero-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 3; /* Bovenop de video/foto/overlay */
}

.hero-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px); /* Voorkomt kiertjes */
    fill: #e7f4f9;
}

/* De kleur van de golf */
.hero-divider .shape-fill {
    fill: var(--clr-bg-light); /* MATCH DIT MET DE ACHTERGROND VAN BLOK 2! */
}

/* --- AUDIENCE BOX --- */
.audience-box {
  background-color: #fff;
  border-radius: var(--radius-std);
  color: #001158;
  border: 3px solid #ededed;
  overflow: hidden;
}

.audience-box-header {
  padding: 3rem 3rem 0;
}

.audience-box h2 {
  font-size: 52px;
  margin-bottom: 4px;
  line-height: 1;
  margin-top: 10px;
}

.audience-box h2 span {
  color: var(--clr-accent);
}

.audience-card {
    background-color: var(--clr-dark-blue); /* Donkerblauw voor contrast */
    color: var(--clr-white);
    border-radius: var(--radius-std);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%; /* Even hoog als rechts */
    box-shadow: 0 10px 30px rgba(0, 17, 88, 0.15);
}

.audience-card h3 {
    color: var(--clr-white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.audience-card p {
    color: var(--clr-accent);
    font-weight: 600;
    margin-bottom: 2rem;
}

.audience-options {
    display: flex;
    margin-block: 0 2.5rem; 
    flex-direction: column;
    flex-grow: 1;
}

.audience-option {
  display: flex;
  justify-content: space-between; 
  align-items: center;           
  gap: 20px;                      
  padding: 1.5rem 3rem;
  border-bottom: 1px solid #ededed;
  text-decoration: none;        
  transition: all 0.2s ease-in-out;
}

.audience-option:first-child {
  padding: 2rem 3rem 1.5rem;
}

.audience-option:hover {
  background-color: #f0fbff;
}

.audience-option strong {
  color: var(--clr-med-blue);
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.audience-option span {
  display: block;
  font-size: 20px;
  line-height: 1.3;
  font-weight: normal;
}

.audience-box-button {
  padding: 0 3rem 2rem;
}

.option-icon {
  display: flex;  
  color: var(--clr-accent);
  flex-shrink: 0;      
}

.option-icon svg {
    width: 24px;
    height: 24px;
}

/* --- NIEUWS DASHBOARD  --- */

.news-header {
  font-size: 32px;
  color: var(--clr-med-blue);
}

.news-dashboard-list {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (min-width: 900px) {
   .news-dashboard-list {
      margin-top: 74px;
    }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.news-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
}

.news-item-horizontal {
    display: flex;
    text-decoration: none;
    gap: 1.5rem;
    transition: all 0.13s ease-in-out;
}

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

.horizontal-thumb {
    background: var(--clr-accent);
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-thumb.is-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-icon {
  width: 40px;
  height: 40px;
  color: var(--clr-bg-light);
}

.horizontal-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%;
}

.horizontal-title {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;
    color: var(--clr-dark-blue);
    font-weight: 700;
}

.horizontal-title strong {
    color: var(--clr-med-blue);
  font-weight: 700;
}

.horizontal-thumb.is-date-box {
    background-color: #001158;
    color: #ffffff;
    flex-direction: column;
    line-height: 1;
}

.date-box-content .day {
    display: block;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 2px;
}

.date-box-content .month {
    display: block;
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #aed5e7;
}

.more-link {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--clr-med-blue);
}

.more-link:hover {
  text-decoration: underline;
}

/* --- NIEUWS EN AGENDA OVERZICHT --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- DE KAART --- */
.news-card {
    background: var(--clr-white);
    border-radius: var(--radius-std);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Zorgt dat ze even hoog zijn */
}

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

/* Afbeelding Area */
.news-card__image {
    height: 200px;
    position: relative;
    background-color: var(--clr-bg-pale);
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder als er geen foto is */
.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--clr-med-blue), var(--clr-accent));
    opacity: 0.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img svg {
    width: 110px;
    height: 110px;
    color: #fff;
}

/* --- BADGES (Datum & Type) --- */
.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--clr-dark-blue);
    padding: 18px 12px;
    border-radius: 8px;
    text-align: center;
    color: var(--clr-white);
    line-height: 1;
    min-width: 70px;
}

.date-badge .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

.date-badge .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
      color: #aed5e7;
}

.type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--clr-med-blue);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- CONTENT --- */
.news-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.meta-date {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-bottom: 0.5rem;
}

.news-card__title {
    font-size: 28px;
    margin: 0 0 0.75rem 0;
    line-height: 1.15;
    color: var(--clr-dark-blue);
}

.news-card__title strong {
      color: var(--clr-accent);
}

.news-card__intro {
    font-size: 18px;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-family: var(--font-serif);
}

.read-more {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--clr-med-blue);
}

.news-card:hover .read-more {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}


/* --- PARALLAX SECTIE --- */
.parallax-section {
    position: relative;
    min-height: 600px;
    padding-block: 6rem;
    background-image: var(--parallax-bg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    display: flex;
    align-items: center; 
  
}

.parallax-section.parallax-right {
    justify-content: flex-end;
}

/* Donkere laag voor contrast */
.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 17, 88, 0.4); 
    z-index: 1;
}

.parallax-container {
    position: relative;
    z-index: 2;
}

.parallax-right .parallax-container {
    display: flex; justify-content: flex-end;
}

.parallax-card {
    background-color: rgb(255 255 255 / 85%);
    padding: 3.5rem;
    max-width: 560px;
    border-radius: var(--radius-std);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.parallax-card h2 {
    margin-bottom: 1.5rem;
}

.parallax-card p {
    font-size: 18px;
    font-family: var(--font-serif);
}

.usp-list {
    padding: 0;
    margin: 0 0 2.5rem 0;
    list-style: none;
}

.usp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--clr-dark-blue);
    font-size: 1.05rem;
}

.check-icon {
    color: var(--clr-accent); 
}

@media (max-width: 900px) {
    .parallax-section {
        background-attachment: scroll;
        padding-block: 4rem;
        align-items: flex-start; 
    }
    .parallax-card {
        padding: 2rem;
        width: 100%;
    }
}

/* --- SPOTLIGHT --- */
.spotlight-content p {
  font-size: 18px;
  font-family: var(--font-serif);
  margin-bottom: 3rem;
}

.spotlight-image-wrapper img {
  border-radius: 20px;
}


/* ===================================================================
   NEWS/EVENTS FULL
   =================================================================== */


/* --- HEADER (De Blauwe Fade) --- */
.article-header {
    background: linear-gradient(to bottom, #e7f4fa 0%, #e7f4fa 70%, #ffffff 100%);
    padding-top: 20px;
    padding-bottom: 4rem;
    text-align: center; /* Alles centreren in de header */
}

.header-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Meta Labels */
.meta-label {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--clr-text-light);
    letter-spacing: 1px;
}
.event-label { color: var(--clr-accent); }

/* Titel */
.article-title {
    font-size: 3.5rem; /* Lekker groot */
    line-height: 1.1;
    color: var(--clr-dark-blue);
    max-width: 900px;
    margin: 0 auto 3rem auto; /* Centreren + ruimte onder */
}

/* Afbeelding */
.article-image-wrapper {
    width: 100%;
    max-width: 1000px; /* Zoals gevraagd */
    border-radius: var(--radius-std);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 17, 88, 0.1); /* Mooie diepte */
    background-color: var(--clr-white); /* Fallback */
    margin-bottom: -2rem; /* Laat hem iets 'zakken' in de volgende sectie? Optioneel. */
}

.article-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 600; /* Forceer verhouding */
    object-fit: cover;
    display: block;
}


/* --- BODY (Wit) --- */
.article-body-section {
    background-color: var(--clr-white);
    padding-bottom: 6rem;
    padding-top: 2rem;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
}

/* Event Info Box styling (Specifieke tweaks) */
.event-details-box {
    margin-bottom: 3rem;
    /* Zorg dat de tekst erin links uitlijnt, ook al staat de parent misschien center */
    text-align: left; 
}

.info-list-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Naast elkaar op desktop! */
    gap: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
/* Reset de border van de li items van de sidebar css */
.info-list-sidebar li { border: none; margin: 0; padding: 0; }


/* Tekst Content */
.article-text-content {
    text-align: left; /* Expliciet links uitlijnen */
}

.intro-lead {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--clr-dark-blue);
    margin-bottom: 2.5rem;
}

/* Mobiel */
@media (max-width: 768px) {
    .article-title { font-size: 2.5rem; }
    .article-header { padding-top: 120px; }
    .info-list-sidebar { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===================================================================
   WEEK ROOSTER
   =================================================================== */


.iframe-container {
    overflow: hidden;
    border: none;
}

.iframe-container.weekoverview {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e6e9ed;
}

.iframe-container.weekoverview iframe {
    width: 100%;
    height: 85vh;      
    min-height: 600px; 
    border: none;
    display: block;   
}


/* ===================================================================
   ALGEMENE PAGINA
   =================================================================== */

.general-container {
    background: #fff;
    padding: 4rem;
    border-radius: 20px;
    max-width: 960px;
    border: 3px solid #ededed;
}






/* ===================================================================
   6. HERO SECTION
   =================================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 780px;
  min-height: 80vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  color: var(--clr-white);
  padding: 170px 0 0 0;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 40%
    ),
    linear-gradient(68deg, rgb(0 8 16) 10%, rgba(0, 0, 0, 0) 80%),
    var(--hero-bg);
}

@media only screen and (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll; 
        height: auto;                 
        min-height: 80vh;           
    }
}

.hero-main-content {
  max-width: 500px;
  margin-top: 60px;
}

#hero-title {
  font-size: clamp(48px, 5vw + 1rem, 72px);
  color: #fff;
  line-height: 1;
  overflow: hidden;
  margin-bottom: 0;
  hyphens: auto; 
  word-break: break-word;
}

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

.info-card {
  font-family: var(--font-body);
}

.info-list {
  display: flex;
  flex-direction: column;
  color: var(--clr-white);
  font-size: 19px;
  margin-block: 40px;
  padding-block: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

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

.info-item dt {
  font-weight: 600;
  margin-right: 10px;
  white-space: nowrap;
}

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

/* Star Rating Component */
.star-rating {
  display: inline-flex;
  gap: 0.25rem;
}
.star {
  display: inline-block;
  width: 20px;
  height: 20px;
  --star-icon: var(--star-icon-outline);
  background-color: var(--clr-med-blue);
  -webkit-mask-image: var(--star-icon);
  mask-image: var(--star-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.info-list .star {
  background-color: #fff;
}

.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);
}

/* ===================================================================
   7. UI COMPONENTS: BUTTONS
   =================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  background-color: var(--clr-med-blue);
  color: var(--clr-white);
  border-radius: var(--radius-btn);
  font-size: 1.1em;
  font-weight: 400;
  font-family: var(--font-body);
  transform: translateY(0);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, width 0.6s ease, padding 0.6s ease,
    transform 0.6s ease, opacity 0.6s ease;
  overflow: hidden;
}

.button:hover {
  background-color: var(--clr-accent);
  color: var(--clr-white);
}

/* Stroke variant */
.button.stroke {
  background: none;
  border: 1px solid var(--clr-med-blue);
  color: var(--clr-med-blue);
}
.button.stroke.light {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 0 30px;
}

.button.stroke:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent) !important;
  color: var(--clr-white);
}
.promo-box .button.stroke {
  border-color: var(--clr-white);
  color: var(--clr-white);
}

/* --- Scroll Animatie voor buttons --- */
.button.animate-on-scroll {
  width: 50px; /* Startbreedte */
  padding: 0;
  opacity: 1;
}

.button-text {
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  transition: max-width 0.6s ease, opacity 0.6s ease, padding-left 0.6s ease;
}

.button-icon {
  margin-left: 10px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.button.is-animated {
  width: max-content;
  padding-right: 24px;
}

.button.is-animated .button-text {
  max-width: 300px;
  opacity: 1;
  padding-left: 24px;
}

.gallery-item .button {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* ===================================================================
   8. FILTER SIDEBAR & FORMS
   =================================================================== */
.filter-sidebar h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0;
  color: var(--clr-med-blue);
}

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

.filter-group-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--clr-dark-blue);
}

.filter-checkbox {
  display: block;
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  cursor: pointer;
  font-size: 18px;
  user-select: none;
  line-height: 22px;
}
.filter-checkbox.is-parent {
  font-weight: bold;
}
.filter-child-group {
  padding-left: 12px;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.filter-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 1px solid #ccc;
  transition: background-color 0.2s ease;
}

/* Checkmark Box */
.checkmark svg {
  width: 24px;
}
.filter-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.filter-checkbox input[type="radio"]:checked ~ .checkmark {
  background-color: var(--clr-med-blue);
  border-color: var(--clr-med-blue);
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  width: 8px;
  height: 13px;
  border: solid var(--clr-med-blue);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Radio variant */
.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: 8px;
  height: 8px;
  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 Toggle */
.filter-toggle-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  color: #333;
}

.filter-toggle-mobile .arrow-icon {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
    color: currentColor; /* Neemt tekstkleur over */
}

.filter-toggle-mobile[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

@media (min-width: 900px) {
  .filter-toggle-mobile {
    display: none;
  }
}

@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;
  }
}

/* ===================================================================
   9. SECTIE: SPORT LIJST & TABEL
   =================================================================== */

/* Container voor de badges */
.sport-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
  align-items: start; /* Belangrijk: zorgt dat items niet uitrekken in hoogte als een buur uitklapt */
  margin-bottom: 40px;
}

.sport-grid-container.related-sports {
  grid-template-columns: repeat(4, 1fr); 
}

.sport-grid-container.sport-overview {
    grid-template-columns: repeat(4, 1fr); 
    margin-top: -460px;
}

/* Algemene kaart styling */
.sport-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 15px;
  border: 1px solid #e6e9ed;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.sport-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sport-card.is-group:hover {
  transform: scale(1);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 15px;
}

/* Afbeeldingen */
.sport-card-image {
  width: 100%;
  height: 150px;
  position: relative;
}

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

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
}

/* Label voor categorieën */
.badge-label {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clr-med-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
}

/* Content Body */
.sport-card-content {
  padding: 20px 30px 40px;
  display: flex;
  flex-direction: column;
  min-height: 120px;
}

.sport-title {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  color: #001158;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Details Footer (Locaties & Sterren) */
.sport-card-footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* Locatie tags (iets compacter gemaakt voor in de kaart) */
.sport-locations .location-tag {
  display: inline-block;
  font-size: 13px;
  padding: 4px 10px;
  border: solid 1px #0e76bc;
  border-radius: 20px;
  color: #001158;
  margin-right: 4px;
}

/* Sterren aanpassing voor kleine ruimte */
.sport-intensity .star-rating {
  font-size: 14px; /* Iets kleiner dan origineel */
}

/* ===================================================================
   ACCORDEON / CATEGORIE SPECIFIEK
   =================================================================== */

details.sport-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  /* Reset min-height voor details om witruimte te voorkomen */
  height: auto;
}

summary.sport-card-summary {
  list-style: none;
  outline: none;
}
summary.sport-card-summary::-webkit-details-marker {
  display: none;
}

.sport-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sport-children {
  display: inline-block;
  font-size: 14px;
  padding: 4px 30px;
  border: solid 1px #0e76bc;
  border-radius: 20px;
  background: #0e76bc;
  color: #fff;
  font-weight: bold;
}

.toggle-icon .arrow {
  transition: transform 0.3s ease;
  color: #0e76bc;
}

details[open] .arrow {
  transform: rotate(180deg);
}

/* Kinder items (het menu) */
.sport-card-children {
  background-color: #fcfcfc;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.child-sport-item {
  padding: 20px 20px 40px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background 0.2s;
}

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

.child-sport-item:hover {
  background-color: #e7f4f9;
}

.child-name {
  display: block;
  margin-bottom: 16px;
  font-size: 21px;
  font-weight: 700;
  color: #001158;
  text-transform: uppercase;
  line-height: 1.2;
}

.child-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  flex-wrap: wrap;
  gap: 6px;
}

.child-locs .location-tag {
  /* Hergebruik basis styling maar zonder border in het menuutje voor rustiger beeld */
  border: none;
  padding: 0;
  background: transparent;
  color: #666;
  font-weight: 500;
}
/* Komma toevoegen als er meerdere zijn in menu stijl? */
.child-locs .location-tag:not(:last-child):after {
  content: ",";
}

.separator {
  color: #ccc;
  font-size: 10px;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

/* @media (max-width: 1200px) {
  .sport-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
} */

@media (max-width: 900px) {
  .sport-grid-container,
  .sport-grid-container.related-sports,
  .sport-grid-container.sport-overview  {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sport-grid-container,  
  .sport-grid-container.related-sports,
  .sport-grid-container.sport-overview  {
    grid-template-columns: 1fr;
  }
  .sport-card-image {
    height: 180px;
  }
}

/* ===================================================================
   10. SECTIES: INTRO & REQUIREMENTS
   =================================================================== */

.requirements-box {
  position: relative;
  background-color: #bcdcf5;
  border-radius: var(--radius-std);
  padding: 0;
  background-image: url(https://mww.universiteitleiden.nl/assets/images/rings-white.svg);
  background-repeat: no-repeat;
  background-position: right bottom;
  border-bottom-right-radius: var(--radius-std);
}

.requirements-box-content {
  padding: 3rem;
}

.requirements-box .info-box-title,
.requirements-box-content h3 {
  margin-top: 18px;
  margin-bottom: 2rem;
  color: var(--clr-med-blue);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
}
.requirements-box .checklist {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.requirements-box .checklist-item {
  display: flex;
  position: relative;
  font-size: 21px;
  line-height: 1.2;
  user-select: none;
  color: var(--clr-text);
  font-weight: 600;
  align-items: flex-start;
}
.requirements-box .checklist-item small {
  display: block;
  font-weight: 400;
  opacity: 0.7;
  font-size: 18px;
  margin-top: 6px;
}

.checklist-checkmark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist-text {
  padding-left: 12px;
}

/* ===================================================================
   11. SECTIE: ROOSTER (TABS & DROPDOWNS)
   =================================================================== */

.roster {
  background-color: var(--clr-white);
  border-radius: 20px;
  border: 1px solid #e6e9ed;
}

.roster-section {
  padding-block: 6rem;
  background: var(--clr-bg-light);
}
.roster-container {
  background: var(--clr-white);
  border-radius: var(--radius-std);
  padding: 3rem;
}
.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;
}

/* Tabs */
.tabs-nav {
  display: flex;
  border-bottom: 1px solid #d0d5dc;
}

.roster .tabs-nav {
  margin: 0 40px;
}

.tab-button {
  font-family: "Vestula", serif;
  font-weight: 700;
  color: #666;
  padding: 30px 30px 14px;
  border: none;
  border-bottom: 4px solid transparent;
  background: none;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.tab-button.tab-events {
    padding: 0 30px 14px;
}


.tab-button svg {
  width: 20px;
  margin-right: 6px;
}
.tab-button:hover {
  color: #0e76bc;
}
.tab-button.is-active {
  color: #0e76bc;
  border-bottom: 4px solid #0e76bc;
}

.tab-panel {
  display: none;
}
.tab-panel.is-active {
  display: block;
  padding: 40px 0;
}

.roster .tab-panel.is-active {
  padding: 40px;
}

.timetable-block {
  margin-bottom: 2.5rem;
}
.timetable-block:last-child {
  margin-bottom: 0;
}
.timetable-block h3 {
  font-size: 20px;
  font-weight: 600;
  font-family: "Vestula", serif;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
}

.iframe-container {
  overflow: hidden;
}

.iframe-container iframe {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  height: 450px;
  border: none;
}

.tab-panel,
.roster-iframe {
  display: none;
}
.tab-panel.is-active,
.roster-iframe.is-active {
  display: block;
}
.no-timetable-message {
  text-align: center;
  padding: 2rem;
  background-color: #f1f9fc;
  border-radius: 12px;
}

/* Custom Dropdown Styling */
.roster-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.roster-selector.location-selector {
  margin: 2rem 0 0 0;
}

.dropdown {
  position: relative;
  width: 300px;
  height: 50px;
  font: normal 18px / 1.3 "Vestula", sans-serif;
}
.dropdown::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 20px;
  top: 18px;
  border: 2px solid #333;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  transition: transform 0.5s;
  pointer-events: none;
  z-index: 1;
}
.dropdown.active::before {
  top: 22px;
  transform: rotate(-225deg);
}

.dropdown .textBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ececec;
  outline: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 0 0 0 20px;
  border-radius: 10px;
  font: inherit;
  color: #333;
}

.dropdown .option {
  position: absolute;
  top: 60px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 10;
}
.dropdown.active .option {
  display: block;
}
.dropdown .option div {
  padding: 16px 24px;
  cursor: pointer;
}
.dropdown .option div:hover {
  background-color: #62baea;
  color: #fff;
}

/* Container voor relatieve positionering van het pijltje */
.location-dropdown-wrapper {
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
}

/* De Select zelf */
.location-select {
  appearance: none; /* Verberg standaard browser styling */
  -webkit-appearance: none;
  width: 100%;
  background-color: #fff;
  border: 2px solid #0e76bc; /* Jouw blauwe kleur */
  color: #001158;
  padding: 15px 20px;
  font-size: 18px;
  font-family: "Vestula", serif;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
}

.location-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 118, 188, 0.3);
}

/* Het pijltje rechts */
.select-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* Klik gaat er doorheen naar de select */
  color: #0e76bc;
}

/* ===================================================================
   12. SECTIE: AUDIENCES (Voor Wie?)
   =================================================================== */
.audiences-section .section-intro {
  margin-bottom: 3rem;
}
.audiences-section .two-column-layout {
  align-items: center;
}
@media (min-width: 900px) {
  .audiences-section .two-column-layout {
    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: 20px;
  font-weight: 700;
  color: var(--clr-med-blue);
  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.6s ease;
  transform: rotate(-90deg);
}
.audience-item[open] > summary .arrow {
  transform: rotate(0deg);
}
.item-content {
  font-family: var(--font-serif);
  padding: 0 1rem 1.5rem 0;
  line-height: 1.7;
  color: var(--clr-text);
  font-size: 18px;
}

.item-content p {
  margin-block: 0;
}

.audience-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .audience-image-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 899px) {
  .audience-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.audience-image-grid figure {
  margin: 0;
  border-radius: var(--radius-std);
  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;
}

/* ===================================================================
   13. SECTIE: FAQ & ACCORDION
   =================================================================== */
.faq-section {
  padding-block: 6rem;
  background: var(--clr-bg-light);
}
.test {
  background: url(https://mww.universiteitleiden.nl/assets/images/tennisbaan.svg);
  width: 490px;
  height: 330px;
  position: absolute;
  right: 210px;
  background-repeat: no-repeat;
  opacity: 0.3;
  top: 230px;
  z-index: -1;
  transform: rotate(-13deg);
}

.accordion {
  max-width: 100%;
}
.accordion-item {
  box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
  background: var(--clr-white);
  margin-bottom: 1rem;
  border-radius: var(--radius-std);
  font-size: 18px;
}
.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: 23px;
  line-height: 1.1;
  color: #0e76bc;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.accordion-title::-webkit-details-marker {
  display: none;
}
.accordion-content {
  padding: 0 3rem 3rem 3rem;
  font-family: var(--font-serif);
}

.accordion-content p {
  margin-block: 0;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  flex-shrink: 0;
  color: var(--clr-med-blue);
  transition: transform 0.2s ease-in-out;
}
.accordion-item .icon-minus {
  display: none;
}
.accordion-item .icon-plus {
  display: block;
}
.accordion-item[open] .icon-plus {
  display: none;
}
.accordion-item[open] .icon-minus {
  display: block;
}
.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

/* ===================================================================
   14. SECTIE: LEVEL TABS & CARDS
   =================================================================== */
.level-cards-container {
  display: grid;
  gap: 2.5rem;
  margin: 2rem auto;
}
.level-card {
  overflow: hidden;
}
.level-card-header {
  color: var(--clr-dark-blue);
  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: var(--clr-dark-blue);
  margin-bottom: 0.75rem;
  border-bottom: 1px dotted #7783b7;
  padding-bottom: 0.5rem;
}
.level-column ul {
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 18px;
}
.level-column li {
  position: relative;
  padding-left: 20px;
  color: var(--clr-text);
}
.level-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-dark-blue);
  font-weight: bold;
}

/* Geneste Tabs (in FAQ) */
.level-tabs-container {
  margin: 2rem auto 1rem;
  overflow: hidden;
}
button.level-tab {
  font-family: "Vestula", serif;
  color: var(--clr-text);
  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: var(--clr-text);
}
.level-content-panel {
  display: none;
  padding: 1.5rem 2rem;
}
.level-content-panel.active {
  display: block;
  background-color: #bbdcf5;
  border-radius: var(--radius-std);
}
.level-content-panel:first-child.active {
  border-radius: 0 20px 20px 20px;
}
.level-columns-wrapper {
  display: flex;
  gap: 2rem;
}
.level-column {
  flex: 1;
}

/* ===================================================================
   15. SECTIE: LOCATIES & PARTNERS
   =================================================================== */
.city-location-section,
.location-intro  {
  margin-bottom: 6rem;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}

.location-card,
.badge-card {
  background-color: var(--clr-white);
  border-radius: var(--radius-std);
  border: 1px solid #e6e9ed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

a.location-card:hover,
a.badge-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-card__image img,
.badge-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.location-card__content,
.badge-card__content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.location-card__title,
.badge-card__title {
  font-size: 32px;
  margin-bottom: 4px;
  line-height: 1;
  margin-top: 20px;
  color: var(--clr-med-blue);
}

.badge-card__content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.location-card__address {
  font-style: normal;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.location-card__address a:hover {
  text-decoration: underline;
}

.location-card__features {
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #495057;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0d6efd;
}

.location-card__actions {
  margin-top: auto;
  padding-top: 12px;
}

/* Partner Lijst Styling */
.partner-card--list .location-card__title {
  padding-bottom: 1rem;
  border-bottom: 1px solid #dee2e6;
}
.partner-location-list {
  padding: 0;
  margin: 0;
  flex-grow: 1;
  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;
}
.partner-location-item:last-child {
  border-bottom: none;
}
.partner-location-item__info {
  flex-grow: 1;
}
.partner-location-item__info strong {
  display: block;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  font-size: 18px;
  color: var(--clr-med-blue);
}
.partner-location-item__info span {
  font-size: 0.9rem;
  color: #6c757d;
}
.partner-location-item__link {
  display: inline-flex;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid var(--clr-med-blue);
  color: var(--clr-med-blue);
  border-radius: var(--radius-btn);
}
.partner-location-item__link:hover {
  background-color: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.opening-hours-card {
  margin: 0px 0 30px 0;
}

.state {
    background: rgb(255 255 255 / 50%);
    display: inline;
    padding: 6px 16px 8px;
    border-radius: 20px;
}

/* Stijlen voor de statussen */
.status-closed {
  color: #d05314;
  font-weight: bold;
  background: #ffebee;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}

.note {
  font-style: italic;
  font-size: 15px;
  width: 100%;
  flex-basis: 100%;
}

.card-status-overlay {
  padding: 8px 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  margin: 16px 0;
}

/* --- BASIS BADGE STIJL --- */
.status-badge span {
  display: inline-flex; /* Zorgt dat bolletje en tekst netjes uitlijnen */
  align-items: center;
  padding: 6px 0;
  font-weight: 700;
  line-height: 1;
}

/* --- HET BOLLETJE (::before) --- */
.status-badge span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%; /* Maakt het rond */
  margin-right: 8px; /* Afstand tot de tekst */
  background-color: currentColor; /* Neemt automatisch de tekstkleur aan! */
  flex-shrink: 0;
}

/* --- KLEUREN --- */

/* OPEN (Groen) */
.badge-open {
  color: #14d055;
}

/* DICHT (Rood/Grijs) */
.badge-closed {
  color: #d05314;
}


.location-header {
  display: flex;
  flex-direction: column;
}

.location-header h1 {
  margin-bottom: 1rem;
}

/* De Container voor de Hero */
.location-hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 6rem auto;
}

/* --- HET GRID (De Magie) --- */
.gallery-grid {
  display: grid;
  /* We maken een grid van 4 kolommen breed en 2 rijen hoog */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 250px 250px; /* Hoogte bepalen */
  gap: 6px; /* De ruimte tussen de foto's */
  border-radius: 20px; /* Mooie ronde hoeken voor het geheel */
  overflow: hidden; /* Zorgt dat plaatjes niet buiten de ronde hoeken steken */
  margin-bottom: 30px;
}

/* Algemene stijl voor elk plaatje */
.gallery-item {
  position: relative;
  /* cursor: pointer; */
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Zorgt dat de foto het vakje vult zonder uitrekken */
  transition: transform 0.3s ease;
}

/* Hover effect: licht inzoomen */
.gallery-item:hover img {
  transform: scale(1.05);
}

/* --- DE GROTE FOTO (Links) --- */
/* De 1e foto pakt de eerste 2 kolommen én de eerste 2 rijen */
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* --- DE OVERIGE 4 FOTO'S (Rechts) --- */
/* Die vullen automatisch de overgebleven gaatjes van 1x1 */

/* Knopje 'Bekijk alle foto's' op de laatste foto (optioneel leuk detail) */
.view-all-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none; /* Zodat je door de knop heen op de foto klikt */
}

/* --- MOBIEL (Kleine schermen) --- */
@media (max-width: 768px) {
  .gallery-grid {
    /* Grid uitzetten, Flexbox aanzetten */
    display: flex;
    /* Zorgen dat het horizontaal scrollt */
    overflow-x: auto;
    /* Scroll Snap: het 'kleeft' aan de foto's */
    scroll-snap-type: x mandatory;
    height: 300px; /* Vaste hoogte voor mobiel */
    grid-template-rows: unset; /* Resetten */
    gap: 10px;
  }

  .gallery-item {
    /* Elke foto is bijna zo breed als het scherm */
    min-width: 90%;
    scroll-snap-align: center; /* Foto centreert bij scrollen */
    border-radius: 8px;
  }

  /* Resetten van de grid-span logica op mobiel */
  .gallery-item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }

  /* Scrollbalk verbergen (voor netheid) */
  .gallery-grid::-webkit-scrollbar {
    display: none;
  }
}

/* --- De Lijst --- */
.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

.detail-item {
  display: flex; /* Zet label en value naast elkaar */
  gap: 20px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Mobiel: op kleine schermen onder elkaar */
@media (max-width: 500px) {
  .detail-item {
    flex-direction: column;
    gap: 5px;
  }
}

/* --- Label & Value --- */
.label {
  font-weight: bold;
  min-width: 160px;
}

.value {
  flex: 1;
}

.value a {
  text-decoration: none;
}
.value a:hover {
  text-decoration: underline;
}

/* --- Het Openingstijden Lijstje --- */
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between; /* Duwt dag naar links, tijd naar rechts */
  margin-bottom: 4px;
}

/* De class voor VANDAAG */
.hours-list li.is-today {
  font-weight: bold;
}

.location-section {
  padding-block: 6rem;
  background: var(--clr-white);
}

/* Container van de dropdown */
.exceptions-dropdown {
  overflow: hidden;
}

/* De 'Knop' (altijd zichtbaar) */
.exceptions-summary {
  padding: 0 0 16px 0;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

/* Verbergt standaard driehoekje in Chrome/Safari */
.exceptions-summary::-webkit-details-marker {
  display: none;
}

.dropdown-icon {
  width: 24px;
  height: 24px;
  color: #fff;
  transition: transform 0.3s ease;
}

.bg-blue .dropdown-icon {
  color: #333;
}

.exceptions-dropdown[open] .dropdown-icon {
  transform: rotate(180deg);
}

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

.exceptions-list li {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 10px;
}

.exceptions-list li:last-child {
  border-bottom: none;
}

/* ===================================================================
   16. SECTIE: PRICING & PROMO
   =================================================================== */


.pricing-section {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 6rem;
}

.pricing-card {
  background-color: var(--clr-white);
  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 var(--clr-accent);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

.pricing-card__audience {
  font-size: 32px;
  margin-bottom: 4px;
  line-height: 1;
  margin-top: 40px;
  color: var(--clr-dark-blue);
}

.pricing-card__product-name,
.pricing-card__plan-type {
  color: var(--clr-text);
  margin: 0.25rem 0;
}

.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: var(--clr-accent);
  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: var(--clr-text);
  margin-left: 4px;
}
.button-wrapper {
  margin: auto;
}

/* Highlighted Plan */
.pricing-card--highlighted {
  border-color: #0d6efd;
  position: relative;
  transform: scale(1.05);
}
.pricing-card--highlighted .pricing-card__cta {
  background-color: #0d6efd;
  color: var(--clr-white);
}
.pricing-card--highlighted .pricing-card__cta:hover {
  background-color: #0b5ed7;
}
.pricing-card--highlighted::before {
  content: "Populairst";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0d6efd;
  color: var(--clr-white);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
}
.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;
  -moz-appearance: none;
  appearance: none;
  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;
  font-family: "Vestula", sans-serif;
  margin-top: 28px;
}

.pricing-info,
.rental-info {
  background: #fff;
}

.feature-card {
  background-color: #0e76bc;
  color: #fff;
  border-radius: 20px;
  border: solid 2px #41c3eb;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
  display: block;
  opacity: 0.6;
}

.feature-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.feature-card__list li {
  margin-bottom: 14px;
  border-bottom: 1px solid #5b89b1;
  padding-bottom: 14px;
}

.feature-card__list li:last-child {
  margin-bottom: 0;
  border: none;
}

.feature-card__list strong {
  font-weight: 700;
  color: #fff;
  font-size: 22px;
}

/* --- Mobiele Responsiveness --- */
@media (max-width: 768px) {
  .feature-card {
    padding: 30px;
    gap: 20px;
  }

  .feature-card__list {
    font-size: 1rem;
    text-align: left; /* Of center, wat je mooier vindt */
  }
}

/* --- Checklist tarieven --- */

.checklist-content ul {
  list-style: none; /* Weg met de bolletjes */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.3rem; /* Jouw gap */
}

.checklist-content li {
  position: relative;
  padding-left: 36px; /* Ruimte maken links voor het icoon (24px icoon + 12px gap) */
  font-size: 21px;
  line-height: 1.4;
  color: var(--clr-text);
  font-weight: 600;
}

/* Het vinkje toevoegen */
.checklist-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px; /* Beetje zakken zodat ie mooi lijnt met de tekst (margin-top uit vorige fix) */
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 12C3 4.5885 4.5885 3 12 3C19.4115 3 21 4.5885 21 12C21 19.4115 19.4115 21 12 21C4.5885 21 3 19.4115 3 12Z' stroke='%230e76bc' stroke-width='2'/%3E%3Cpath d='M9 12L10.6828 13.6828V13.6828C10.858 13.858 11.142 13.858 11.3172 13.6828V13.6828L15 10' stroke='%230e76bc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Styling voor de strong en small tags die uit de editor komen */
.checklist-content strong {
  font-weight: 800; /* Of wat je bold wilt hebben */
}

.checklist-content sub {
  /* Reset de standaard subscript stijlen */
  font-size: inherit;
  bottom: auto;
  display: block;
  font-weight: 400;
  opacity: 0.7;
  font-size: 18px;
}

/* Promo Box */
.promo-box {
  background-color: var(--clr-dark-blue);
  border-radius: var(--radius-std);
  padding: 3rem;
  color: var(--clr-white);
}
.promo-box h3 {
  font-size: 32px;
  margin-bottom: 4px;
  line-height: 1;
  margin-top: 40px;
}
.promo-box h3 span {
  color: var(--clr-accent);
}
.promo-box p {
  margin-block: 2rem;
  font-size: 18px;
  line-height: 1.4;
}

/* Container styling */
.pricing-table-container {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px; /* Of 100% afhankelijk van je layout */
  margin: 0 auto;
  border: 1px solid #e6e9ed;
  box-shadow: 0 10px 30px rgb(0 0 0 / 3%);
}

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

/* De rij (het item) */
.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border-bottom: 1px solid #dee2e6;
  transition: background-color 0.2s ease;
}

/* Laatste item heeft geen lijntje nodig */
.pricing-item:last-child {
  border-bottom: none;
}

.pricing-item.is-selected {
  background-color: #e7f4f9;
}

/* --- Linkerkant: Content --- */
.pricing-item__content {
  padding-right: 30px; /* Ruimte tussen tekst en prijs */
  flex: 1; /* Neemt alle beschikbare ruimte in */
}

.pricing-item__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-item__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #001158; /* Donkerblauw */
}

/* Het 'Kernwoord' labeltje */
.pricing-item__tag {
  font-size: 0.75rem;
  background-color: #eef2f5;
  color: #666;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* Tag styling in highlight modus */
.is-selected .pricing-item__tag {
  background-color: #fff;
  color: #0e76bc;
  border: 1px solid #0e76bc;
}

.pricing-item__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
  max-width: 500px; /* Zorgt dat regels niet oneindig lang worden op grote schermen */
}

/* --- Rechterkant: Prijs --- */
.pricing-item__price {
  text-align: right;
  min-width: 100px; /* Zorgt dat prijzen netjes onder elkaar lijnen */
  font-weight: 700;
  font-size: 28px;
  color: #0e76bc;
  line-height: 1;
}

.pricing-item__price .currency {
  vertical-align: top;
  margin-right: 2px;
}

.pricing-item__price .period {
  display: block; /* Zet '/mnd' onder de prijs */
  font-size: 0.8rem;
  color: #333;
  font-weight: 400;
  margin-top: 4px;
}

/* --- Mobiele aanpassing --- */
@media (max-width: 600px) {
  .pricing-item {
    flex-direction: column; /* Onder elkaar op mobiel */
  }

  .pricing-item__content {
    padding-right: 0;
    margin-bottom: 16px;
  }

  .pricing-item__header {
    justify-content: space-between;
  }

  .pricing-item__price {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 6px;
  }

  .pricing-item__price .period {
    display: inline; /* Naast elkaar op mobiel om hoogte te besparen */
  }
}

/* ===================================================================
   17. ANIMATIONS & UTILITIES
   =================================================================== */
.delay-1 {
  --animation-delay: 0.2s;
}
.delay-2 {
  --animation-delay: 0.4s;
}
.delay-3 {
  --animation-delay: 0.6s;
}
.delay-4 {
  --animation-delay: 0.8s;
}
.delay-5 {
  --animation-delay: 1s;
}
.delay-6 {
  --animation-delay: 1.2s;
}

.text-reveal-up > span {
  display: block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s),
    transform 0.8s ease-out var(--animation-delay, 0s);
}

.text-reveal-up.is-animated > span {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in var(--animation-delay, 0s);
  transform: none;
}

.fade-in.is-animated {
  opacity: 1;
}

.slide-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s),
    transform 0.8s ease-out var(--animation-delay, 0s);
}

.slide-from-left.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.slide-from-right {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.8s ease-out var(--animation-delay, 0s),
    transform 0.8s ease-out var(--animation-delay, 0s);
}

.slide-from-right.is-animated {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .slide-from-right, 
  .slide-from-left {
  transform: translateY(30px);
  }
}

.grow-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.7s ease-out var(--animation-delay, 0s),
    transform 0.7s ease-out var(--animation-delay, 0s);
}
.grow-in.is-animated {
  opacity: 1;
  transform: scale(1);
}

.zoom-in-scroll > img {
  transform: scale(1.5);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    var(--animation-delay, 0s);
}
.zoom-in-scroll.is-animated img {
  transform: scale(1);
}

.badge {
  padding: 30px;
  border-radius: 20px;
}

.badge.light {
  color: #fff;
}

/* --- FOOTER BASIS --- */
.site-footer {
    background-color: var(--clr-med-blue); /* #0c76bc */
    color: var(--clr-white);
    padding: 4rem 0 2rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: auto; /* Zorgt dat footer onderaan plakt bij weinig content */
}

/* --- GRID LAYOUT --- */
.footer-grid {
    display: grid;
    gap: 4rem;
    /* Desktop: 1/3 voor brand, 2/3 voor links */
    grid-template-columns: 1fr 2fr;
    margin-bottom: 3rem;
}

/* --- LINKERKANT (BRAND) --- */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.footer-logo img {
    display: block;
    /* Zorg dat hij niet te groot wordt */
    max-width: 100%;
    height: auto;
}


/* --- RECHTERKANT (LINKS WRAPPER) --- */
.footer-links-wrapper {
    display: grid;
    /* Automatisch kolommen maken (minimaal 200px breed) */
    /* Dit zorgt voor die 3 kolommen die je wilde */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--clr-accent); /* Lichtblauw/Oranje voor kopjes */
    text-transform: uppercase;
}

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

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: var(--clr-white);
    transform: translateX(5px);
}

.icon-svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
    color: var(--clr-accent);
}

/* --- SOCIALS --- */
.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--clr-white);
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}
.social-icons a:hover {
    background: var(--clr-accent);
    transform: translateY(-3px);
}

/* --- BOTTOM --- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* --- MOBIEL --- */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Alles onder elkaar */
        gap: 3rem;
    }
    
    .footer-links-wrapper {
        grid-template-columns: 1fr; /* Links ook onder elkaar */
        gap: 2rem;
    }
    
}
