:root {
  /* === Colors === */
  --primary-color: #662482;
  --secondary-color: #1468ab;
  --tertiary-color: #00a4d9;
  --background-light: #f7f8fa;
  --background-dark: #eceef1;
  --white: #fff;
  --text-color: rgba(0, 0, 0, 0.7);
  --text-color-dark: rgba(0, 0, 0, 0.9);
  --blue-light: #67bfe6;
  --offset-light: #cbbb9f;
  --offset-dark: #b69f92;
  --sub-btn-bg: #e3dedb;
  --sub-btn-text: #746760;
  --hover-tertiary: #0083ae;
  --default-grey: #eee;

  /* === Gradients === */
  --highlight-gradient: linear-gradient(
    50deg,
    rgba(203, 187, 159, 0.2),
    rgba(182, 159, 146, 0.3)
  );

  /* === Typography === */
  --font-primary: "Proxima Soft", "Arial", sans-serif;
  --font-size-lg: 3.125rem; /* Large headings */
  --font-size-md: 2.25rem; /* Medium headings */
  --font-size-cd: 1.5rem; /* Content description */
  --font-size-sm: 1.125rem; /* Small text */
  --line-height-md: 2.75rem;

  --font-weight-lighter: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-bolder: 800;

  /* === Spacing === */
  --spacing-xxxs: 0.1rem; /* Extra extra extra small */
  --spacing-xxs: 0.2rem; /* Extra extra small */
  --spacing-xs: 0.3125rem; /* Extra small */
  --spacing-sm: 0.625rem; /* Small */
  --spacing-rg: 0.7rem; /* Regular */
  --spacing-md: 1.25rem; /* Medium */
  --spacing-lg: 1.875rem; /* Large */
  --spacing-xl: 5.625rem; /* Extra large */
  --spacing-xxl: 10rem; /* super large */
  --spacing-xxxl: 15.625rem;

  /* === Borders & Shadows === */
  --border-radius-sm: 0.1875rem;
  --border-radius-md: 0.625rem;
  --border-radius-lg: 1.25rem;
  --btn-border-width: 0.188rem;
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.09);

  /* === Percentages === */
  --percent-0: 0%;
  --percent-10: 10%;
  --percent-20: 20%;
  --percent-30: 30%;
  --percent-40: 40%;
  --percent-50: 50%;
  --percent-60: 60%;
  --percent-70: 70%;
  --percent-80: 80%;
  --percent-90: 90%;
  --percent-100: 100%;

  --gap-sm: 1rem;
  --gap-mid: 2rem;
  --gap-lg: 3rem;
  --grap-xl: 4rem;
}

/* General Styles */
section {
  padding: var(--spacing-xl) 0;
}

p {
  color: var(--text-color);
}

a {
  color: var(--tertiary-color);
  text-decoration: none;
}

