html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: Inter;
}
html {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
body {
  background-color: #fceff2;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}
.behouder {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.box {
  height: 100vh;
  width: 100%;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
}
.box-centraal {
  height: 100vh;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  width: inherit;
  position: relative;
}
.inhoud {
  width: 45vw;
}
.lijst {
  padding-left: 20px;
  color: #444;
  line-height: 1.6;
  list-style-type: disc;
}
.lijst li {
  margin-bottom: 12px;
  display: list-item;
  unicode-bidi: isolate;
}
::marker {
  color: #444;
}
.aandacht {
  background-color: #e9adbb;
  color: white;
  padding: 18px;
  border-radius: 20px;

  text-align: center;
}
.box-bodem {
  height: 90vh;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blue;
  padding: 40px;
}
.inhoud h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}
.titel-column-lijst {
  font-size: 22px;
  color: #333;
  font-weight: 600;
}
.image_divider {
  width: 40vw;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  justify-self: center;
}
.image_locatie {
  display: block;
  width: 100%;
  height: inherit;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 2px solid #444;
}
.image_houding {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border: 2px solid #444;
}
.image_div {
  position: relative;
  display: inline-block;
  overflow: hidden;
  max-width: 17vw;
  transition: transform 0.3s ease;
}
.mini {
  width: 35vw;
  justify-self: center;
}
.image_hover_tekst {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 12px;
  padding: 5px;
}
.image_div:hover .image_hover_tekst {
  opacity: 1;
}
.image_div:hover .image_locatie {
  transform: scale(1.05);
}
.image_div:hover .image_houding {
  transform: scale(1.05);
}
.inhoud p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}
.box-footer {
  height: 10vh;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.sectie-z {
  background-color: #fceff2;
  padding: 40px;
}
.lijst-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.woordgebruik-divider-lijsten {
  width: 40vw;
  margin: 0 auto;
}
.dubbel-lijst {
  display: grid;
  grid-template-columns: 1fr 1fr;

  width: 40vw;
  background-color: #f9d8df;
  border-radius: 20px;
  margin: 0;
  padding: 0;
  list-style-position: inside;

  column-gap: 0;
  border-left: 1px solid #ffffff55;
  border-right: 1px solid #ffffff55;
}

.dubbel-lijst li {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #333;
}

.dubbel-lijst li:nth-child(2n) {
  border-left: 1px solid #333;
}

.dubbel-lijst li:last-child,
.dubbel-lijst li:nth-last-child(2) {
  border-bottom: none;
}

.textbox {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#landing-text {
  height: 40vh;
  background-color: #e9adbb;
  width: 35%;
  border-radius: 60px;
  position: relative;
}
#landing-titel {
  font-weight: 800;
  font-size: 38;
  color: #fffafb;
  font-family: Inter;
}
#landing-footer {
  font-weight: 400;
  color: #fbeff2;
  font-size: 20;
  font-family: Inter;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10%);
  }
}
@keyframes fadeBounce {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#asvg {
  height: 4vh;
  width: 4vh;

  align-self: center;
  position: absolute;
  bottom: 1vh;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  opacity: 0;
  animation: fadeBounce 2s ease-in-out forwards, bounce 1.8s 2s infinite;
}

.asvgr {
  height: 4vh;
  width: 4vh;

  align-self: center;
  position: absolute;
  bottom: 1vh;
  left: 50%;

  display: block;

  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 1.5s ease;
}
.scroll-arrow.visible {
  opacity: 1;
  pointer-events: auto;
  animation: bounce 1.8s infinite;
}

.scroll-down-svg-begin {
  width: 100%;
  height: 100%;
  fill: white;
  stroke: white;
}
.scroll-down-svg {
  width: 100%;
  height: 100%;
  fill: #e9adbb;
  stroke: #e9adbb;
}
#een {
  background-color: #fbeff2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#twee {
  background-color: yellow;
}

