/* =========================================================
   BASIS
========================================================= */
:root {
  --color-primary: #3b7ea8;
  --color-accent: #f4b183;
  --color-text: #1f2d3d;
  --color-text-soft: #5a6b7b;
  --color-bg: #ffffff;
  --color-bg-light: #f7f9fc;
  --color-border: #e5e9f0;

  --font-base: "Inter", system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  padding-top: 260px; /* ruimte voor header + nav */
  overflow-x: hidden;
}

/* =========================================================
   CONTAINERS
========================================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.narrow {
  max-width: 750px;
  margin: 0 auto;
}

/* =========================================================
   HEADER (vast bovenaan)
========================================================= */
.header {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
  margin-left: -1rem;
}

.contact-item a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* =========================================================
   NAVIGATIE (niet sticky)
========================================================= */
.main-nav {
  display: flex;
  justify-content: center;
  background-color: #f9fbfc;
  border-top: 1px solid var(--color-border);
  position: static;
  z-index: 998;
}

.main-nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: #e6f0f8;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
  z-index: 3;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-soft);
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {
  display: inline-block;
  background-color: #25D366;
  color: #fff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: 0.2s ease;
}

.btn-primary:hover {
  background-color: #1ebe5d;
  transform: translateY(-2px);
}

/* =========================================================
   SECTIES
========================================================= */
.section {
  padding: 5rem 0;
}

.section.light {
  background-color: var(--color-bg-light);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* =========================================================
   OVER MIJ
========================================================= */
.overmij {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.overmij-foto {
  display: flex;
  justify-content: center;
}

.overmij-foto img {
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  width: 280px;
  height: 280px;
  object-fit: cover;
}

/* =========================================================
   CARDS
========================================================= */
.card-list {
  display: grid;
  gap: 2rem;
}

.card {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0.5rem 0 1rem;
}

/* =========================================================
   BANNER
========================================================= */
.banner {
  margin-bottom: 2rem;
}

.banner img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* =========================================================
   WERKWIJZE (FIXED Z-INDEX)
========================================================= */
.werkwijze-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.werkwijze-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 1;
}

.werkwijze-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.werkwijze-section .container {
  position: relative;
  z-index: 3; /* ⭐ tekst komt boven overlay */
}

.step-list {
  display: grid;
  gap: 2rem;
}

.step {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

/* =========================================================
   CONTACT
========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-info p {
  margin: 0.4rem 0;
}

.contact-info a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-foto img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
  background-color: #fff;
}

.footer p {
  margin: 0.3rem 0;
  color: var(--color-text-soft);
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 900px) {
  .header-top {
    flex-direction: column;
    gap: 0.6rem;
  }

  .overmij {
    grid-template-columns: 1fr;
  }

  .overmij-foto {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .main-nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.4rem;
  }

  .hero {
    padding-top: 4rem;
  }

  .section {
    padding: 4rem 0;
  }

  .logo img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* Fix breedte van de drie vlakken in 'Diensten' */
.card-list {
  max-width: 750px;
  margin: 0 auto;
}
