/* Algemene opmaak */
body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}

/* Header */
header {
    background-color: #FFFFF1;
    color: #FFC0CB;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Dancing Script', cursive;
    position: relative;
    z-index: 10;
}

.logo img {
    width: 150px;
    height: auto;
    margin-bottom: 0px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: block; /* Veranderd van inline naar block */
    margin-bottom: 10px; /* Ruimte tussen de lijstitems toegevoegd */
}

nav ul li a {
    text-decoration: none;
    color: #FFC0CB;
    font-weight: bold;
    font-size: 25px;
    position: relative;
    z-index: 10;
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.carousel .carousel-item {
    position: absolute;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hello {
    display: flex;
    margin: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    max-width: 90%;
    border: 2px solid #FFC0CB;
    border-radius: 10px;
}

/* Overige secties */
.hellocontent {
    display: flex;
    flex-direction: column; /* Veranderd naar column om elementen onder elkaar te plaatsen */
    align-items: center;
    margin-top: 20px;
    max-width: 98%;
    overflow: hidden;
}

.helloimg img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 15px;
}

.hellotitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
    margin-bottom: 0; /* Aangepast naar 0 voor consistente styling */
}

.products {
    display: flex;
    margin: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    max-width: 90%;
    border: 2px solid #FFC0CB;
    border-radius: 10px;
}

.tutorial {
    display: flex;
    margin: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    max-width: 90%;
    border: 2px solid #FFC0CB;
    border-radius: 10px;
}

.help {
    display: flex;
    margin: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 50px;
    max-width: 90%;
    border: 2px solid #FFC0CB;
    border-radius: 10px;
}

footer {
    text-align: center;
    margin-top: 20px;
}

/* Knopstijlen */
.klantenservice-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ED89C5;
    color: #FFF;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.klantenservice-button:hover {
    background-color: #FFC0CB;
}

.video-howto {
  width: 98%;
  height: auto;
}

.tutorialtitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.helptitle {
    margin-top: 20px;
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.productstitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.instatitle {
    color: #ED89C5;
    font-family: 'Dancing Script', semi-bold;
}

.product {
  display: inline-block;
  margin: 20px;
  padding: 10px;
  border: 2px solid #FFC0CB;
  border-radius: 10px;
  max-width: 100%;
  font-family: 'Quicksand', sans-serif;
}

.product img {
  max-width: 100%;
}

.product h3 {
  margin-top: 10px;
}

.product p {
  font-size: 14px;
}

.insta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  margin-top: 20px;
}

.instacontent {
  border: 2px solid #FFC0CB;
  border-radius: 10px;
  max-width: 90%;
  margin: 20px;
  margin-top: 50px;
}

/* Footer */
footer {
    background-color: #ED89C5;
    color: #FFFFFF;
    padding: 20px 10px;
    font-family: 'Quicksand', sans-serif;
    margin-top: 20px;
    align-items: center;
    z-index: 1;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contact-info,
.quick-links {
    flex: 1;
    margin: 10px;
}

.contact-info h3,
.quick-links h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 8px;
}

.quick-links a {
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #FFC0CB;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.navi a:hover {
    color: #ED89C5;
    transition: color 0.3s ease;
}

.navi {
    position: relative;
}

/* Mediaquery voor kleinere schermen */
@media only screen and (max-width: 600px) {
    .helloimg img {
        margin-bottom: 0;
    }
    .carousel {
        display: none; /* Verbergen op kleinere schermen */
        max-width: 100%;
    }
    .arrow,
    .noneone {
        display: none;
        height: 0%;
    }
}