:root {
  --max-width: 100vw;
  --light: #969696;
  --dark: #131313;
  --white: #ffffff;
  --black: #000000;
  --darkpink: #E202FF;
  --purple: #AA49F9;
  --blue: #5DE0E6;
  --pink: #FF00B6;
  --yellow: #D9FD51;
  --header: #F3F4EE;
  --footer: #e5e7e0;
  --logopurple: #e201ff;
  --logopink: #ff00b6;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: 100%;
  margin: auto;
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2rem;
  letter-spacing: 7px;
  font-weight: 400;
  color: black;
  text-align: center;
  margin-inline: auto;
}

.section__subheader {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  letter-spacing: 7px;
  font-weight: 200;
  color: black;
  text-align: center;
  margin-inline: auto;
}

.section__description {
  color: var(--dark);
  line-height: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--dark);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--light);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, Arial, sans-serif;
  overflow-x: hidden; /* Hide horizontal scrollbar */
}

.header {
  -webkit-box-shadow: 0px -37px 53px 45px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px -37px 53px 45px rgba(0,0,0,0.75);
  box-shadow: 0px -37px 53px 45px rgba(0,0,0,0.75);
  position:relative;
  z-index:2;
  background-color: var(--header);
  border-radius: 0 0 50px 50px;
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--header);
}

.nav__logo img {
  width: 100px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--black);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--header);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links .nav__logo {
  display: none;
}

.nav__links a {
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 20px;
  color: var(--black);
}


.nav__links a span {
  border-bottom: 2px solid transparent;
  transition: border-color 0.1s;
}

.nav__links a:hover span {
  border-color: var(--dark); /* onderstreep bij hover */
}

.slogan_container {
  z-index: 1;
  text-align: center;
}

.slogan_container > p {
  font-size: 45px;
  font-weight: 300;
  letter-spacing: 7px;
  padding-bottom: 2rem;
  color: var(--purple);
}

.shape_container {
  width: 100vw;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shape_wrapper {
  display: flex;
  flex-direction: column;
}

.shape_row {
  display: flex;
  animation: oscillate 20s ease-in-out infinite alternate;
}

.shape_row > img.custom:nth-of-type(1) {
  object-position: 35% 40%;
}
.shape_row > img.custom:nth-of-type(2) {
  object-position: 45% 40%;
}
.shape_row > img.custom:nth-of-type(3) {
  object-position: 50% 20%;
}
.shape_row > img.custom:nth-of-type(4) {
  object-position: 50% 50%;
}
.shape_row > img.custom:nth-of-type(5) {
  object-position: 50% 60%;
}

.shape_row > img.custom2:nth-of-type(1) {
  object-position: 50% 50%;
}
.shape_row > img.custom2:nth-of-type(2) {
  object-position: 50% 50%;
}
.shape_row > img.custom2:nth-of-type(3) {
  object-position: 50% 60%;
}
.shape_row > img.custom2:nth-of-type(4) {
  object-position: 50% 50%;
}


.shape_row > img.custom3:nth-of-type(1) {
  object-position: 50% 50%;
}
.shape_row > img.custom3:nth-of-type(2) {
  object-position: 50% 50%;
}
.shape_row > img.custom3:nth-of-type(3) {
  object-position: 50% 20%;
}
.shape_row > img.custom3:nth-of-type(4) {
  object-position: 50% 20%;
}


.opposite {
  animation: oscillateOpposite 20s ease-in-out infinite alternate;
}

@keyframes oscillate {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-2rem); /* Gaat een klein stukje naar links */
  }
  100% {
    transform: translateX(2rem); /* Gaat een klein stukje naar rechts */
  }
}

@keyframes oscillateOpposite {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2rem); /* Gaat een klein stukje naar links */
  }
  100% {
    transform: translateX(-2rem); /* Gaat een klein stukje naar rechts */
  }
}

.shape {
  width: 12rem;
  height: 12rem;
  flex-shrink: 0;
  object-fit: cover;
}

.circle {
  border-radius: 50%;
}

.rounded-rectangle {
  width: 24rem;
  height: 12rem;
  border-radius: 6rem / 50%;
  object-fit: cover;
}

.darkpink { background-color: var(--darkpink) }
.purple { background-color: var(--purple) }
.blue { background-color: var(--blue) }
.pink { background-color: var(--pink) }
.yellow { background-color: var(--yellow) }

