/* 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;
}

.content {
  min-height: 100%;
  margin: 20px;
  max-width: 90%;
}

h1 {
  margin-top: 20px;
  color: #ED89C5;
  font-family: 'Dancing Script', semi-bold;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* Zorgt ervoor dat knoppen naar de volgende regel gaan als er niet genoeg ruimte is */
}

#cart-items,
.totalpricecontainer {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 80%;
}

#cart-items li,
#total-price {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ED89C5;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  text-align: left;
  background-color: #FFFFFF;
}

#clear-button,
#product-button {
  background-color: #ED89C5;
  color: #FFFFFF;
  font-family: 'Quicksand', sans-serif;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 16px;
  margin-left: 10px;
}

#clear-button:hover,
#product-button:hover {
  background-color: #FFC0CB;
}

/* Voeg deze CSS-regels toe voor het formulier */
.customerinfoform form {
  background-color: #FFFFFF;
  padding: 20px;
  border: 2px solid #FFC0CB;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Quicksand', sans-serif;
}

/* Stijl voor formulierlabels */
.customerinfoform form label {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Stijl voor invoervelden */
.customerinfoform form input[type="text"],
.customerinfoform form input[type="email"],
.customerinfoform form input[type="tel"],
.customerinfoform form textarea {
  width: 92%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #FFC0CB;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
}

/* Stijl voor de verzendknop */
.customerinfoform form button {
  background-color: #ED89C5;
  color: #FFFFFF;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: 'Quicksand', sans-serif;
  cursor: pointer;
}

/* Stijl voor de verzendknop bij hover */
.customerinfoform form button:hover {
  background-color: #FFC0CB;
}

footer {
    text-align: center;
    margin-top: 20px;
}

/* 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) {

}