#drie {
  background-color: #fbeff2;
}
.underline_link {
  text-decoration: underline;
  font-weight: 500;
}

/* telefoon probeersel*/
@media (min-width: 300px) and (min-height: 500px) and (max-width: 1800px) and (max-height: 900px) {
  .sectie-z {
    height: 100dvh;
  }
  .inhoud {
    width: 80vw;
  }
  #landing-text {
    height: clamp(200px, 40vh, 800px);
    width: clamp(250px, 35%, 800px);
  }
  #landing-titel {
    font-size: clamp(18px, 2.5vw, 38px);
    padding: 2px;
    padding-left: 5px;
  }

  #landing-footer {
    font-size: clamp(12px, 1.2vw, 20px);
    padding: 2px;
    padding-left: 5px;
  }

  .inhoud h2 {
    font-size: clamp(10px, 2vw, 38px);
  }

  .inhoud p,
  .dubbel-lijst li,
  .lijst li {
    font-size: clamp(9px, 1.2vw, 22px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 1.2vw, 18px);
  }
  .titel-column-lijst {
    font-size: clamp(12px, 1.5vw, 22px);
  }

  .mini {
    width: clamp(200px, 50vw, 600px);
  }
  .image_div {
    min-height: clamp(50px, 25vh, 160px);
    max-height: clamp(100px, 25vh, 175px);
    min-width: clamp(100px, 12.5vw, 125px);
    max-width: clamp(150px, 12.5vw, 175px);
    margin-top: 2.5vh;
  }
  .image_divider {
    width: 100vw;
  }
  .image_hover_tekst {
    font-size: clamp(6px, 2.2vw, 18px);
    height: inherit;
  }
  .image_div img,
  .image-hod img {
    height: inherit;
    width: inherit;
  }
  .image-hod {
    min-height: clamp(100px, 20vh, 125px);
    max-height: clamp(200px, 30vh, 175px);
    min-width: clamp(100px, 12.5vw, 175px);
  }

  #p41 .box-centraal .sectie-z,
  #p42 .box-centraal .sectie-z,
  #p43 .box-centraal .sectie-z {
    height: 100vh;
    padding-top: 12px;
    padding-bottom: 48px;
  }
  #p42 .box-centraal .sectie-z,
  #p43 .box-centraal .sectie-z {
    align-items: flex-start;
  }

  #p42 .inhoud,
  #p43 .inhoud {
    width: clamp(300px, 70vw, 900px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin: 2vh auto 0;
    box-sizing: border-box;
    padding-right: 12px;
  }

  #p42 .woordgebruik-divider-lijsten,
  #p43 .woordgebruik-divider-lijsten {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  #p42 .dubbel-lijst,
  #p43 .dubbel-lijst {
    grid-template-columns: 1fr;
    width: 100%;
  }

  #p42 .dubbel-lijst li,
  #p43 .dubbel-lijst li {
    border-left: none;
  }
  #fli1,
  #fli2 {
    border-bottom: 1px solid #333;
  }
  #p42.dubbel-lijst li:last-child,
  #p43.dubbel-lijst li:last-child {
    border-bottom: none;
  }

  #p41 .asvgr,
  #p42 .asvgr,
  #p43 .asvgr {
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  #p41 .inhoud p,
  #p42 .inhoud p,
  #p43 .inhoud p,
  #p42 .inhoud .lijst li,
  #p43 .inhoud .lijst li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  #p42 .inhoud::-webkit-scrollbar,
  #p43 .inhoud::-webkit-scrollbar {
    width: 8px;
  }

  #p42 .inhoud::-webkit-scrollbar-thumb,
  #p43 .inhoud::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 6px;
  }
  .titel-override-resp {
    font-weight: 400;
    font-style: italic;
  }
  .wi-override-resp {
    font-style: italic;
  }
  .wb-override-resp {
    font-weight: 550;
  }
}
/* kleiner = scrollbar - laptop scherm ish */
@media (min-width: 1000px) and (min-height: 550px) and (max-width: 1800px) and (max-height: 900px) {
  #landing-text {
    height: clamp(200px, 40vh, 800px);
    width: clamp(250px, 45%, 900px);
  }
  #landing-titel {
    font-size: clamp(20px, 2.5vw, 38px);
    padding: 2px;
    padding-left: 5px;
  }

  #landing-footer {
    font-size: clamp(14px, 1.2vw, 20px);
    padding: 2px;
    padding-left: 5px;
  }

  .inhoud h2 {
    font-size: clamp(12px, 1.8vw, 38px);
  }

  .inhoud p,
  .dubbel-lijst li,
  .lijst li {
    font-size: clamp(10px, 1vw, 22px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 0.8vw, 18px);
  }
  .titel-column-lijst {
    font-size: clamp(14px, 0.8vw, 22px);
  }
  .image_divider {
    width: 50vw;
  }
  .mini {
    width: clamp(200px, 50vw, 600px);
  }
  .image_div {
    min-height: clamp(50px, 25vh, 150px);
    max-height: clamp(100px, 25vh, 150px);
    min-width: clamp(100px, 15vw, 150px);
    max-width: clamp(150px, 15vw, 200px);
    margin-top: 2.5vh;
  }
  .image_locatie {
    max-height: clamp(100px, 25vh, 150px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 0.8vw, 18px);
    inset: 0;
  }

  .image-hod {
    min-height: clamp(100px, 20vh, 150px);
    max-height: clamp(200px, 30vh, 200px);
    min-width: clamp(100px, 15vw, 200px);
  }

  #p41 .box-centraal .sectie-z,
  #p42 .box-centraal .sectie-z,
  #p43 .box-centraal .sectie-z {
    height: 100vh;
    padding-top: 12px;
    padding-bottom: 48px;
  }
  #p42 .box-centraal .sectie-z,
  #p43 .box-centraal .sectie-z {
    align-items: flex-start;
  }

  #p42 .inhoud,
  #p43 .inhoud {
    width: clamp(300px, 70vw, 900px);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin: 2vh auto 0;
    box-sizing: border-box;
    padding-right: 12px;
  }

  #p42 .woordgebruik-divider-lijsten,
  #p43 .woordgebruik-divider-lijsten {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  #p42 .dubbel-lijst,
  #p43 .dubbel-lijst {
    grid-template-columns: 1fr;
    width: 100%;
  }

  #p42 .dubbel-lijst li,
  #p43 .dubbel-lijst li {
    border-left: none;
  }
  #fli1,
  #fli2 {
    border-bottom: 1px solid #333;
  }
  #p42.dubbel-lijst li:last-child,
  #p43.dubbel-lijst li:last-child {
    border-bottom: none;
  }

  #p41 .asvgr,
  #p42 .asvgr,
  #p43 .asvgr {
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  #p41 .inhoud p,
  #p42 .inhoud p,
  #p43 .inhoud p,
  #p42 .inhoud .lijst li,
  #p43 .inhoud .lijst li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  #p42 .inhoud::-webkit-scrollbar,
  #p43 .inhoud::-webkit-scrollbar {
    width: 8px;
  }

  #p42 .inhoud::-webkit-scrollbar-thumb,
  #p43 .inhoud::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 6px;
  }
  .titel-override-resp {
    font-weight: 400;
    font-style: italic;
  }
  .wi-override-resp {
    font-style: italic;
  }
  .wb-override-resp {
    font-weight: 550;
  }
}

