:root {
  --clr-blauw-100: hsl(201, 91%, 63%);
  --clr-blauw-90: hsl(201, 91%, 57%);
  --clr-blauw-80: hsl(201, 91%, 51%);
  --clr-blauw-70: hsl(201, 91%, 45%);
  --clr-blauw-60: hsl(201, 91%, 39%);
  --clr-blauw-50: hsl(201, 91%, 33%);
  --clr-blauw-40: hsl(201, 91%, 27%);
  --clr-blauw-30: hsl(201, 91%, 21%);
  --clr-blauw-20: hsl(201, 91%, 15%);
  --clr-blauw-10: hsl(201, 91%, 9%);

  --clr-groen-100: hsl(141, 55%, 68%);
  --clr-groen-90: hsl(141, 55%, 63%);
  --clr-groen-80: hsl(141, 55%, 58%);
  --clr-groen-70: hsl(141, 55%, 53%);
  --clr-groen-60: hsl(141, 55%, 48%);
  --clr-groen-50: hsl(141, 55%, 43%);
  --clr-groen-40: hsl(141, 55%, 38%);
  --clr-groen-30: hsl(141, 55%, 33%);
  --clr-groen-20: hsl(141, 55%, 28%);
  --clr-groen-10: hsl(141, 55%, 23%);

  --clr-geel-100: hsl(42, 100%, 74%);
  --clr-geel-90: hsl(42, 100%, 68%);
  --clr-geel-80: hsl(42, 100%, 62%);
  --clr-geel-70: hsl(42, 100%, 56%);
  --clr-geel-60: hsl(42, 100%, 50%);
  --clr-geel-50: hsl(42, 100%, 44%);
  --clr-geel-40: hsl(42, 100%, 38%);
  --clr-geel-30: hsl(42, 100%, 32%);
  --clr-geel-20: hsl(42, 100%, 26%);
  --clr-geel-10: hsl(42, 100%, 20%);

  --clr-lavendel-100: hsl(240, 86%, 80%);
  --clr-lavendel-90: hsl(240, 86%, 74%);
  --clr-lavendel-80: hsl(240, 86%, 68%);
  --clr-lavendel-70: hsl(240, 86%, 62%);
  --clr-lavendel-60: hsl(240, 86%, 56%);
  --clr-lavendel-50: hsl(240, 86%, 50%);
  --clr-lavendel-40: hsl(240, 86%, 44%);
  --clr-lavendel-30: hsl(240, 86%, 38%);
  --clr-lavendel-20: hsl(240, 86%, 32%);
  --clr-lavendel-10: hsl(240, 86%, 26%);

  /* Neutral */
  --clr-neutral-10: hsl(0, 0%, 98%);
  --clr-neutral-15: hsl(0, 0%, 94%);
  --clr-neutral-20: hsl(0, 0%, 90%);
  --clr-neutral-30: hsl(0, 0%, 80%);
  --clr-neutral-40: hsl(0, 0%, 70%);
  --clr-neutral-50: hsl(0, 0%, 55%);
  --clr-neutral-60: hsl(0, 0%, 40%);
  --clr-neutral-70: hsl(0, 0%, 30%);
  --clr-neutral-80: hsl(0, 0%, 20%);
  --clr-neutral-90: hsl(0, 0%, 12%);
  --clr-neutral-100: hsl(0, 0%, 5%);

  --max-width: 1800px;

  --icons: "Material Symbols Rounded";
}

@view-transition {
  navigation: auto;
}

body {
  background: var(--clr-neutral-10);
  font-family: "Work Sans", sans-serif;
  margin: 0;
  position: relative;
  box-sizing: border-box;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-left: 2px solid var(--clr-neutral-20);
    border-right: 2px solid var(--clr-neutral-20);
    max-width: 90%;
    margin: 0 auto;
    pointer-events: none;
  }
}

