 /* BASISINSTELLINGEN*/

 body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  position: relative;
}


/*HEADER*/

.site-header {
  position: fixed;
  top: 40px;  
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  transition: 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  width: 90%;
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;

  /* subtiele transparantie */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  transition: 0.3s ease; 
}




/*LOGO LINKS*/

.nav-brand {
  position: absolute;
  left: 50px;
}

.logo {
  height: 34px;
  transition: 0.3s ease;
}

.logo-dark {
  display: none;
}



/*NAV MENU*/


.nav-menu {
  display: flex;
  gap: 60px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.7px;
  position: relative;
  transition: 0.3s ease;
}

/* Subtiele underline animatie */

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 1px;
  background: #a73439;
  transition: 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}


/*SCROLL STATE*/


.site-header.scrolled .nav-container {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.site-header.scrolled .nav-menu a {
  color: #111111;
}

.site-header.scrolled .logo-light {
  display: none;
}

.site-header.scrolled .logo-dark {
  display: block;
}

 /*LOGO*/

 .logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  z-index: 11;
}

.logo-main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-main svg {
  width: 650px;
  height: auto;
  display: block;
  transform: translateX(12px);
}

/* Rood blokje gekoppeld aan logo */
.logo-block-wrapper{
  position: fixed;
  left: 0;
  top: 46%;
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
}

.logo-block{
  height: 105px;
  width: auto;
  display: block;
  transform: translateX(0);
}

/*HERO*/

.hero {
  position: relative;
  background: url("images/index/hero.2.jpg") no-repeat center / cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-overlay {
  position: relative;
  z-index: 2;
}

.site-header {
  z-index: 2000;
}


.hero-overlay {
  position: relative;
  z-index: 2;
}

/*INTRO*/

.intro-modern {
  background-color: #fff;
  padding: 140px 0;
}
.intro-container-modern {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}
.intro-text-modern {
  max-width: 500px;
}
.intro-subtitle {
  font-size: 0.9rem;
  color: #a52b2b;
  letter-spacing: 1.2px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.intro-text-modern h2 {
  position: relative;
  font-size: 2.6rem;
  color: #111;
  font-weight: 700;
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.intro-text-modern h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #a52b2b;
  border-radius: 2px;
}
.intro-text-modern p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
}
.intro-btn-modern {
  display: inline-block;
  border: 2px solid #111;
  color: #111;
  text-decoration: none;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s ease;
}
.intro-btn-modern:hover {
  background-color: #111;
  color: #fff;
}
.intro-image-modern img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

  .intro-modern {
    padding: 80px 0;
  }

  .intro-container-modern {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .intro-text-modern {
    max-width: 100%;
  }

  .intro-text-modern h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 25px;
  }

  .intro-text-modern p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .intro-text-modern h2::after {
    width: 50px;
    height: 2px;
  }

}


/*KERNWAADEN*/

.kernwaarden {
  background-color: #1a1a1a;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}
.kernwaarden-container {
  max-width: 1200px;
  margin: 0 auto;
}
.kernwaarden-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 60px;
  text-transform: uppercase;
  position: relative;
}
.kernwaarden-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a52b2b;
  margin: 16px auto 0;
}
.kernwaarden-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.kernwaarde h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.kernwaarde p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto;
}

/*INDEX/DIENSTEN*/

.diensten-home {
  background: #fff;
  padding: 120px 20px;
}

.diensten-wrapper-home {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.diensten-title-home {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
  position: relative;
}

.diensten-title-home::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a52b2b;
  margin: 16px auto 0;
}