/* Dit is 1920x1080 rekening houdend met top en bottom bars*/
@media (min-width: 1800px) and (min-height: 900px) {
  .inhoud {
    width: 45vw;
  }
  .inhoud h2 {
    font-size: clamp(14px, 2vw, 30px);
  }

  .image_div {
    margin-top: 4vh;
    max-height: clamp(100px, 25vh, 250px);
    max-width: clamp(100px, 25vh, 250px);
  }
  .image-hod {
    max-height: clamp(175px, 35vh, 300px);
    max-width: clamp(175px, 35vh, 300px);
  }
  .inhoud p,
  .lijst li {
    font-size: clamp(12px, 1.2vw, 20px);
  }
  .dubbel-lijst li {
    font-size: clamp(8px, 0.75vw, 18px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 1.2vw, 16px);
  }
  .titel-column-lijst {
    font-size: clamp(16px, 1.5vw, 20px);
  }

  .mini {
    width: clamp(200px, 50vw, 600px);
  }
}

/* Dit is 2560x1080 rekening houdend met top en bottom bars*/
@media (min-width: 2000px) and (min-height: 900px) {
  .inhoud {
    width: 50vw;
  }
  .image_div {
    margin-top: 4vh;
    max-height: clamp(100px, 25vh, 300px);
    max-width: clamp(100px, 25vh, 300px);
  }
  .image-hod {
    max-height: clamp(175px, 35vh, 325px);
    max-width: clamp(175px, 35vh, 325px);
  }
  .inhoud h2 {
    font-size: clamp(14px, 2vw, 30px);
  }
  .image_div {
    margin-top: 4vh;
  }
  .inhoud p,
  .lijst li {
    font-size: clamp(12px, 1.2vw, 20px);
  }
  .dubbel-lijst li {
    font-size: clamp(12px, 1.2vw, 18px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 1.2vw, 16px);
  }
  .titel-column-lijst {
    font-size: clamp(16px, 1.5vw, 20px);
  }

  .mini {
    width: clamp(200px, 50vw, 600px);
  }
}
/* Dit is 2560x1440 rekening houdend met top en bottom bars*/
@media (min-width: 2000px) and (min-height: 1100px) {
  .inhoud {
    width: 50vw;
  }
  .image_div {
    margin-top: 4vh;
    max-height: clamp(100px, 25vh, 400px);
    max-width: clamp(100px, 25vh, 400px);
  }
  .image-hod {
    max-height: clamp(175px, 35vh, 400px);
    max-width: clamp(175px, 35vh, 400px);
  }
  .inhoud h2 {
    font-size: clamp(14px, 2vw, 30px);
  }
  .image_div {
    margin-top: 4vh;
  }
  .inhoud p,
  .lijst li {
    font-size: clamp(12px, 1.2vw, 20px);
  }
  .dubbel-lijst li {
    font-size: clamp(12px, 1.2vw, 18px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 1.2vw, 16px);
  }
  .titel-column-lijst {
    font-size: clamp(16px, 1.5vw, 20px);
  }

  .mini {
    width: clamp(200px, 50vw, 600px);
  }
}

