.intro {
    width: 100%;
    text-align: center;
    padding: 0 1rem;
    margin: 1.5rem auto;
    max-width: 1000px;
}

.intro h2 {
    color: #faa8bf;
    margin-bottom: 1rem;
}

/*Navigation Bar*/
.navigation{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
    margin-bottom: 1rem;
    height: 60px;
    background-color: #F9F9F9;
}

.navigation h3 {
    padding: 0 1.3rem;
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
    font-family: ByShey, sans-serif;
    font-size: 1rem;
    margin: 0;
}

.navigation h3:after {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    background-color: #CEB39A;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(45deg);
    z-index: -1;
    display: none;
}

.navigation h3:hover {
    background-color: #CEB39A;
    cursor: pointer;
    color: white;
}

.navigation h3:hover:after {
    display: block;
}

.navigation .current {
    background-color: #CEB39A;
    cursor: pointer;
    color: white;
}

.navigation .current:after {
    display: block;
}

h3 {
    color: #faa8bf;
    margin-bottom: 1rem;
    font-family: 'Dawning of a New Day', cursive;
    font-size: 2.8rem;
}

.omgeving {
    font-family: ByShey, sans-serif;
    margin: 0;
}

@media (max-width: 600px) {
    .navigation {
        flex-direction: column;
        height: fit-content;
        margin: 0;
    }
    .navigation h3 {
        width: 100%;
        height: fit-content;
        padding: 0.5rem 0;
        font-size: 0.9rem;
        justify-content: center;
    }
    .navigation .current:after {
        display: none;
    }

}
/*secties*/
/* Slideshow container */
.slideshow-container {
    width: 25%;
    max-width: 1000px;
    position: relative;
    margin: auto;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dots {
      position: absolute;
      left: 0;
      right: 0;
    }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
  }

.mySlides img {
    border-radius: 10px;
    -moz-box-shadow:0px 0px 4px #575757;
    -webkit-box-shadow:0px 0px 4px #575757;
    box-shadow:0px 0px 4px #575757;
}
.allSection {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    position: relative;
}

.allSection:before {
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
    background-color: #FFEFF1;
    z-index: -1;
}

.allSection:nth-of-type(even):before {
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.txt {
    margin: 0 1rem;
    margin-right: 10rem;
    max-width: 750px;
    width: 50%;
    text-align: center;
}

.verjaardagstaarten .txt {
    margin-left: 2rem;
    margin-right: 0;
}
.img {
    width: 40%;
}

.img img {
    width: 40%;
    min-width: 100px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
    -moz-box-shadow:0px 0px 4px #575757;
    -webkit-box-shadow:0px 0px 4px #575757;
    box-shadow:0px 0px 4px #575757;
}

.img .img-large {
    width: 50%;
    margin: 0 2rem;
}

@media (max-width: 1735px){
    .txt {
        margin: 0 1rem;
    }
    .img .img-large {
        margin: 0 0.5rem;
    }
}

@media (max-width: 1200px){
    .txt {
        width: 40%;
    }
    .img {
        width: 50%;
    }
    .slideshow-container {
        width: 30%;
    }
}

@media (max-width: 1000px){
    .txt h3 {
        font-size: 2rem;
    }

}

@media (max-width: 760px) {
    .allSection {
        flex-direction: column;
    }
    .allSection .txt{
        width: 100%;
        margin: 1rem;
    }
    .allSection .txt p {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .img {
        width: 100%;
        display: inline-block;
        text-align: center;
        margin: 0 1rem;
        margin-top: 2rem;
    }
    .img img {
        width: 45%;
    }
    .img .img-large {
        width: 45%;
    }
    .slideshow-container {
        width: 45%;
    }
}
@media (max-width: 460px) {
    .slideshow-container {
        width: 60%;
    }
}

.verjaardagstaarten, .dripcakes, .stapeltaart, .fototaart {
    display: none;
}
.verjaardagstaarten {
    display: flex;
}