a:hover {
  color: var(--hover-tertiary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: bold;
  color: var(--secondary-color);
}

hr:not([size]) {
  height: 0.063rem;
}

abbr[title],
abbr[data-bs-original-title] {
  background-color: #fcf8e3;
}

pre,
code,
kbd,
samp {
  direction: ltr;
  unicode-bidi: bidi-override;
}

kbd {
  background-color: #212529;
  color: var(--white);
  border-radius: var(--spacing-xxs);
}

.mb-sm {
  margin-bottom: var(--gap-sm);
}
.mb-mid {
  margin-bottom: var(--gap-mid);
}
.mb-lg {
  margin-bottom: var(--gap-lg);
}
.mb-xl {
  margin-bottom: var(--grap-xl);
}

.mt-sm {
  margin-top: var(--gap-sm);
}
.mt-mid {
  margin-top: var(--gap-mid);
}
.mt-lg {
  margin-top: var(--gap-lg);
}
.mt-xl {
  margin-top: var(--grap-xl);
}

.mtb-sm {
  margin-top: var(--gap-sm);
  margin-bottom: var(--gap-sm);
}
.mtb-mid {
  margin-top: var(--gap-mid);
  margin-bottom: var(--gap-mid);
}
.mtb-lg {
  margin-top: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
.mtb-xl {
  margin-top: var(--grap-xl);
  margin-bottom: var(--grap-xl);
}

.m-sm {
  margin: var(--gap-sm);
}
.m-mid {
  margin: var(--gap-mid);
}
.m-lg {
  margin: var(--gap-lg);
}
.m-xl {
  margin: var(--grap-xl);
}

.mr-sm {
  margin-right: var(--gap-sm);
}
.mr-mid {
  margin-right: var(--gap-mid);
}
.mr-lg {
  margin-right: var(--gap-lg);
}
.mr-xl {
  margin-right: var(--grap-xl);
}

.ml-sm {
  margin-left: var(--gap-sm);
}
.ml-mid {
  margin-left: var(--gap-mid);
}
.ml-lg {
  margin-left: var(--gap-lg);
}
.ml-xl {
  margin-left: var(--grap-xl);
}

.content-wrapper {
  font-size: var(--font-size-cd);
  padding: var(--gap-lg);
  border-radius: var(--border-radius-lg);
  background: var(--background-dark);
  background: linear-gradient(
    180deg,
    var(--background-light) 0%,
    var(--background-dark) 100%
  );
}

.content-wrapper-sm-dark {
  padding: var(--gap-mid);
  border-radius: var(--border-radius-lg);
  background: var(--background-dark);
}

.content-wrapper-sm-light {
  padding: var(--gap-mid);
  border-radius: var(--border-radius-lg);
  background: var(--background-light);
}

/* VPO Colors */
.vpo-colors {
  & .col {
    min-height: var(--spacing-xs);
  }

  & .blue {
    background-color: var(--tertiary-color);
  }

  & .blue-light {
    background-color: var(--blue-light);
  }

  & .blue-dark {
    background-color: var(--secondary-color);
  }

  & .offset-light {
    background-color: var(--offset-light);
  }

  & .offset-dark {
    background-color: var(--offset-dark);
  }
}

/* Button Styles */
.btn-vpo {
  transition: 0.3s;
  background-color: var(--primary-color);
  border: var(--btn-border-width) solid var(--primary-color);
  padding: var(--spacing-sm) var(--spacing-lg);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: bold;
  font-size: var(--font-size-sm);

  &.support-btn {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    margin-left: var(--spacing-md);

    &:hover {
      background-color: var(--secondary-color);
      color: var(--white);
    }
  }
  &.sub-btn {
    background-color: var(--sub-btn-bg);
    border-color: var(--sub-btn-bg);
    color: var(--sub-btn-text);
  }
  &.btn-gap {
    margin-left: var(--spacing-sm);
  }
}

/** NAV **/
.menu {
  background-color: var(--background-light);
  padding: var(--spacing-lg) 0;
  font-size: var(--font-size-sm);
}

.menu .navbar-nav {
  & .nav-link {
    padding: 0 var(--spacing-rg);
    color: var(--secondary-color);
    font-weight: bold;
    font-family: var(--font-primary);
  }

  & .nav-link.active {
    color: var(--text-color-dark);
  }
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: var(--spacing-xxl);
  padding: var(--spacing-sm) 0;
  margin: 0;
  font-size: var(--font-size-sm);
  text-align: left;
  list-style: none;
  background-clip: padding-box;
  border-radius: var(--border-radius-md);
  /* box-shadow: var(--shadow-md); */
  border: 0.063rem solid rgba(0, 0, 0, 0.15);

  & .dropdown-item {
    color: var(--sub-btn-text);
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: var(--font-size-sm);

    &:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
  }

  &.show {
    background-color: var(--sub-btn-bg);
    color: var(--sub-btn-text);
    font-family: var(--font-primary);
    border: none;
  }
}

.dropdown-toggle.show + .dropdown-menu {
  margin-top: var(--spacing-xs);
}

/* Dropdown Toggle Indicators */
.dropdown-toggle.show:before {
  content: "";
  width: var(--spacing-sm);
  height: var(--spacing-sm);
  background: var(--sub-btn-bg);
  border-left: 0rem solid #ced4da;
  border-top: 0rem solid #ced4da;
  display: block;
  transform: translateX(-50%) rotateZ(45deg);
  position: absolute;
  bottom: -0.75rem;
  left: var(--percent-50);
  z-index: 1001;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Header Section */
#header {
  background-color: var(--background-light);

  & .header-text {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-lg);
    font-weight: bold;
  }

  & .header-text--head {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
  }

  & .header-text--description {
    font-family: var(--font-primary);
    font-weight: normal;
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
    display: block;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);

    & span {
      background: var(--highlight-gradient);
      background-repeat: no-repeat;
      background-size: 100% 0.4em;
      background-position: 0 75%;
      padding: var(--spacing-xxxs) var(--spacing-xxs);
      font-weight: bold;
    }
  }

  & p {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: normal;
    color: var(--text-color);
  }

  & .header img {
    margin-right: var(--spacing-xs);
    border-radius: var(--border-radius-sm);
  }
}

