body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin: 0;
  padding: 0;
}

.image-container {
  text-align: center;
  margin-top: 20px;
}

.image-container img {
  width: 30%;
  height: auto;
}

.image-container img.intro {
  width: 80%;
  height: auto;
}

.text-container {
  margin: auto;
  margin-top: 15px;
  width: 80%;
}

.image-container-products {
  text-align: center;
  margin-top: 25px;
}

.image-container-products img {
  width: 60%;
  height: auto;
}

.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.contact-form {
  background-color: #111;
  width: 60%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
  text-align: center;
}

.contact-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: 500;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  background-color: #222;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background-color: #2a2a2a;
}

.contact-form input[type=submit] {
  margin-top: 20px;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: #e50914; /* bold red for contrast */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form input[type=submit]:hover {
  background-color: #c40811;
}

.site-footer {
  background-color: #000; /* zwart */
  color: #fff; /* witte tekst */
  padding: 30px 20px;
  font-size: 16px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center; /* links uitlijnen */
  line-height: 1.6;
}

.footer-content a {
  color: #e50914;
}

.social-icons {
  margin-top: 30px;
  text-align: center;
}

.social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 24px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #e50914; /* rode hover-kleur, pas aan naar wens */
}

.social-icons a.instagram:hover {
  color: #e50914;
}

.social-icons a.facebook:hover {
  color: #e50914;
}

.social-icons a.tiktok:hover {
  color: #e50914;
}

.hero-header {
  position: relative;
  width: 100%;
  height: 40vw;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 2;
  padding: 14px 32px;

  border: none;
  border-radius: 6px;
  background-color: #e50914; /* bold red for contrast */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;

  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}

.hero-btn:hover {
  background-color: #c40811;
}

@media (max-width: 600px) {
  .image-container-products img {
    width: 90%;
    height: auto;
  }

  .text-container {
    margin: auto;
    margin-top: 15px;
    width: 90%;
  }

  .image-container img.intro {
    width: 90%;
    height: auto;
  }
  .contact-form {
    width: 80%;
  }

  .site-footer {
    font-size: 15px;
    padding: 20px;
  }
}