.about__container .section__description {
  max-width: 900px;
  margin-inline: auto;
}

.pascalorecoaching__container {
  padding-top: 5rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-areas:
    "header header"
    "image content";
  grid-template-columns: 1fr 3fr;
}

.pascalorecoaching__header {
  grid-area: header;
}

.pascalorecoaching__image {
  grid-area: image;
  padding-left: 20%;
}

.pascalorecoaching__image > img {
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pascalorecoaching__content {
  grid-area: content;
}

.pascalorecoaching__content > .section__description {
  margin-left: 5%;
  max-width: 1000px;
}

.blob {
  width: 90%;
  margin: 20px auto;
  border-radius: 90px 20px 90px 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
  --start: var(--logopurple);
  --end:   var(--logopink);
  background: linear-gradient(var(--start), var(--end)) center / cover no-repeat;
}

.blob__blue   { --start: var(--blue);   --end: var(--blue); }
.blob__yellow { --start: var(--yellow); --end: var(--yellow); }
.blob__pink   { --start: var(--pink);   --end: var(--pink); }
.blob__purple   { --start: var(--purple);   --end: var(--purple); }
.blob__darkpink   { --start: var(--darkpink);   --end: var(--darkpink); }

.relatiecoach__container .section__header {
  color: black;
}

.relatiecoach__container .section__description {
  max-width: 1200px;
  margin-inline: auto;
  color: var(--dark);
}

.relatiecoach__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: auto;
  padding: 0 2rem 5rem 2rem;
}

.relatiecoach__images > img {
  border-radius: 90px 20px 90px 20px;
  height: 100%;
  max-height: 35rem;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.relatiecoach__images img:nth-child(1) {
  object-position: 25% 50%;
}
.relatiecoach__images img:nth-child(2) {
  object-position: 40% 50%;
}
.relatiecoach__images img:nth-child(3) {
  object-position: 50% 90%;
}

.eenopeen__container {
  padding-bottom: 2rem;
}

.eenopeen__container .section__description {
  max-width: 900px;
  margin-inline: auto;
}

.organic-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 85vw;
  margin: 2rem auto;
}

.image-wrapper {
  flex: 0 1 calc(20% - 2rem);
  max-width: 16rem;
  display: flex;
  justify-content: center;
}

.image-wrapper img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.organic-gallery .image-wrapper:nth-child(1) img {
  position: relative;
  top: 15px;
  object-position: 50% 0;
}

.organic-gallery .image-wrapper:nth-child(2) img {
  position: relative;
  top: -10px;
  object-position: 50% 90%;
}

.organic-gallery .image-wrapper:nth-child(3) img {
  position: relative;
  top: 25px;
  object-position: 50% 10%;
}

.organic-gallery .image-wrapper:nth-child(4) img {
  position: relative;
  top: -15px;
  object-position: 50% 20%;
}

.organic-gallery .image-wrapper:nth-child(5) img {
  position: relative;
  top: 5px;
  object-position: 50% 30%;
}

.wiebenik__container {
  padding-bottom: 2rem;
}

.wiebenik__container .section__description {
  max-width: 1200px;
  margin-inline: auto;
}

.headshot {
  max-width: 250px;
  max-height: 250px;
  object-fit: cover;
  object-position: 50% 10%;
  margin-inline: auto;
  margin-bottom: 2rem;
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.service__container .section__description {
  max-width: 1200px;
  margin-inline: auto;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  align-items: center;
}

.footer__col:nth-child(1),
.footer__col:nth-child(2),
.footer__col:nth-child(3) {
  grid-area: auto;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.footer__container img {
  max-width: 170px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--dark);
}

.footer__socials a:hover {
  color: var(--light);
}

.footer__links {
  list-style: none;
}

.footer__links a {
  display: block;
  font-weight: 600;
  color: var(--purple);
  text-align: center;
}

.footer__links a:hover {
  color: var(--pink);
}

.ri-mail-fill {
  color: var(--purple);
}

.ri-phone-fill {
  color: var(--purple);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

.footer__col p {
  color: var(--light);
  line-height: 1.75rem;
  text-align: center;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--dark);
  background-color: var(--footer);
  text-align: center;
}

@media (width > 600px) {
  .relatiecoach__container .section__subheader {
    display: none;
  }

  .eenopeen__container .section__subheader {
    display: none;
  }

  .eenopeen__container .short_header {
    display: none;
  }
}

@media (min-width: 650px) {
  .footer__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "one two"
      "three three";
    justify-items: center; /* centreert de inhoud in de grid-cellen */
  }

  .footer__col:nth-child(1) {
    grid-area: one;
    width: 100%; /* belangrijk voor vulling */
  }

  .footer__col:nth-child(2) {
    grid-area: two;
    width: 100%;
    border-left: 2px solid var(--dark);
  }

  .footer__col:nth-child(3) {
    grid-area: three;
    width: 100%;
  }
}