/* Services Section */
#diensten {
  background-color: var(--background-dark);
  padding: var(--spacing-lg) 0;

  & h1 {
    margin-bottom: var(--spacing-sm);

    & span {
      background: var(--highlight-gradient);
      background-repeat: no-repeat;
      background-size: 100% 0.4em;
      background-position: 0 75%;
      padding: var(--spacing-xxs) var(--spacing-xxxs);
      font-weight: bold;
    }
  }

  & p {
    font-size: var(--font-size-cd);
  }

  & .services-cards {
    margin-top: var(--spacing-lg);

    & .services-card {
      background-color: rgba(0, 0, 0, 0.04);
      padding: var(--spacing-lg);
      border-radius: var(--border-radius-md);
      margin-bottom: var(--spacing-md);

      & h2 {
        font-size: var(--font-size-cd);
      }

      & p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-sm);
      }

      & a {
        color: var(--text-color);
        font-weight: bold;
        text-decoration: none;
      }

      & i {
        margin-right: var(--spacing-sm);
      }
    }
  }
}

/* Shape Dividers */
.custom-shape-divider-top,
.custom-shape-divider-bottom-bottom {
  bottom: 0;
  left: 0;
  width: var(--percent-100);
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top {
  background-color: var(--background-dark);

  & svg {
    position: relative;
    display: block;
    width: calc(206% + 0.081rem);
    height: 6.688rem;
    transform: rotateY(180deg);
    fill: var(--background-light);
  }
}

.custom-shape-divider-bottom-bottom {
  background-color: var(--background-light);

  & svg {
    position: relative;
    display: block;
    width: calc(206% + 0.081rem);
    height: 6.688rem;
    transform: rotateY(180deg);
    fill: var(--background-dark);
  }
}

#features {
  background-color: var(--background-dark);

  & .intro {
    & p {
      font-size: var(--font-size-cd);
    }
  }
}

#key-benefits {
  background-color: var(--background-dark);
}

.content-container {
  display: flex;
  align-items: center;
}

.scroll-section {
  opacity: 0;
  transform: translateY(3.125rem);
  transition: all 0.6s ease-out;
}

.scroll-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-section h2 {
  color: var(--text-color-dark);
}

.scroll-section p {
  font-size: var(--font-size-cd);
}

.scroll-section i {
  color: var(--secondary-color);
}

.icon-gap {
  margin-right: var(--spacing-sm);
}

.feature-numbers {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 0.313rem;
  color: var(--text-color-dark);
}

.feature-numbers span {
  color: var(--secondary-color);
  font-size: var(--font-size-cd);
  line-height: 1;
}

.scroll-container {
  padding: 6.25rem 0;
  position: relative;
}

.scroll-text {
  position: relative;
  z-index: 2;
}

.scroll-feature {
  margin-bottom: 15rem;
}

.scroll-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start; /* ← voorkom vertical centering */
  min-height: 100vh;
  position: relative;
  padding-top: var(--spacing-xxl);
  /* padding-bottom: var(--spacing-xxl); */
}

.scroll-feature:first-child {
  margin-top: calc(var(--spacing-xxl) * 2); /* 2 × 15rem = 30rem */
}