/* Dit is 4K rekening houdend met top en bottom bars*/
@media (min-width: 3500px) and (min-height: 1900px) {
  .inhoud {
    width: 70vw;
  }
  .image_div {
    margin-top: 4vh;
    max-height: clamp(100px, 45vh, 1000px);
    max-width: clamp(100px, 45vh, 1000px);
  }
  .image-hod {
    max-height: clamp(175px, 45vh, 1000px);
    max-width: clamp(175px, 45vh, 1000px);
  }
  .inhoud h2 {
    font-size: clamp(14px, 2vw, 40px);
  }
  #landing-titel {
    font-size: clamp(14px, 2vw, 60px);
  }
  #landing-footer {
    font-size: clamp(14px, 2vw, 40px);
  }
  .image_div {
    margin-top: 4vh;
  }
  .inhoud p,
  .lijst li {
    font-size: clamp(12px, 1.2vw, 30px);
  }
  .dubbel-lijst li {
    font-size: clamp(12px, 1.2vw, 30px);
  }
  .image_hover_tekst {
    font-size: clamp(4px, 1.2vw, 30px);
  }
  .titel-column-lijst {
    font-size: clamp(16px, 1.5vw, 30px);
  }

  .mini {
    width: clamp(200px, 50vw, 600px);
  }
}
