* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body {
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f5f5f7;
}

main {
  flex: 1;
}

main h1{
  color:#000000;
}

.dark-mode main h1,
.dark-mode main p {
  color: #ffffff;
}

header {
  background: #97B6B8;
  border-bottom: 1px solid #e2e2e6;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0077ff;
}

.toggle {
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: #e4e4ea;
  padding: 3px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.toggle::before,
.toggle::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.toggle::before {
  content: "☀";
  left: 6px;
  color: #f59e0b;
  opacity: 1;
}

.toggle::after {
  content: "☾";
  right: 6px;
  color: #4b5563;
  opacity: 0.75;
}

.toggle-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.toggle.on {
  background: #111827;
}

.toggle.on::before {
  opacity: 0.45;
}

.toggle.on::after {
  color: #f8fafc;
  opacity: 1;
}

.toggle.on .toggle-circle {
  transform: translateX(18px);
  background: #ffffff;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.03em;
  align-items: start;
}

.logo a {
  display: block;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.logo picture,
.logo img {
  display: block;
}

.footer {
  background: #97B6B8;
  padding: 40px 0;
  text-align: center;
  color: white;
  font-family: system-ui, sans-serif;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
}

.footer-icon {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.25);
  padding: 14px;
  border-radius: 12px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-info p {
  margin: 6px 0;
  font-size: 16px;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

.hero-container {
  display: flex;
  align-items: center;     
  gap: 800px; 
  padding: 40px;             
}

.hero-container img {
  width: 300px;            
  height: auto;
}

.hero-text {
  text-align: right;      
  border: 1px solid #000;  
  padding: 20px;
  border-radius: 4px; 
  font-size:22px;   
}
h1{
  text-align:center;
}

.product-cards {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 20px;
}

.card {
  width: 250px;
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 2px solid #000000;  
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: column;
  align-items: center;
  gap: 24px;
  text-align:center;
}
.product-row {
  display: flex;
  justify-content: center; 
  gap: 40px;      
  flex-wrap: wrap;    
}

/* Afbeelding */
.card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.card-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #97B6B8;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 12px;
  border: 2px solid #000000;
}

.card img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #444;
}

.card-btn:hover {
  background: #7fa0a2;
}

.dark-mode .card {
  background: #6D6B68;
  color: #f5f5f7;
}

.dark-mode .card-btn {
  background: #555554;
  color: #ffffff;
}


/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.dark-mode {
  background: #404040;
  color: #f5f5f7;
}

.dark-mode header {
  background: #6D6B68;
  border-bottom: 1px solid #374151;
}

.dark-mode .footer {
  background: #6D6B68;
}

.dark-mode a {
  color: #e5e7eb;
}

.dark-mode a:hover {
  color: #ffffff;
}


.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    text-align: center;
  }

  .nav-left {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-links a {
    font-size: 16px;
  }
}