/* cmsms stylesheet: home_clean modified: Wednesday, June 10, 2026 12:19:02 PM */
/* Basis */
.home-clean {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #111;
}

.home-clean__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.home-clean__default-content {
  display: none;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.site-header__bar {
  width: 100%;
  max-width: none;
  padding: 1.5rem 2rem;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-header__brand {
  text-align: center;
}

.site-header__brand img {
  max-width: 300px;
  height: auto;
}

.site-header__nav--left {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.site-header__nav ul {
  display: flex;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a {
  color: #111;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}

.site-header__nav a:hover {
  opacity: 0.6;
}

.site-header__nav .nav-extra {
  margin: 0;
  padding: 0;
}

/* =========================
   HERO
========================= */
.hero {
  width: 100%;
  margin-bottom: 0.5rem;
}

.hero img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.hero__content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 700px;
  width: 90%;
  color: #111;
}

.hero__content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.hero__content p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
}

/* =========================
   INTRO
========================= */

.intro {
  text-align: center;
  max-width: 700px;
  margin: 1.2rem auto 3rem auto;
}

.intro h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.2rem;

}

.intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.intro p:first-of-type {
  font-size: 1.2rem;
  font-weight: 500;
}

/* =========================
   SERVICES
========================= */

.services {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto;
}

.services h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.services h3 {
  font-size: 1.15rem;   /* gelijk aan tekst */
  font-style: italic;   /* verschil zit hier */
  font-weight: 400;     /* niet bold */
  margin-top: 1.2rem;
  margin-bottom: 0.1rem;
}

.services p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .site-header__bar {
    padding: 1rem 1.5rem;
  }

  .site-header__nav ul {
    gap: 1.5rem;
  }

  .site-header__brand img {
    max-width: 220px;
  }
}

@media (max-width: 600px) {
  .site-header__bar {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    text-align: center;
  }

  .site-header__nav--left {
    justify-self: center;
    flex-direction: column;
    gap: 1rem;
  }

  .site-header__nav ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 3rem 2rem 4rem 2rem;
}

.contact__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 2.5rem 0;
}

.contact__details {
  margin-top: 0;
}

.contact__details p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0 0 1.2rem 0;
}

.contact__details p:first-child {
  font-weight: 500;
}

/* =========================
   CONTACT SPLIT
========================= */

.contact__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact__details {
  text-align: left;
}

.contact__details h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact__details p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

/* MAP */
.contact__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(100%);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact__inner--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact__details {
    text-align: center;
  }
}
