*,
*::before,
*::after {
  box-sizing: border-box;
}


body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

/** Sectie 1, Intro text ---------------------------------------------------------------- */

.section-1 {
  max-width: 100vw;
  padding: 10% 10%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 83%, 0% 65%);
  background-image: url('../../assets/images/boekhouding/home/MamaBureau.png');
  background-position: center bottom;
  z-index: -1;
}

.section-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #006a2085;
  clip-path: inherit;
  z-index: -1;
}

.text-container {
  max-width: 45%;
  text-align: left;
  margin-left: auto;
  margin-right: 0;
}

.text-container h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10%;
}

.text-container p {
  font-size: 1.1rem;
  color: white;
  line-height: 1.6;
}

/* Media Query voor kleinere schermen */
@media screen and (max-width: 768px) {
  .section-1 {
      padding: 20% 5%;
  }

  .text-container {
      max-width: 90%;
  }

  .text-container h1 {
      font-size: 2.5rem;
  }

  .text-container p {
      font-size: 1rem;
  }
}

/** Sectie 2, Reviews ---------------------------------------------------------------- */

.section-2 {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  margin-top: 60%;
  clip-path: path("M 0 0 C 316 1 466 53 723 39 C 975 35 1059 75 1300 41 L 1294 580 C 1191 579 1078 540 895 552 C 710 571 603 582 415 577 C 219 574 215 555 0 570 Z");
  background-size: cover;
  background-position: center;
}

.section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/images/boekhouding/home/Documentenkast.png');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -2;
}

.section-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bdb8b15d;
  clip-path: inherit;
  z-index: -1;
}

.review-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 5%;
}

.review {
  width: 20rem;
  background-color: #f7f7f780;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
  border: 0.063rem solid #ddd;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 7%;
}

.review-header img {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: bold;
  font-size: 1rem;
}

.review-text {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
}

.review-logo {
  margin-top: 0;
  max-width: 6.25rem;
  height: auto;
  opacity: 0.8;
  box-shadow: 0.125rem 0.25rem 0.313rem rgba(0, 0, 0, 0.148);
  border-radius: 0.5rem;
}

/* Responsieve aanpassing voor mobiele apparaten */
@media (max-width: 768px) {
  .reviews {
      margin-top: 100px; /* Voeg een marge toe boven de reviews sectie op mobiel */
  }
  
  /* Optioneel: als je de achtergrond ook wilt aanpassen op mobiel */
  .reviews-background {
      background-position: top center; /* Zorgt ervoor dat de achtergrond goed blijft */
  }
}
  
  
  

  
  
