:root {
  --accent: #c62828;       
  --accent-hover: #e53935;
  --dark: #141414;
  --light: #f8f9fb;
  --footer: #1b1b1b;
}

body {
  margin: 0;
  padding-top: 72px;
  font-family: "Poppins", system-ui, sans-serif;
  color: #222;
  background: #fff;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  padding-top: 2px;   /* minder ruimte boven */
  padding-bottom: 2px; /* minder ruimte onder */
  min-height: 68px;
}

.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-left: 1rem;
}
.navbar .nav-link:hover {
  color: var(--accent) !important;
}

/* groter logo met witte gloed */
.navbar-brand .logo {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.9));
  transition: transform 0.3s ease, filter 0.3s ease;
  margin: -12px 0; /* optisch centreren */
}
.navbar-brand .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255,255,255,1));
}

/* === HERO === */
.hero {
  position: relative;
  height: calc(100svh - 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
}
.hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: calc(100svh - 72px);
  min-width: 177.78vh;
  object-fit: cover;
  z-index: 0;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.hero p.lead {
  font-size: 1.2rem;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
}

/* verwijder hero-logo */
.hero-logo {
  display: none;
}

/* === BUTTONS === */
.btn-accent {
  background: var(--accent);
  color: #fff;
  border: none;
  transition: background 0.2s ease-in-out;
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
}
.btn-outline-light:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* === SECTIONS === */
section {
  padding: clamp(64px, 8vw, 120px) 0;
}
.section-title {
  font-weight: 700;
  position: relative;
  margin-bottom: 1.5rem;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 10px auto 0 auto;
}

/* === FOTO GRID === */
.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.foto-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  overflow: hidden;
}
.foto-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === VOORDELEN === */
.voordelen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.voordeel {
  padding: 1.5rem;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: transform 0.25s ease;
}
.voordeel:hover {
  transform: translateY(-6px);
}
.voordeel i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* === CONTACT === */
#contact {
  background: var(--dark);
  color: #fff;
}
#contact .tegel-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#contact .tegel {
  flex: 1 1 48%;
  background: #1f1f1f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}
#contact .tegel h2, #contact .tegel p {
  text-align: center;
}
#contact .form-control {
  border-radius: 6px;
  border: 1px solid #444;
  background: #fff;
  color: #111;
}
#contact .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 5px rgba(255,122,0,0.5);
}

/* Contactinfo centreren */
.contactinfo h5, .contactinfo p {
  text-align: center;
}
.contactinfo a {
  color: var(--accent);
  text-decoration: none;
}
.contactinfo a:hover {
  text-decoration: underline;
}

/* === MAP === */
#map {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

/* === FOOTER === */
footer {
  background: var(--footer);
  color: #ccc;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
footer img {
  height: 75px;
  filter: drop-shadow(0 0 5px rgba(255,255,255,0.9));
  transition: transform 0.3s ease, filter 0.3s ease;
  margin: -12px 0; /* optisch centreren */
  width: auto;
  vertical-align: middle;
}
footer .footer-links a {
  color: #bbb;
  margin: 0 6px;
  text-decoration: none;
}
footer .footer-links a:hover {
  color: var(--accent);
}

/* === RESPONSIEF === */
@media (max-width: 992px) {
  .navbar {
    background: rgba(20,20,20,0.95);
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .navbar-brand .logo {
    height: 120px;
    margin: -6px 0;
  }
  .hero {
    height: calc(100svh - 60px);
  }
  .hero iframe {
    min-height: calc(100svh - 60px);
  }
  #contact .tegel-row {
    flex-direction: column;
  }
  #contact .tegel {
    width: 100%;
  }
}
.btn-accent {
  box-shadow: 0 3px 10px rgba(198, 40, 40, 0.3);
}
.btn-accent:hover {
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.4);
}

/* Contactinfo wit maken */
.contactinfo {
  color: #fff;
}

.contactinfo a,
.contactinfo .bi {
  color: #fff;
}

.contactinfo a:hover {
  text-decoration: underline;
  color: #ddd;
}