header {
  display: flex;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  width: 95%;
  background: var(--clr-neutral-10);
  height: fit-content;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-neutral-20);
    pointer-events: none;
  }

  .logo img {
    width: 200px;
  }

  /* === Hamburger Menu === */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 1001;

    span {
      display: block;
      height: 3px;
      width: 100%;
      background: var(--clr-neutral-100);
      border-radius: 10px;
      transition: all 0.4s ease;
    }
  }

  nav {
    width: fit-content;
    margin-left: auto;

    ul {
      list-style: none;
      display: flex;
      flex-wrap: nowrap;
      gap: 5px;
      padding: 0;
      border-radius: 50px;
      background: var(--clr-neutral-20);

      li {
        width: fit-content;
        display: flex;
        align-items: center;
        padding: 10px 25px;
        border-radius: 50px;

        &:has(.actief) {
          background: var(--clr-blauw-100);
          view-transition-name: nav-actief;
        }

        a {
          text-decoration: none;
          color: var(--clr-neutral-100);
        }
        a.actief {
          color: var(--clr-neutral-10);
        }
      }
      li:has(a.navButton.home) {display: none;}
    }
  }
}

.hero {
  width: 90%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: 21% 21% auto 1fr auto;
  gap: 25px;
  grid-template-rows: 7dvw 7dvw auto;

  div.regel {
    display: flex;
    position: relative;
    width: 100%;

    &::before {
      content: "";
      position: absolute;
      left: -1.5px;
      bottom: 0;
      right: 0;
      width: 100%;
      border-left: 2px solid var(--clr-lavendel-100);
      border-right: 2px solid var(--clr-lavendel-100);
      height: 30px;
      transform: translateY(50%);
      z-index: 1;
    }
    &::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 2px;
      background: var(--clr-lavendel-100);
    }

    h1 {
      font-size: 6dvw;
      display: inline;
      line-height: 1.5;
      box-decoration-break: clone;
      position: relative;
      width: fit-content;
      height: fit-content;
    }
  }

  div.regel__1 {
    grid-area: 1 / 1 / 2 / 3;
  }

  div.regel__2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  span.switch {
    height: calc(100% - 10px);
    aspect-ratio: 2/1;
    margin-left: auto;
    margin-bottom: 10px;
    background: var(--clr-lavendel-100);
    border-radius: 999px;
    box-shadow: 5px -5px 10px 0px rgba(0, 0, 0, 0.2) inset;
    display: flex;
    padding: 3%;
    box-sizing: border-box;
    animation: switchBg 10s ease-in-out infinite alternate;

    .toggle {
      aspect-ratio: 1/1;
      height: 100%;
      background-color: white;
      border-radius: 999px;
      box-shadow: -5px -5px 10px 0px rgba(0, 0, 0, 0.2);
      animation: switch 10s ease-in-out infinite alternate;
    }
  }

  .spacer__midden {
    grid-area: 1 / 3 / 4 / 4;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    background: linear-gradient(var(--clr-neutral-10)) padding-box,
      linear-gradient(
          var(--clr-neutral-20),
          var(--clr-neutral-20),
          var(--clr-neutral-20),
          transparent
        )
        border-box;
    margin-top: -7dvw;
    height: 21dvw;
  }

  .driehoek {
    grid-area: 1 / 3 / 2 / 4;
    /* max-width: 100%; */
    max-height: 100%;
    aspect-ratio: 1;

    svg {
      width: 100%;
      height: 100%;
      color: var(--clr-blauw-100);
    }
  }

  .lijntjes {
    grid-area: 1 / 4 / 2 / 5;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20%;

    span {
      height: calc(100% / 3);
      border-radius: 50px;
      display: inline-block;
      margin-left: auto;

      &:nth-of-type(1) {
        background: var(--clr-geel-80);
        width: 50%;
      }
      &:nth-of-type(2) {
        background: var(--clr-geel-90);
        width: 100%;
      }
      &:nth-of-type(3) {
        background: var(--clr-geel-100);
        width: 70%;
      }
    }
  }

  .rechthoek {
    grid-area: 2 / 4 / 3 / 5;
    border-radius: 20px;
    width: 100%;
    max-height: 100%;
    position: relative;
    background: linear-gradient(
      0deg,
      var(--clr-blauw-100),
      var(--clr-lavendel-100)
    );
    background-size: 400% 400%;
    animation: bgSpin 10s linear infinite;
  }

  .avatar {
    grid-area: 1 / 5 / 3 / 6;
    background: var(--clr-groen-100);
    max-height: 100%;
    max-width: 100%;
    margin-left: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    line-height: 0;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
    }
  }

  .card.web {
    grid-area: 3 / 1 / 4 / 3;
    margin-top: 60px;
  }
}