.scroll-feature:last-child {
  margin-bottom: var(--spacing-xl);
}

.circle-wrapper {
  position: sticky;
  top: var(--spacing-xxl); /* <- zorgt dat hij bovenaan de viewport "plakt" */
  width: var(--percent-100);
  max-width: 33.75rem;
  aspect-ratio: 1 / 1;
  z-index: 100;
  overflow: visible;
  pointer-events: none;
}

.circle-background {
  width: var(--percent-100);
  height: var(--percent-100);
  background-color: none;
  border: 2.188rem solid var(--default-grey);
  border-radius: var(--percent-50);
}

.circle-wrapper svg {
  width: var(--percent-100);
  height: auto;
  display: block;
}

.scroll-overlay-svg {
  position: absolute;
  right: 0; /* laat hem buiten de cirkel vallen */
  bottom: 0;
  width: auto;
  height: var(--percent-90);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  -webkit-filter: drop-shadow(0rem 0.125rem 0rem rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0rem 0.125rem 0rem rgba(0, 0, 0, 0.1));
}

#partners {
  background-color: var(--background-light);
}

.partner-cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.5rem; /* = gx-4 */
  height: 20rem;
  max-width: 1320px; /* container-xl */
}

/* ===== Card basis ===== */
.partner-card {
  flex: 1 1 0;
  min-width: 16.66%;
  max-width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  transition: flex-basis 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  transition: flex 0.6s cubic-bezier(0.25, 0.8, 0.25, 1); /* mooie ease */
}

.partner-card.active {
  flex-grow: 2;
  flex-shrink: 1;
  z-index: 1;
}

/* ===== Inhoud container ===== */
.card-content {
  position: relative;
  width: var(--percent-100);
  height: var(--percent-100);
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
}

/* ===== Logo (blijft verticaal gecentreerd) ===== */
.card-logo-wrapper {
  position: absolute;
  top: var(--percent-50);
  left: var(--percent-50);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.partner-card.active .card-logo-wrapper {
  left: 2rem;
  transform: translateY(-50%);
}

.card-logo img {
  height: 2.5rem;
}

/* ===== Tekst onderin, alleen zichtbaar bij active ===== */
.card-text-wrapper {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  opacity: 0;
  transform: translateY(0.375rem);
  transition: opacity 0.2s ease-in, transform 0.2s ease-in;
  filter: blur(0.125rem);
  color: white;
  max-width: var(--percent-80);
  pointer-events: none;
}

.partner-card.active .card-text-wrapper {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition: opacity 0.5s ease-out 0.1s, transform 0.5s ease-out 0.1s,
    filter 0.5s ease-out 0.1s;
  pointer-events: auto;
}

.card-text {
  color: var(--white);
  font-size: var(--font-size-cd);
  font-weight: 500;
  line-height: 1.4;
}

#referenties {
  background-color: var(--background-light);
}

.feature-cards {
}

.feature-card {
  background-color: var(--background-dark);
  padding: var(--gap-mid);
  border-radius: var(--gap-mid) var(--gap-mid) 0 0;

  &.reverse {
    background-color: var(--background-light);
    border-radius: 0 0 var(--gap-sm) var(--gap-sm);
    margin-bottom: var(--gap-mid);
  }

  & .title {
    font-size: var(--font-size-cd);
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--secondary-color);
  }

  & .text {
    font-size: var(--font-size-sm);
    font-family: var(--font-primary);
    color: var(--secondary-color);
  }
}

.icon-layer,
.text-layer {
  transition: opacity 0.3s ease-in-out;
}

.icon-layer {
  opacity: 1;
  z-index: 1;
}

.text-layer {
  opacity: 0;
  z-index: 2;
}

.dienst-wrapper:hover .icon-layer {
  opacity: 0;
}

.dienst-wrapper:hover .text-layer {
  opacity: 1;
}

.arrow-hover {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: var(--font-size-cd);
  font-weight: 500;
  text-decoration: none;
  color: #000;
  overflow: hidden;
}

.arrow {
  display: inline-block;
  transform: translateX(0);
  opacity: 1;
  color: var(--secondary-color);
}

