/* Fonts & basisinstellingen */
* {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Serif', serif;
  color: #000;
  background-color: #fff;
}

a { text-decoration: none; color: inherit; }
/* -------------------- */
/* Header & Navbar */
/* -------------------- */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img.logo { height: 50px; }
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav a {
  font-size: 1.1rem;
  transition: color .3s;
  color: #1d1d1b;
}
nav a:hover { color: #009A77; }

/* Hamburger menu (hidden desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #1d1d1b;
  border-radius: 2px;
  transition: 0.3s;
}



/* Tekststijl */
h1 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.highlight {
  color: #009A77;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Layout */
.hero {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.hero-content {
  flex: 1 1 50%;
  padding: 5vw;
  z-index: 2;
}

.hero-image {
  flex: 1 1 50%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Knoppen */
.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn.primary {
  background-color: #000;
  color: #fff;
}

.btn.primary:hover {
  background-color: #009A77;
}

.btn.secondary {
  border: 2px solid #000;
  color: #000;
  background-color: transparent;
}

.btn.secondary:hover {
  background-color: #009A77;
  border-color: #009A77;
  color: #fff;
}

/* Responsiviteit */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }

  .hero-content {
    order: 1;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero-image {
    order: 1;
    width: 100%;
    height: 60vh;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }


  .hero-image {
    height: 50vh;
  }
}

@media (max-width: 1024px) {
  .buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%;
    text-align: center;
  }

}

/* ===== Intro Sectie ===== */
.intro {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.intro h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.intro .highlight {
  color: #009A77;
}

.intro p {
  font-family: 'IBM Plex Serif', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #dcdcdc;
  max-width: 750px;
  margin: 0 auto;
}

/* Responsiviteit */
@media (max-width: 768px) {
  .intro {
    padding: 4rem 1.5rem;
  }

  .intro h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .intro p {
    font-size: 0.95rem;
  }
}

/* ===== About Sectie ===== */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 6rem 5vw;
  background-color: #f9f9f9;
  flex-wrap: wrap;
}

.about-content {
  flex: 1 1 55%;
  font-family: 'IBM Plex Serif', serif;
  color: #000;
}

.about h2 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.about .highlight {
  color: #009A77;
}

.about-text p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  max-width: 650px;
}

.about-text strong {
  font-weight: 600;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* Afbeelding rechts */
.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Responsiviteit */
@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    text-align: left;
    padding: 4rem 2rem;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }

  .about-text p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .about {
    padding: 3rem 1.5rem;
  }

  .founder{
    text-align: left;

  }
}

/* ---------- Founder sectie ---------- */
.founder {
  background-color: #000;
  color: #fff;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.founder-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem; /* gelijke ruimte tussen blokken */
}

/* Titel */
.founder-title {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.founder-title .highlight {
  color: #009A77;
}

/* Intro tekst */
.founder-intro {
  margin: 0;
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: #ddd;
  line-height: 1.8;
  max-width: 950px;
}

/* Profielgedeelte */
.founder-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.5rem;
}

/* Cirkel met foto */
.photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Naam + functie */
.founder-name {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.founder-role {
  margin: 0;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* LinkedIn icoon */
.linkedin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  border: 1.5px solid #fff;
  transition: all 0.2s ease;
}

.linkedin svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.linkedin:hover {
  background-color: #0072B1;
  border-color: #0072B1;
  transform: translateY(-2px);
}


.diensten {
  background: 
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), 
    url("dienstenbg.jpg") center/cover no-repeat;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff
}
.diensten .subtitle {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.diensten h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;

}

.subtitle {
  color: #bfc5ca;
  font-size: 1.1rem;
  margin-bottom: 60px;
}
/* ---- DIENSTEN: equal-height cards + bottom-aligned footer (stacked layout) ---- */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: stretch; /* make all grid items equal height */
}

/* make each card a column flex container */
.dienst {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.dienst:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

/* push footer to bottom of each card */
.dienst-footer {
  margin-top: auto; /* keeps footer at bottom */
  display: flex;
  flex-direction: column; /* stack quote and link vertically */
  align-items: flex-start;
  gap: 10px;
}

.dienst-footer .quote {
  margin: 0;
  color: #a0a8af;
  font-style: normal;
  font-size: 0.95rem;
}

.dienst-footer .meer {
  color: #009A77;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.dienst-footer .meer:hover {
  color: #d0ff66;
}


.icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.dienst h3 {
  font-size: 1.4rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.dienst p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d8dee4;
}

.quote {
  color: #a0a8af;
  margin-top: 20px;
}

.meer {
  display: inline-block;
  margin-top: 25px;
  color: #009A77;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.meer:hover {
  color: #d0ff66;
}


/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .founder {
    padding: 4rem 1.5rem;
  }

  .photo-wrap {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 500px) {
  .founder-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
  }

  .photo-wrap {
    width: 75px;
    height: 75px;
  }

  .linkedin {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 768px) {
  nav ul {
    position: absolute;
    top: 70px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    gap: 1rem;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  nav ul.active { display: flex; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.2rem; }
  h2 { font-size: 2rem; }
}


/* Sectie container */
.anders-section {
  background-color: #eaf6f7;
  padding: 100px 20px;
  color: #1a1a1a;
}

/* Hoofdcontainer */
.anders-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Titel */
.anders-title {
  font-size: 2.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  margin-bottom: 15px;
}

.anders-title span {
  color: #009A77;
}

/* Intro */
.anders-intro {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 70px;
  line-height: 1.6;
}

/* Grid opbouw */
.anders-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* Kolommen */
.anders-col {
  display: flex;
  flex-direction: column;
  gap: 50px;
  text-align: left;
}

/* Item styling */
.anders-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.anders-icon {
  color: #009A77;
}

.anders-item-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0a0a0a;
  font-family: 'IBM Plex Sans', sans-serif;

}

.anders-item-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
  max-width: 300px;
}

/* Afbeelding */
.anders-image {
  width: 350px;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* Responsief gedrag */
@media (max-width: 900px) {
  .anders-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .anders-col {
    align-items: flex-start;
  }

  .anders-image {
    width: 80%;
  }

  .anders-item-text {
    max-width: 100%;
  }
}

.footer56 {
  font-family: "Inter", sans-serif;
  color: #333;
  background: #fff;
  padding: 2rem 1rem 0rem 1rem;
}

.footer56-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer56-top p {
  margin: 0;
}

.footer56-bottom {
  display: flex;
  justify-content: center;  /* ensures horizontal centering */
  align-items: center;      /* centers vertically (just in case) */
  text-align: center;       /* ensures text content is centered */
  width: 100%;
  font-size: 0.9rem;
  color: #444;
}

.footer56-bottom a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer56-bottom a:hover {
  color: #009A77; /* your brand green */
}

/* Responsive */
@media (max-width: 768px) {
  .footer56-top {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}
