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; 
  padding: 0 20px; 
  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; 
  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: 7px;
  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: 6px; 
  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; 
  width: auto;
  margin-right: 10px;
}

main {
  margin-top: 120px; 
  padding: 10px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.large-text {
  width: 30%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.large-text.left {
  background-image: url('iphone16.webp');
  background-size: 70%;
}

.large-text.right {
  background-image: url('s25%20ultra.webp');
}

.small-text-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 10px;
}

.small-text {
  width: 15%;
  height: 75px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.large-text h2, .small-text h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.large-text p, .small-text p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

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

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