/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f3efe7;
  color: #222;
}

.container {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 1rem;
}

.card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.logo {
  max-width: 80%;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

.contact {
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.contact h3 {
  font-size: 1.8rem;
  color: #003366;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 10px;
  flex: 1;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.contact-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f3efe7;
}

.contact-item strong {
  display: block;
  font-size: 1.2rem;
  color: #005b96;
  margin-bottom: 0.5rem;
}

.contact-item p {
  font-size: 1rem;
  color: #444;
  margin: 0;
}

/* Footer */
footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  color: #888;
}

footer .voorwaarden {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 0.3rem;
}

footer .voorwaarden a {
  color: #aaa;
  text-decoration: underline;
  transition: color 0.3s ease;
}

footer .voorwaarden a:hover {
  color: #000000;
}


/* Mobiel: logo beter zichtbaar */
@media (max-width: 600px) {
  .card {
    padding: 2rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .logo {
    max-width: 100%;
    height: auto;
    padding: 1rem;
  }
}
/* Overlay */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); /* lichte waas */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Middenbox */
.cookie-box {
  background-color: #f3efe7;
  color: #333;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