main {
  max-width: 90%;
  margin: 0 auto;
  min-height: 80dvh;
}

/* Algemene paragraaf instellingen */
p {
  font-size: 1rem;
  line-height: 1.85rem; /* Dit is al prima */
  margin: 0 0 1.5rem 0; /* Toevoeging van ondermarge voor ruimte tussen paragrafen */
}

/* Koppen instellingen */
h1 {
  margin: 0 0 1.5rem 0; /* Afstand aan de onderkant */
  font-size: 3.5rem; /* Pas aan op basis van de hiërarchie van je ontwerp */
  line-height: 1.1; /* Kleiner dan 1 voor strakkere uitstraling */
  font-weight: 700; /* Dikker voor impact */
}

h2 {
  margin: 0 0 1.25rem 0;
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 700;
}

h3 {
  margin: 0 0 1rem 0;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 600; /* Lichter dan h1 en h2 voor onderscheid */
}

h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 600;
}

h5, .h5 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  color: var(--clr-neutral-30);
}

h6 {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}

button {
  border: none;
}

.button {
  --_buttonColor: var(--buttonColor);
  --_buttonColorHover: var(--buttonColorHover);
  padding: 10px 10px 10px 25px;
  border-radius: 50px;
  position: relative;
  text-decoration: none;
  background: var(--_buttonColor);
  color: var(--clr-neutral-10);
  overflow: hidden;
  display: flex;
  align-items: center;
  width: fit-content;
  transition: all 0.3s ease;

  .pijltje {
    width: 30px;
    height: 30px;
    margin-left: 10px;
    display: inline-block;
    background-color: #fff;
    border-radius: 50px;
    overflow: hidden;
    font-family: var(--icons);
    position: relative;

    &::before {
      content: "\e5c8 \e5c8";
      color: var(--_buttonColor);
      font-size: 20px;
      position: absolute;
      top: 3px;
      bottom: 3px;
      left: 5px;
      right: 5px;
      letter-spacing: 5px;
      transform: translateX(-25px);
      transition: all 0.3s ease;
    }
  }

  &:hover {
    background-color: var(--_buttonColorHover);
    .pijltje::before {
      transform: translateX(0px);
      color: var(--_buttonColorHover);
    }
  }
}

.card.web {
  --_bgColor: var(--bgColor);
  background: #fff;
  box-sizing: border-box;
  position: relative;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.05);

  &::before {
    content: "\e5c9 \e644 \eee4";
    font-family: var(--icons);
    width: 100%;
    position: absolute;
    z-index: -1;
    top: -20px;
    left: 0;
    bottom: 0;
    background: var(--_bgColor);
    border-radius: 20px;
    padding: 10px 0 0 10px;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.2);
    opacity: 0.5;
  }
  &::after {
    content: "\e5c9 \e644 \eee4";
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10px 0 0 10px;
    font-family: var(--icons);
    pointer-events: none;
  }
  .content {
    padding: 20px 0;
  }

  h2 {
    word-break: keep-all;
  }

  p {
    margin-top: 0;
    max-width: 500px;
  }
}

