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

body{
    background-color: #E7DFD8;
}
header {
    font-family: "Trirong" , serif;
    margin-bottom: 50px;
}
.header_container{
    display: flex;
    justify-content: space-between;
}

.logo_container{
    display: flex;
    padding-bottom: 20px;

}

.logo_text{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 2px 2px 5px grey;
  display: flex;
  margin-top: 40px;
  margin-left: 40px;
  position: absolute;
}

.menu_container{
   display: flex;
   padding: 20px;
}

.menu_container nav{
    display: flex;
    gap: 50px;
}

.menu_container nav a{
    text-decoration: none;
    color: #7A4900;
    font-size: 18px;
    font-weight: 600;
    align-self: flex-start;
}

.main_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 70vh;
    font-size: 24px;
    font-weight: 500;
}

.home_top{
    margin-top: 150px;
    font-size: 38px;
    color: #7A4900;
    font-family: "Trirong" , serif;
    text-align: center;
    margin-bottom: 130px;
    text-shadow: 1px 1px 5px grey;
}

.carousel-container {
  position: relative;
  width: 100%;
  margin-top: 130px;
  overflow: hidden;
  padding: 40px 0;
}

.carousel-container::before,
.carousel-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;

  background: linear-gradient(
    90deg,
    #ffd9ac,
    #c8a378,
    #ffd9ac
  );

  background-size: 200% 100%;
  animation: borderMove 6s linear infinite;
}

.carousel-container::before {
  top: 0;
}

.carousel-container::after {
  bottom: 0;
}
@keyframes borderMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 50%;
  }
}

.carousel-text {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: slide 12s linear infinite;
}



.carousel-text span {
  padding: 0 40px;
  font-size: 36px;
  font-family: "Trirong" , serif;
  color: #333;
  text-shadow: 1px 1px 1px grey;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}



.home_image {
    background-image: url('img/logo-1.png');
    flex: 1;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    opacity: 25%;
}

.home_image p {
    margin-top: 20px;
    font-size: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
}

.home_button{
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.home_button button {
  position: relative;
  overflow: hidden;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(90deg, #ffd9ac, #c8a378);
  color: #000;
  box-shadow: 1px 1px 5px grey;
}

.home_button button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  transform: skewX(-25deg);
}

.home_button button:hover::after {
  animation: shine 0.9s ease;
}

@keyframes shine {
  to {
    left: 125%;
  }
}


.images_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.bottom_images{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 25px;
    margin-top: 30px;
}

.bottom_images img{
    width: 300px;
    height: 100%;
    border-radius: 5%;
    box-shadow: 2px 2px 5px grey;
}

.bottom_images p {
    display: flex;
    margin-top: 20px;
    font-size: 18px;
    color: #7A4900;
    gap: 20px;
}

footer {
  overflow-x: hidden;
}

.container_footer {
  background-color: #DCC3A4;
  font-family: "Trirong" , serif;
}

.footer-wave-svg {
    background-color: #DCC3A4;
    display: block;
    height: 30px;
    position: relative;
    width: 100%;
}
.footer-wave-path {
    fill: #E7DFD8;
}

a {
  color: black;
  font-family: "Trirong" , serif;
}

.adresgegevens address {
    color: black;
    font-family: "Trirong" , serif;
}

.openingstijden p {
    color: black;
    font-family: "Trirong" , serif;
}

.boekingsysteem {
    margin-top: 25px;
}

.boekingsysteem span {
    color: black;
    font-family: "Trirong" , serif;
}

.socialmedia {
    margin-top: 20px;
}

.socialmedia a span{
    color: black;
    font-family: "Trirong" , serif;
}

.main_container_cursussen {
    /* display: grid;
    grid-template-columns: 1.2fr 0.8fr;  */
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 60px 80px;
    align-items: start;
    margin-top: 100px;
        width: 100%;

}

.main_container_cursussen h1{
     font-size: 20px;
    color: #7a4e1d;
    line-height: 1.6;
    font-family: "Trirong" , serif;
}

.cursussen_container {
    font-size: 17px;
    color: #7a4e1d;
    line-height: 1.6;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;

}

.cursussen_container span {
    font-weight: bold;
    color: black;
}

.cursussen_content img {
    max-width: 275px;
    border-radius: 5%;
    box-shadow: 2px 2px 5px grey;
    display: block;
}

.cursussen_content {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .main_container_cursussen {
        grid-template-columns: 1fr;  /* alles onder elkaar */
        text-align: center;
    }

    .main_container_cursussen h1{
        font-size: 20px;
        font-weight: bold;
        text-align: left;
        }

    .cursussen_image {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 20px;
    }

    .cursussen_image img {
        width: 150px;
    }

    .logo_container {
        width: 50%;
    }

    .cursussen_content {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
}
}

.behandelingen_image{
    display: flex;
    gap: 20px;
    margin: 50px;
}

.behandelingen_image img{
    width: 200px;
    height: 200px;
    border-radius: 5%;
    box-shadow: 2px 2px 5px grey;
}

.text_behandelingen{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    color: #7A4900;
}

#behandelingen {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 40px;
    margin-top: 150px;
}

.behandeling {
    display: grid;
    grid-template-columns: 1.5fr 0.4fr 0.8fr;
    align-items: start;
    column-gap: 50px;
}

.left h2 {
    margin: 0px;
    color: #7a4e1d;
    font-size: 24px;
    margin-left: 80px;
}

.desc {
    line-height: 1.7;
    color: #7a4e1d;
    margin-left: 80px;
}

.mid .prijs {
    font-size: 20px;
    font-weight: bold;
    color: #7a4e1d;
}

.prijs_mobiel {
    display: none;
}

.right img {
    width: 150px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 5%;
    box-shadow: 2px 2px 5px grey;
}

.main_container_behandelingen {
    padding: 16px 0;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 900px) {
    .behandeling {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mid .prijs {
        display: none;
    }
    .left h2 {
        margin-left: 0;
    }

    .desc {
        margin-left: 0;
    }

    .prijs_mobiel {
        display: block;
        margin-top: 10px;
        font-size: 22px;
        font-weight: bold;
        color: #7a4e1d;
    }

    .right img {
        margin: 20px auto 0;
    }

    .bottom_images{
        flex-direction: column;
        align-items: center;
    }
}

.main_overmij_container{
    padding: 10px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    justify-content: center;
    align-items: center;
}

.overmij_text{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    color: #7a4e1d;
    line-height: 1.6;
}

.overmij_text{
    margin-top: 50px;
    font-size: 18px;
    color: #7a4e1d;
    line-height: 2.0;
    margin-left: 100px;
    
}

.overmij_image img{
    width: 200px;
    height: auto;
    border-radius: 50%;
    box-shadow: 2px 2px 5px grey;
    margin-bottom: 100px;
    align-items: center;
}

.overmij_image {
    border-left: #7A4900 dotted;
}

@media (max-width: 900px) {
    .main_overmij_container{
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 100px;
    }

    .overmij_image {
        border-top: #7A4900 dotted;
        border-left: none;
    }

    .overmij_image img{
        margin: 20px;
    }

    .overmij_text{
        margin-left: 0;
    }
}

.content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    gap: 20px;
    padding: 0 80px;
    border: solid 1px #ccc;
}