/* Animate once on hover */
.arrow-hover:hover .arrow {
  animation: arrowFly 0.5s ease forwards;
}

/* Keyframes: move right, fade out, reset to left */
@keyframes arrowFly {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(1rem);
    opacity: 0;
  }
  51% {
    transform: translateX(-1rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.bottom-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: 0 0 var(--gap-sm) var(--gap-sm);
  background-color: var(--offset-light);

  &.blogpost {
    min-height: 400px;
    background-color: var(--offset-light);

    & img {
      opacity: 0.3;
    }
  }
  &.referentie {
    min-height: 400px;
    background-color: var(--blue-light);
  }
  &.certificering {
    min-height: 400px;
    max-height: 400px;
    background-color: var(--background-dark);
  }
  &.diensten {
    max-height: 150px;
    min-height: 150px;

    & i {
      font-size: 100px;
    }

    & i:before {
      background: linear-gradient(50deg, #662482, #00a4d9);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: initial;
      font-size: ;
    }
  }
}

.top-card {
  background-color: var(--background-light);
  padding: var(--gap-mid) var(--gap-mid) 0 var(--gap-mid);

  &.diensten {
    max-height: 150px;
    min-height: 150px;

    & i {
      color: var(--secondary-color);
      font-size: 100px;
    }

    & i:before {
      background: linear-gradient(50deg, #662482, #00a4d9);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: initial;
    }
  }
}

.bg-image {
  position: absolute;
  top: 2rem;
  left: 2rem;
  border-radius: var(--gap-mid);
  width: auto;
  height: 120%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* schaduw */
  z-index: 0;
  pointer-events: none;
}

#pluspunten {
  background-color: var(--background-dark);

  & p {
    font-size: var(--font-size-sm);
  }
}

#contact-ons {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;

  & .contact-wrapper {
    height: 16rem;
  }

  & p {
    font-size: var(--font-size-cd);
  }

  & img {
    width: 16rem;
    margin-right: var(--gap-lg);
    border-radius: 50%;
    border: 6px solid var(--background-dark);
  }
}

#services-extra {
  background-color: var(--background-dark);

  & .dienst-wrapper i:hover {
    text-shadow: 0px 47px 50px #2971b659;
  }
}

#benefit {
  background-color: var(--background-dark);

  & span {
    color: var(--text-color);
  }

  & p {
    font-size: var(--font-size-cd);
  }

  & img {
    border-radius: var(--gap-sm);
  }
}

.vertical-tabs-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  font-family: sans-serif;
}

.steps-column {
  position: relative;
  display: flex;
  flex-direction: column;
}

.progress-relative {
  position: relative;
}

.progress-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 4px;
  height: 100%; /* dit is cruciaal */
  background-color: #ddd;
  z-index: 0;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: var(--secondary-color);
  z-index: 1;
  transition: height 0.2s linear;
}

.step {
  position: relative;
  z-index: 1;
  padding-left: 30px;
  cursor: pointer;
  color: var(--text-color);
  padding: var(--spacing-lg) 60px;
  font-size: var(--font-size-cd);
  background-color: var(--background-light);
  border-bottom: 1px solid var(--background-dark);
  font-family: var(--font-primary);
}

.step.active {
  font-weight: bold;
  color: var(--secondary-color);
}

.content-column {
  flex: 1;
}

.tab-panel {
  display: none;

  & p {
    font-size: var(--font-size-cd);
  }
}

.tab-panel.active {
  display: block;
}

.tab-panel img {
  margin-top: 20px;
  max-width: 100%;
  border-radius: 8px;
}

#vpo-compliance {
  background-color: var(--background-dark);
  color: var(--text-color);

  & img {
  }

  & .img-round {
    border-radius: var(--percent-50);
  }

  & .statement {
    font-size: var(--font-size-cd);
  }

  & .compliant {
    font-weight: 600;
  }
}

#content-page {
  background-color: var(--background-dark);
  font-size: var(--font-size-cd);

  & h2,
  h3,
  h4,
  h5,
  h6 {
    margin-top: var(--gap-mid);
    margin-bottom: var(--gap-sm);
  }
}