.projecten {
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    box-sizing: border-box;

    .card.web {
      max-width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;

      .afbeelding {
        width: 100%;
        height: auto;
        border-radius: 20px;
        overflow: hidden;
        margin: 30px 0 0 0;

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

.over-mij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding-top: 80px;

  .card.web {
    box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.05);
    margin-right: 10px;

    &::before {
      left: 10px;
    }
  }

  p {
    max-width: 900px !important;
  }

  .afbeelding {
    background: var(--clr-groen-100);
    border-radius: 9999px;
    max-width: 100%;
    max-height: max-content;
    margin: auto auto auto 0;
    aspect-ratio: 1;
    overflow: hidden;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .afbeelding.lavendel {
    background: var(--clr-lavendel-100);
    margin: auto 0 auto auto;
  }
}

.over-mij.vervolg .card.web::before {
  left: -10px;
}

.over-mij.meerInfo {
  .card.web {
    height: 100%;
  }
  .card.web::before {
    left: -10px;
  }

  .card.web:last-child::before,
  .card.web:last-child::after {
    content: "";
    left: 0;
  }
}

section.skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  .card.web {
    margin-left: 10px;

    &::before {
      left: -10px;
    }
  }
}

.card.web.skillsCard {
  --_bgColor: var(--bgColor);
  max-width: unset;
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.05);

  &::before,
  &::after {
    content: "";
    left: 0 !important;
  }

  .progress {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 10px 40px;
    padding: 20px;
    box-sizing: border-box;

    .skill {
      display: flex;
      gap: 20px;
      align-items: center;

      .logo {
        height: 80px;
        width: 80px;
        line-height: 0;

        img {
          width: 100%;
          height: 100%;
        }
      }

      .content {
        width: 100%;

        h3 {
          font-size: 18px;
          margin: 0;
        }

        progress {
          width: 100%;
          height: 10px;
          background-color: var(--clr-neutral-15);
          border: none;
          border-radius: 999px;
          color: var(--clr-groen-80);

          &::-webkit-progress-bar {
            background-color: var(--clr-neutral-15);
            border-radius: 999px;
          }

          &::-webkit-progress-value {
            background-color: var(--clr-groen-80);
            border-radius: 999px;
          }

          &::-moz-progress-bar {
            background-color: var(--clr-groen-80);
            border-radius: 999px;
          }
        }
      }
    }
  }
  .tabs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;

    .tab {
      width: fit-content;
      background: var(--clr-neutral-15);
      padding: 10px 15px;
      border-radius: 10px;
      transition: all 0.3s ease;

      &:nth-child(4n + 1):hover {
        background: var(--clr-groen-100);
      }
      &:nth-child(4n + 2):hover {
        background: var(--clr-blauw-100);
      }
      &:nth-child(4n + 3):hover {
        background: var(--clr-lavendel-100);
      }
      &:nth-child(4n + 4):hover {
        background: var(--clr-geel-100);
      }
    }
  }
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  .card.web.content::before {
    left: 10px;
  }
  .card.web p {
    max-width: unset;
  }
  .card.web.formulier::after,
  .card.web.formulier::before {
    content: "";
  }

  .card.web.formulier form {
    display: grid;
    grid-template-columns: 1fr 1fr;

    input,
    textarea {
      padding: 10px;
      border-radius: 10px;
      border: 1px solid var(--clr-neutral-30);
      font-family: "Work Sans", sans-serif;
      box-sizing: border-box;
    }

    textarea {
      grid-column: 1 / -1;
      min-height: 6rem;
      resize: vertical;
    }
    gap: 20px;
    button {
      grid-column: 1;
    }
  }
}

.hobbys {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  .card.web::before {
    left: 10px;
  }
}

section {
  width: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

footer {
  display: flex;
  margin: 0 auto;
  padding: 30px;
  position: relative;
  box-sizing: border-box;
  width: 95%;
  background: var(--clr-neutral-10);
  height: fit-content;
  justify-content: center;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--clr-neutral-20);
    pointer-events: none;
  }

  .copyright {
    color: var(--clr-neutral-40);
  }
}

.lavendel {
  --bgColor: var(--clr-lavendel-100);
  --buttonColor: var(--clr-lavendel-100);
  --buttonColorHover: var(--clr-lavendel-90);
}
.groen {
  --bgColor: var(--clr-groen-100);
  --buttonColor: var(--clr-groen-100);
  --buttonColorHover: var(--clr-groen-90);
}
.blauw {
  --bgColor: var(--clr-blauw-100);
  --buttonColor: var(--clr-blauw-100);
  --buttonColorHover: var(--clr-blauw-90);
}
.geel {
  --bgColor: var(--clr-geel-100);
  --buttonColor: var(--clr-geel-100);
  --buttonColorHover: var(--clr-geel-90);
  color: var(--clr-neutral-100);
}

@keyframes switch {
  0% {
    transform: translateX(0%);
  }
  40% {
    transform: translateX(0%);
  }
  60% {
    transform: translateX(calc(150% + 9%));
  }

  100% {
    transform: translateX(calc(150% + 9%));
  }
}

