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: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #FFC0CB;
    font-weight: bold;
    font-size: 25px;
    position: relative;
    z-index: 10;
}

html, body {
    margin: 0;
    padding: 0;
}

.content {
  min-height: 100%;
}

.noneone {
    height: 20px;
    background: #FFFFF1;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.flowers-container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: url('images/flowers-background5.png');
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  z-index: -1;
}

.flowers img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin-top: 20px;
  color: #ED89C5;
  font-family: 'Dancing Script', semi-bold;
  text-align: center;
}

.buttons {
  display: flex;
  justify-content: center;
}

#cart-items {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column; /* Plaats de items boven elkaar */
  align-items: center; /* Horizontaal centreren */
  margin: 0 auto; /* Horizontaal centreren door marges te gebruiken */
  max-width: 80%; /* Beperk de breedte tot 80% van het scherm */
}

#cart-items li {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ED89C5; /* Voeg een rand toe */
  border-radius: 10px; /* Maak de randen afgerond */
  padding: 10px; /* Voeg wat ruimte toe binnen elk item */
  width: 100%; /* Laat elk item 100% van de ouderbreedte innemen */
  text-align: left; /* Zet tekstuitlijning op links */
  background-color: #FFFFFF;
}

.totalpricecontainer {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column; /* Plaats de items boven elkaar */
  align-items: center; /* Horizontaal centreren */
  margin: 0 auto; /* Horizontaal centreren door marges te gebruiken */
  max-width: 80%; /* Beperk de breedte tot 80% van het scherm */
}

#total-price {
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ED89C5; /* Voeg een rand toe */
  border-radius: 10px; /* Maak de randen afgerond */
  padding: 10px; /* Voeg wat ruimte toe binnen elk item */
  width: 100%; /* Laat elk item 100% van de ouderbreedte innemen */
  text-align: left; /* Zet tekstuitlijning op links */
  background-color: #FFFFFF;
}

#clear-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;
}

#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;
}

#clear-button:hover, #product-button:hover {
  background-color: #FFC0CB;
}

/* Voeg deze CSS-regels toe voor het formulier */
.customerinfoform form {
  background-color: #FFFFFF; /* Achtergrondkleur van het formulier */
  padding: 20px; /* Binnenste vulling van het formulier */
  border: 2px solid #FFC0CB; /* Rand van het formulier */
  border-radius: 10px; /* Afgeronde hoeken van het formulier */
  max-width: 600px; /* Maximale breedte van het formulier */
  margin: 0 auto; /* Centreer het formulier op de pagina */
  font-family: 'Quicksand', sans-serif; /* Lettertype van het formuliertekst */
}

/* Stijl voor formulierlabels */
.customerinfoform form label {
  font-weight: bold; /* Vetgedrukte labels */
  margin-bottom: 5px; /* Afstand tussen labels en invoervelden */
}

/* Stijl voor invoervelden */
.customerinfoform form input[type="text"],
.customerinfoform form input[type="email"],
.customerinfoform form input[type="tel"],
.customerinfoform form textarea {
  width: 96%; /* Volledige breedte van de invoervelden */
  padding: 10px; /* Binnenste vulling van de invoervelden */
  margin-bottom: 10px; /* Afstand tussen invoervelden */
  border: 1px solid #FFC0CB; /* Rand van de invoervelden */
  border-radius: 5px; /* Afgeronde hoeken van de invoervelden */
  font-family: 'Quicksand', sans-serif; /* Lettertype van de invoervelden */
}

/* Stijl voor de verzendknop */
.customerinfoform form button {
  background-color: #ED89C5; /* Achtergrondkleur van de knop */
  color: #FFFFFF; /* Tekstkleur van de knop */
  padding: 10px 20px; /* Binnenste vulling van de knop */
  border: none; /* Geen rand rond de knop */
  border-radius: 5px; /* Afgeronde hoeken van de knop */
  font-family: 'Quicksand', sans-serif; /* Lettertype van de knop */
  cursor: pointer; /* Wijzig de cursor in een handje bij hover */
}

/* Stijl voor de verzendknop bij hover */
.customerinfoform form button:hover {
  background-color: #FFC0CB; /* Achtergrondkleur van de knop bij hover */
}

footer {
  background-color: #ED89C5;
  color: #FFFFFF;
  padding: 20px 0;
  font-family: 'Quicksand', sans-serif;
  margin-top: 20px;
  align-items: center;
  z-index: 1;
}

footer h3 {
  font-family: 'Dancing Script', semi-bold;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.quick-links {
  flex: 1;
}

.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;
}

.navit, navitul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.navit, .navitul, .navitli {
    display: inline;
    margin-right: 20px;
}

.navit, .navitul, .navitli, .navita {
    text-decoration: none;
    color: #FFC0CB;
    font-weight: bold;
    font-size: 15px;
    position: relative;
    font-family: 'Quicksand', sans-serif;
}

.navit a:hover {
  color: #ED89C5;
  transition: color 0.3s ease;
}
