html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%; 
  font-family: Calibri, sans-serif; 
  background-image: url('achtergrond.webp'); 
  background-size: cover; 
  background-position: center center; 
  background-attachment: fixed; 
  color: #fff; 
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Navigatiebalk hoogte naar 100px */
  padding: 0 20px; /* Padding voor de zijkanten */
  background-color: #000; 
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.left-nav {
  display: flex;
  align-items: center;
}

nav .logo-container img {
  height: 100px; /* Verhoog de hoogte van het logo naar 100px */
  margin-right: 20px; 
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex; 
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background-color: rgb(0, 0, 0);
  color: white;
  padding: 10px;
  font-size: 16px;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border: 2px solid white;
  border-radius: 10px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #000000;
}

.dropdown-content a:hover {
  background-color: #000000;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.search-container {
  flex-grow: 1; 
  text-align: center;
}

.search-input {
  padding: 8px;
  font-size: 16px;
  width: 250px;
  border: 2px solid white;
  border-radius: 10px;
  background-color: #333;
  color: white;
}

.search-btn {
  background-color: #4CAF50;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  margin-left: 10px;
}

.search-btn:hover {
  background-color: #45a049;
}

.cart-container {
  margin-left: 20px;
}

.cart-container a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.cart-container img {
  height: 100px; /* Verhoog de hoogte van de winkelwagenafbeelding naar 100px */
  width: auto; 
  margin-right: 10px;
}

main {
  margin-top: 120px; /* Pas de marge aan zodat de inhoud niet onder de navigatiebalk valt */
  padding: 20px;
}

section {
  margin-bottom: 30px;
  background-color: rgba(0, 0, 0, 0.6); 
  padding: 20px;
  border-radius: 10px;
}

/* Koppen */
h1, h2 {
  color: #fff; 
  font-size: 24px;
  margin-bottom: 10px;
  font-family: Calibri, sans-serif; 
}

h1 {
  font-size: 32px;
  font-weight: bold;
}


p, ul, ol {
  color: #fff; 
  font-size: 16px;
  line-height: 1.5;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Winkelwagen */
.cart {
  background-color: rgba(0, 0, 0, 0.6); /* Zwarte achtergrond met 60% transparantie */
  border-radius: 10px;
  padding: 20px;
  width: 80%;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Zachte schaduw voor diepte */
}

.cart h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.cart-items {
  margin-top: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.cart-total {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  color: #fff;
}

.checkout-btn {
  background-color: #b99a45;
  color: white;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

.checkout-btn:hover {
  background-color: #a88e3c;
}