@keyframes switchBg {
  0% {
    background: var(--clr-lavendel-100);
  }
  40% {
    background: var(--clr-lavendel-100);
  }
  60% {
    background: var(--clr-lavendel-80);
  }

  100% {
    background: var(--clr-lavendel-80);
  }
}

@keyframes bgSpin {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media screen and (max-width: 1600px) {
  .projecten .grid {
    .card.web {
      grid-template-columns: 1fr;
    }
  }
}

@media screen and (max-width: 1000px) {
  .over-mij {
    grid-template-columns: 1fr;
    gap: 20px;

    .content {
      order: 2;
    }

    .afbeelding {
      max-width: 90%;
      margin: 0 auto;
    }
  }
  section.skills {
    grid-template-columns: 1fr;

    .card.web {
      max-width: unset;
      width: 100%;
      margin-left: 0;

      &::before {
        left: 0;
      }
    }
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .over-mij.vervolg .card.web {
    order: 2;
  }
  .over-mij.vervolg .afbeelding {
    margin: auto auto;
  }
  .hobbys {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 900px) {
  .hero {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 16dvw 16dvw 16dvw 16dvw auto;

    h1 {
      font-size: 14dvw !important;
    }

    div.regel__1 {
      grid-area: 1 / 1 / 2 / 4;
    }

    div.regel__2 {
      grid-area: 2 / 1 / 3 / 4;
    }

    .driehoek {
      grid-area: 3 / 1 / 4 / 2;
    }

    .lijntjes {
      grid-area: 4 / 1 / 5 / 3;
    }

    .rechthoek {
      grid-area: 3 / 2 / 4 / 3;
    }

    .avatar {
      grid-area: 3 / 3 / 5 / 4;
    }
    .card.web {
      grid-area: 5 / 1 / 6 / 4;
    }
    .spacer__midden {
      display: none;
    }
  }
  .projecten .grid {
    grid-template-columns: 1fr 1fr;

    .card.web {
      grid-template-columns: 1fr;
    }
  }
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }

  .projecten .grid {
    grid-template-columns: 1fr;
  }

  .contact .card.web.formulier form {
    grid-template-columns: 1fr;
  }
}

/* De Popup zelf */
.popup {
  display: none; /* Standaard is de popup verborgen */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 99;

  .card.web::before {
    display: none;
  }
}

/* === Mobile menu functionaliteit === */
@media (max-width: 900px) {
  header {
    align-items: center;

    /* Hamburger zichtbaar */
    .hamburger {
      display: flex;
      margin-left: auto;
    }

    /* === Hamburger animatie === */
    .hamburger.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      height: 100vh;
      background: var(--clr-neutral-10);
      box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
      display: flex;
      justify-content: center;
      align-items: center;
      transition: right 0.4s ease;
      z-index: 1000;

      ul {
        flex-direction: column;
        gap: 20px;
        background: none;

        li {
          padding: 15px 30px;
          background: var(--clr-neutral-20);
          border-radius: 50px;
          width: 100%;
          transition: all 0.4s ease;
          box-sizing: border-box;

          a {
            width: 100%;
            text-align: center;
          }
        }
        
        li:has(a.navButton.home) {display: unset;}
        
        li:hover {
          background: var(--clr-blauw-100);

          a {
            color: var(--clr-neutral-10);
          }
        }
      }
    }

    nav.active {
      right: 0;
    }
    nav.active ul li {
      opacity: 0;
      transform: translateX(20px);
      animation: slideIn 0.4s forwards;
    }
    nav.active ul li:nth-child(1) {
      animation-delay: 0.1s;
    }
    nav.active ul li:nth-child(2) {
      animation-delay: 0.2s;
      &:hover, &:has(a.actief) {
        background-color: var(--clr-lavendel-100);
      }
    }
    nav.active ul li:nth-child(3) {
      animation-delay: 0.3s;
      &:hover, &:has(a.actief) {
        background-color: var(--clr-groen-100);
      }
    }
    nav.active ul li:nth-child(4) {
      animation-delay: 0.4s;
      &:hover, &:has(a.actief) {
        background-color: var(--clr-geel-100);
      }
    }
  }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