.vacatures {
  font-size: var(--font-size-cd);
  padding: var(--gap-lg);
  border-radius: var(--border-radius-lg);
  background: var(--background-light);

  & .informatie {
    font-size: var(--font-primary);
  }
  & .type {
    background-color: var(--background-dark);
    color: var(--sub-btn-text);
    font-size: var(--font-size-sm);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-xs);
    font-weight: bold;
    font-family: var(--font-primary);
  }
  & .tag {
    background-color: var(--sub-btn-bg);
    color: var(--sub-btn-text);
    font-size: var(--font-size-sm);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xs) 15px;
  }
  & .bekijk {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--background-dark);
    font-size: var(--font-size-sm);
  }
}

/* contact */

.vpo-form {
  padding: var(--spacing-sm) var(--spacing-sm);
  border: none;
}

.vpo-form::placeholder {
  opacity: 0.5;
}

.vpo-form-label {
  font-size: var(--font-size-cd);
  color: var(--text-color);
}

.contact-info {
  color: var(--text-color);
}

.info-italic {
  font-size: var(--font-size-sm);
  font-style: italic;
}

b {
  font-family: var(--font-primary);
}

.base-main-feed-card__entity-lockup {
  display: none;
}

.history-swiper {
  overflow: visible;
  position: relative;
}

.history-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.history-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: var(--secondary-color);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  width: 550px;
  transition: transform 0.3s ease;
  transform: scale(1);
  opacity: 1;
  height: 100%;
  min-height: 100%; /* extra safe */
}

/* Nieuw → extra wrapper content */
.history-swiper .swiper-slide-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.history-swiper .swiper-slide-content p {
  flex-grow: 1; /* duwt read more netjes naar onder */
}

.history-swiper h2 {
  color: var(--secondary-color);
  border-bottom: 1px solid var(--offset-dark);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.history-swiper a {
  font-weight: bold;
  text-decoration: none;
}

/* Fade gradient aan de linker- en rechterkant */
.history-swiper::before,
.history-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.history-swiper::before {
  left: 0;
}

.history-swiper::after {
  right: 0;
}

/* Footer Section */
footer {
  padding: var(--spacing-xl) 0;
  background-color: var(--tertiary-color);
  color: var(--white);

  & h1,
  h2,
  h3,
  h4,
  h5 {
    color: var(--white);
    font-size: var(--font-size-cd);
  }

  & p {
    color: var(--white);
  }

  & a,
  a:hover {
    color: var(--white);
  }

  & img[src$=".svg"] {
    filter: brightness(0) invert(1) contrast(100);
  }

  & li {
    margin-bottom: var(--spacing-xxs);
  }
  & .border-top {
    border-color: #ffffff3b !important;
  }

  & .socials a {
    font-weight: bold;
    font-family: var(--font-primary);
  }
}

/* Responsive Styles */

/* Responsive Styles */
@media (max-width: 1199.98px) {
  .menu .navbar-nav {
    & .nav-item .nav-link {
      padding: var(--spacing-xs) 0;
    }
  }

  .btn-vpo {
    &.support-btn {
      background-color: var(--secondary-color);
      border: none;
      color: var(--white);
      margin-left: 0;
      margin-right: 0.625rem;
      font-size: 1rem;
      padding: var(--spacing-sm) var(--spacing-md);

      &:hover {
        background-color: var(--secondary-color);
        color: var(--white);
      }
    }
  }
}

@media (max-width: 991.98px) {
  #contact-ons {
    & .contact-wrapper {
      height: auto;
      width: 100%;
    }
    & img {
      width: 100%;
      max-height: 30rem;
      object-fit: cover;
      object-position: top;
      border-radius: var(--border-radius-lg);
      border: 0;
      margin-right: 0;
    }
  }
}

@media (max-width: 767.98px) {
  .menu .navbar-nav {
    & .nav-item .nav-link {
      text-align: center;
    }
  }

  .scroll-section {
    & img {
      display: block;
    }
  }
}