@media (min-width: 900px) {
  .footer__bar > p {
    display: inline;
  }
}

@media (min-width: 1060px) {
  nav {
    padding: 2rem 1rem;
    position: fixed;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 0px -50px 53px 45px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px -50px 53px 45px rgba(0,0,0,0.75);
    box-shadow: 0px -50px 53px 45px rgba(0,0,0,0.75);
    z-index:2;
    background-color: var(--header);
    border-radius: 0 0 50px 50px;
  }

  /* Bij scrollen iets kleiner maken, maar uiterlijk behouden */
  nav.scrolled {
    padding: 10px 1rem;
  }

  .nav__header {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: 70%;
    position: static;
    transform: none;
    flex-direction: row;
    text-align: center;
    justify-content: center;
    gap: 5rem;
    background-color: transparent;
  }

  .nav__links .nav__logo {
    display: block;
  }

  .nav__links .nav__logo img {
    width: 150px;
  }

  .footer__container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "one three two";
  }

  .footer__col:nth-child(2) {
    border: none;
  }

  .footer__col:nth-child(3) {
    border-left: 2px solid var(--dark);
    border-right: 2px solid var(--dark);
  }

}

@media (max-width: 1750px) {
  .pascalorecoaching__content > .section__description {
    max-width: 80%;
  }
}

@media (max-width: 1600px) {
  .image-wrapper {
    flex: 0 1 calc(33.333% - 2rem);
  }

  .relatiecoach__container .section__description {
    max-width: 80%;
  }

  .wiebenik__container .section__description {
    max-width: 80%;
  }

  .service__container .section__description {
    max-width: 80%;
  }

  .section__header {
    max-width: 90%;
  }

  .section__subheader {
    max-width: 90%;
  }
}

@media (max-width: 1400px) {
  .pascalorecoaching__container {
    grid-template-areas:
            "header header"
            "content content"
            "image image";
  }

  .pascalorecoaching__content > .section__description {
    margin-left: 0;
    margin-inline: auto;
  }

  .pascalorecoaching__image > img {
    max-width: 20rem;
  }

  .pascalorecoaching__image {
    padding-left: 0;
    padding-top: 0;
    margin-inline: auto;
  }
}

@media (max-width: 1200px) {
  .eenopeen__container .section__description {
    max-width: 80%;
  }
}

@media (max-width: 900px) {
  .relatiecoach__images {
    gap: 1rem;
    padding: 0 1rem 5rem 1rem;
  }

  .relatiecoach__images > img {
    border-radius: 40px 10px 40px 10px;
  }

  .footer__bar {
    display: flex;
    flex-direction: column;
  }

  .footer__pipe {
    display: none; !important;
  }

  .organic-gallery {
    gap: 0.5rem;
  }


}

@media (max-width: 600px) {
  .relatiecoach__images {
    gap: 0.5rem;
    padding: 0 0.5rem 5rem 0.5rem;
  }

  .pascalorecoaching__image > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 60%;
  }

  .section__header {
    font-size: 1.3rem;
  }

  .section__subheader {
    font-size: 1.3rem;
  }

  .relatiecoach__container .subheader {
    display: none;
  }

  .eenopeen__header {
    display: none;
  }

  .organic-gallery .image-wrapper:nth-child(1) img,
  .organic-gallery .image-wrapper:nth-child(2) img,
  .organic-gallery .image-wrapper:nth-child(3) img,
  .organic-gallery .image-wrapper:nth-child(4) img,
  .organic-gallery .image-wrapper:nth-child(5) img {
    top: 0;
  }

  .image-wrapper img {
    aspect-ratio: unset;
    width: 9rem;
    height: 9rem;
  }

  .organic-gallery {
    margin: 0 auto;
  }
}