.Logo {
  background-color: black;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: white;
  color: black;
  margin: 0;
  padding: 20px;
}

/* MENU STIJLEN */
.menu {
  list-style-type: none;
  display: flex;
  flex-wrap: nowrap; /* voorkom dat items onder elkaar vallen */
  justify-content: flex-start; /* Links uitlijnen */
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: orangered; /* Volledige strook */
  width: 100%;
  box-sizing: border-box;
}

.menu li {
  position: relative;
  list-style: none;
}

.menu a {
  text-decoration: none;
  padding: 1rem 1.5rem;
  color: black;
  font-weight: 500;
  font-size: 18px;
  display: block;
  transition: background-color 0.3s ease;
}

.menu a:hover {
  background-color: #ff7043;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: white;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 999;
}

.dropdown-content a {
  padding: 12px 16px;
  background-color: #f9f9f9;
  color: black;
  font-size: 16px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Responsive menu */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    width: 100%;
  }

  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .dropdown-content a {
    width: 100%;
  }
}

/* BLIKBARE BLOKKEN STIJL */
.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.container > a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 22%;
}

.container > a:hover .blok {
  background-color: #ff7043;
  transform: scale(1.02);
  transition: all 0.2s ease-in-out;
}

.blok {
  background-color: orangered;
  color: black;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 8px;
  height: 100%;
}

.blok img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* RESPONSIVE */
/* Container blokken aanpassen */
@media (max-width: 768px) {
  .container > a {
    width: 48%;
  }
}

/* Voor heel smalle schermen */
@media (max-width: 480px) {
  .container > a {
    width: 100%;
  }
  
  /* Menu in 1 kolom */
  .menu {
    grid-template-columns: 1fr;
  }
}

/* OVERIGE STIJL */
h1, h2, p, li, form {
  font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
  font-size: 30px;
  color: black;
  display: inline;
}

h2 {
  font-size: 30px;
  color: black;
  display: inline;
}

p {
  font-size: 18px;
  color: black;
}

li {
  font-size: 18px;
  color: black;
}

form {
  font-size: 18px;
  color: black;
}

label {
  margin-block: 10px;
  display: block;
  width: 100%;
}

/* Maak formulieren flexibel */
input,
select,
textarea {
  display: block;
  width: 100%;
  max-width: 250px;
  font-size: 18px;
  padding: 5px 10px;
  box-sizing: border-box;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  height: 40px;
}

/* Afbeeldingen responsief */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Main sectie grid */
.main-section {
  display: grid;
  grid-template-columns: 30% 70%;
  max-width: 1200px;
  margin: 40px auto;
  gap: 30px;
  padding: 0 20px;
  align-items: center;
}

.main-left,
.main-right {
  flex: 1 1 50%;
  box-sizing: border-box;
}

.main-left img {
  width: 100%; 
  height: auto;
  border-radius: 8px;
  display: block;
}

.main-right h1 {
  font-size: 30px;
  margin-bottom: 20px;
  color: black;
}

.main-right p {
  font-size: 18px;
  color: black;
  margin-bottom: 15px;
}

/* Mobile aanpassingen voor main-section */
@media (max-width: 768px) {
  .main-section {
    display: flex;
    flex-direction: column;
  }

  .main-left,
  .main-right {
    flex: 1 1 100%;
  }
}

.merken-sectie {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.merken-sectie h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.merken-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.merken-logos img {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.merken-logos img:hover {
  transform: scale(1.05);
}

.footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 40px;
  border-top: 4px solid orangered;
}

.footer p {
  margin: 10px 0;
  color: white;
}

.footer a {
  color: white;
  text-decoration: underline;
}

.footer a:hover {
  color: orangered;
}

.copyright {
  font-size: 10px;
}

/* REALISATIES */
.realisaties {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.realisaties h1,
.realisaties h2 {
  text-align: center;
}

.werf {
  margin-bottom: 40px;
}

.werf h2 {
  font-size: 24px;
  margin-bottom: 30px;
  border-bottom: 2px solid black;
  padding-bottom: 5px;
}

.fotorij {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.fotorij img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.fotorij img:hover {
  transform: scale(1.03);
}

/* TOESTELLEN */
.toestellen-sectie {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.toestellen-sectie h2 {
  font-size: 26px;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: black;
}

.toestel-blok {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.toestel-blok img {
  width: 250px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.toestel-info {
  flex: 1;
}

.toestel-info h3 {
  margin-top: 0;
  font-size: 22px;
  color: orangered;
}

.toestel-info p,
.toestel-info ul {
  margin: 10px 0;
  font-size: 16px;
}

.toestel-info ul {
  padding-left: 20px;
}

.toestel-info li {
  margin-bottom: 5px;
}

/* Responsive: onder elkaar op kleinere schermen */
@media (max-width: 768px) {
  .toestel-blok {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .toestel-info {
    text-align: left;
    margin-top: 20px;
  }

  .toestel-blok img {
    width: 80%;
    max-width: 300px;
  }
}