/* Grid */
.diensten-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Kaart container */
.dienst-home {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* Desktop – vaste hoogte voor perfecte uitlijning */
@media (min-width: 901px) {
  .dienst-home {
    height: 500px; /* uniforme kaart-hoogte */
  }
}

/* Hover effect */
.dienst-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Afbeelding */
.dienst-home img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Content container */
.dienst-info {
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Titelblok – vaste hoogte */
.dienst-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  min-height: 48px; /* ruimte voor max 2 regels */
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

/* Tekstblok – vaste hoogte */
.dienst-info p {
  min-height: 100px;  /* uniforme ruimte voor 4–5 regels */
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}


/* Lees meer link – altijd onderaan */
.dienst-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 600;
  color: #a52b2b;
  display: inline-block;
}

.dienst-link:hover {
  color: #881f1f;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
  .diensten-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobiel/tablet – automatische hoogte */
  .dienst-home {
    height: auto;
  }

  .dienst-info h3,
  .dienst-info p {
    min-height: auto; /* laat alles vrij lopen op mobiel */
  }
}

@media (max-width: 600px) {
  .diensten-grid-home {
    grid-template-columns: 1fr;
  }
}

/*FOOTER*/
.footer-cta {
  position: relative;
  padding: 70px 40px 40px 40px;   /* compacter */
  text-align: center;
  color: #ffffff;
  background: #1a1a1a;
}

/* Content */
.footer-cta-content {
  max-width: 520px;
  margin: 0 auto;
}

.footer-cta h2 {
  font-size: 28px;        /* kleiner */
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-cta p {
  font-size: 15px;        /* kleiner */
  opacity: 0.7;
  margin-bottom: 22px;
}

.footer-btn {
  display: inline-block;
  background: #a73439;
  color: #fff;
  padding: 10px 24px;     /* kleiner */
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #8f2c30;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  font-size: 11px;      /* kleiner */
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.footer-bottom span {
  opacity: 0.4;
  margin: 0 12px;
}

/* =========================================================
   DIENSTEN - PAGINA
========================================================= */

.page-diensten-hero {
  background: url("images/index/hero.3.png") center/cover no-repeat;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page-diensten-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.page-diensten-hero .overlay {
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.page-diensten-hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.page-diensten-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.page-diensten-grid {
  background: #fff;
  padding: 100px 40px;
}
.page-diensten-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.page-dienst {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.page-dienst:nth-child(even) {
  direction: rtl;
}
.page-dienst:nth-child(even) .text {
  direction: ltr;
}
.page-dienst img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.page-dienst .text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  color: #111;
}
.page-dienst .text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #a52b2b;
  border-radius: 2px;
}
.page-dienst .text p {
  color: #444;
  line-height: 1.8;
  font-size: 1rem;
  max-width: 90%;
}

/* ============================= */
/* Contactpagina                 */
/* ============================= */

.contact-section {
  background-color: #fff;
  padding: 120px 20px;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #a52b2b;
  margin: 16px auto 0;
  border-radius: 2px;
}

.contact-intro {
  color: #444;
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 1rem;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #333;
}

.contact-info i {
  color: #a52b2b;
  margin-right: 10px;
}

.contact-info a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #a52b2b;
}

.contact-btn {
  display: inline-block;
  background-color: #a52b2b;
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 40px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #881f1f;
}

/* ============================= */
/* Over mij pagina               */
/* ============================= */

.overmij {
  background-color: #ffffff;
  color: #111;
  padding: 120px 40px;
}

.overmij-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.overmij-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.overmij-tekst h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  color: #111;
}

.overmij-tekst h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 3px;
  background-color: #a52b2b;
  border-radius: 2px;
}

.overmij-tekst p {
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  max-width: 95%;
}

/* Mobiel */
@media (max-width: 900px) {
  .overmij-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .overmij-tekst h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .overmij-tekst p {
    max-width: 100%;
  }
}



/* HAMBURGER */

.hamburger {
  display: none;
  position: absolute;
  right: 40px;
  cursor: pointer;
  width: 28px;
  height: 22px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #ffffff;
  margin-bottom: 5px;
  transition: 0.3s ease;
}

/* Scroll state kleur aanpassen */
.site-header.scrolled .hamburger span {
  background: #111111;
}

@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: 90%;

    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    border-radius: 12px;

    display: none;
  }

  .nav-menu a {
    color: #ffffff;
    font-size: 18px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

@media (max-width: 768px) {

  .logo-block {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 20px;
  }

}

@media (max-width: 600px) {

  /* Hero minder hoog */
  .hero {
    height: 90vh;
    padding-top: 60px;
  }

  /* Logo kleiner en hoger */
  .logo-main svg {
    width: 500px;
    transform: translateX(0);
  }

  .logo-wrapper {
    margin-bottom: 85px;
  }

  /* Blokje subtieler */
  .logo-block {
    height: 85px;
  }

  .logo-block-wrapper {
    top: 46%;
  }

}

@media (max-width: 600px) {

  .hero {
    position: relative;
  }

  .logo-block-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

}


