/* ---------------------------------------------
   Globale instellingen
--------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #fff;
    color: #111827;
    line-height: 1.7;
}

/* Container */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ---------------------------------------------
   Navbar
--------------------------------------------- */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: block;
}

.logo-img {
    height: 100px;       /* gewenste hoogte van het logo */
    width: auto;        /* behoudt originele verhoudingen */
    display: block;
    max-height: 100px;
}

/* Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
    color: #111827;
}

/* ---------------------------------------------
   Hero sectie
--------------------------------------------- */
.hero {
    background: url('Fotos/achtergrond-hero.jpg') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 40px;
    border-radius: 12px;
    max-width: 90%;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.subtext {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 8px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #374151;
}

/* ---------------------------------------------
   contact sectie
--------------------------------------------- */

.contact {
    padding: 80px 0;
    background: #ffffff;
}

.contact h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

/* Grid layout */
.contact .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
}

/* contact cards */
.contact-block {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 35px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.contact-block h4 {
    font-size: 18px;
    margin: 25px 0 10px;
    color: #1f2937;
}

.contact-block p {
    font-size: 16.5px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 15px;
}

/* Lijsten */
.contact-block ul {
    padding-left: 18px;
}

.contact-block li {
    font-size: 15.5px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 6px;
}

/* Sectoren = volle breedte */
.contact-block:last-child {
    grid-column: span 2;
}

/* ---------------------------------------------
   Contact einde sectie
--------------------------------------------- */

.map-section {
  padding: 60px 0 80px;
}

.map-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.map-card__header {
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.map-card__header h3 {
  margin: 0;
  font-size: 22px;
  color: #111827;
}

.map-card__subtitle {
  margin: 6px 0 0;
  color: #374151;
  font-size: 15.5px;
  line-height: 1.5;
}

.map-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.map-link {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: #0f172a;
  background: #f1f5f9;
  transition: transform 0.15s ease, background 0.2s ease;
}

.map-link:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.map-link--primary {
  background: #0f172a;
  color: #fff;
}

.map-link--primary:hover {
  background: #1e293b;
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #f8fafc;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__footer {
  padding: 16px 24px 22px;
  border-top: 1px solid #e5e7eb;
  color: #374151;
  font-size: 15px;
}

.muted {
  color: #6b7280;
}

/* Mobile */
@media (max-width: 768px) {
  .map-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .map-card__actions {
    justify-content: flex-start;
  }
  .map-embed {
    aspect-ratio: 4 / 3;
  }
}


/* ---------------------------------------------
   Footer
--------------------------------------------- */
.footer {
    background: #111827; /* donkerblauw/grijs */
    color: #fff;
    padding: 60px 20px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p, 
.footer-section li, 
.footer-section a {
    font-size: 16px;
    color: #d1d5db; /* lichtere tekst */
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #9ca3af;
}

/* End of Style.css */