/*
Theme Name: Nijhuis Interieuradvies
Theme URI: https://nijhuisinterieur.nl
Author: Jelle Hoornenborg
Description: Elegant WordPress-thema voor interieuradvies
Version: 1.0
Text Domain: nijhuis
*/

/* Hier komt de volledige CSS uit jouw HTML */

/* Algemene stijl voor afgeronde afbeeldingen */
img {
  border-radius: 1rem;
}

/* Uitzondering: boog-afbeelding op Over mij */
.overmij-afbeelding img {
  border-radius: 50% 50% 0 0;
  clip-path: ellipse(100% 85% at 50% 45%);
}



:root {
  --beige: #e8e4df;
  --tekst: #33312c;
  --achtergrond: #f8f6f3;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  color: var(--tekst);
  background-color: white;
  line-height: 1.6;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

body.fade-out {
  opacity: 0;
}


h1, h2, h3, h4, h5 {
  font-family: "the-seasons", serif;
}


section {
  padding: 6rem 2rem;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
}

html {
  scroll-behavior: smooth;
}


.btn {
  display: inline-block;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* PROJECTEN ARCHIVE */

.projecten-overzicht {
    padding: 0rem 6rem 6rem 2rem;
}

/* COMPLEET INTERIEURONTWERP DIENST */

.stappenplan {
  background-color: #f8f5f2;
  padding: 3rem 1rem;
  border-radius: 1rem;
  margin: 3rem 0;
}

.stappenplan .container {
  max-width: 800px;
  margin: 0 auto;
}

.stappenplan h2 {
  font-size: 2rem;
  color: #a15c38;
  margin-bottom: 2rem;
}

.stappenplan .stap {
  margin-bottom: 2rem;
}

.stappenplan .stap h3 {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.stappenplan .stap p {
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.kleine-opmerking {
  font-style: italic;
  color: #666;
  margin-top: 1.5rem;
}

.geschikt-titel {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  color: #a15c38;
}

.voorwaardenlijst {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.voorwaardenlijst li::before {
  content: "✔";
  color: #a15c38;
  margin-right: 0.75rem;
  font-weight: bold;
}

.voorwaardenlijst li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.prijs-label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #000;
}


/* OVER MIJ PAGINA  */

/* Algemene layout */
.overmij-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.overmij-afbeelding {
  flex: 1;
  max-width: 400px;
}

.overmij-afbeelding img {
  width: 100%;
  height: auto;
  object-fit: cover;
border-radius: 50% 50% 0 0;

  clip-path: ellipse(100% 85% at 50% 45%); /* optioneel: mooier boog-effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.overmij-tekst {
  flex: 2;
  min-width: 250px;
}

.overmij-tekst h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.overmij-tekst p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .overmij-container {
    flex-direction: column;
    text-align: center;
  }

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


/* Werkwijze sectie */
/* Stappenplan sectie */
.diensten-stappenplan {
  padding: 6rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.diensten-stappenplan .container {
  max-width: 800px;
  margin: 0 auto;
}

/* Titel & intro */
.diensten-stappenplan h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.diensten-stappenplan p {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Genummerde stappen */
.werkwijze-stappen {
  list-style: none;
  counter-reset: stappen;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.werkwijze-stappen li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.werkwijze-stappen li::before {
  counter-increment: stappen;
  content: counter(stappen);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  background-color: #6a3d3e; /* Jouw kleur */
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  text-align: center;
}

/* Ontwerpbox lijst */

.ontwerpbox-lijst {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  max-width: 600px;
}

.ontwerpbox-lijst li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Reset eventuele overgeërfde pseudo-elementen */
.ontwerpbox-lijst li::before {
  all: unset;
  content: "✔"; /* Vinkje – pas aan naar wens */
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
  color: #6a3d3e; /* Groen of jouw merk-kleur */
  font-weight: bold;
}



/* Stap inhoud */
.werkwijze-stappen h3 {
  font-size: 1.25rem;
    margin: 0 0 0.25rem 0;
  color: #222;
}

.werkwijze-stappen p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
    margin: 0; /* Verwijdert extra ruimte links/rechts én boven/onder */

}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
  .diensten-stappenplan {
    padding: 4rem 1.5rem;
  }

  .werkwijze-stappen li {
    padding-left: 2.5rem;
  }

  .werkwijze-stappen li::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.2rem;
    line-height: 1.75rem;
  }
}




/* DIENSTEN ARCHIVE PAGE */

.diensten-hero .container {
  text-align: center;
  max-width: 900px; /* optioneel, voor een mooie breedte */
  margin-left: auto;
  margin-right: auto;
}

.diensten-hero h2 {
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 2rem;
}


.diensten-hero {
  padding: 2rem;
}



.diensten-hero .subtitel {
  font-style: italic;
  color: #555;
  margin-bottom: 1em;
}

.diensten-hero p:last-child {
  color: #333;
  line-height: 1.5;
}


.diensten-overzicht {
  padding: 0rem 2rem 6rem 2rem; /* gelijke zijkanten */
  background-color: white;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dienst-card {
  background-color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dienst-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.dienst-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.dienst-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.dienst-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--tekst);
}

.dienst-content p {
  font-size: 1rem;
  color: var(--tekst);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.dienst-content .btn {
  background-color: var(--tekst);
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.dienst-content .btn:hover {
  background-color: #000;
}


/* === Diensten Pagina === */


.dienst-sectie {
  padding: 6rem 2rem;
  background-color: var(--achtergrond);
}

.dienst-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.dienst-wrapper.reverse {
  flex-direction: row-reverse;
}

.dienst-afbeelding,
.dienst-tekst {
  width: 50%;
  min-width: 0;
}

.dienst-afbeelding img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.dienst-tekst h1,
.dienst-tekst h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--tekst);
}

.dienst-tekst p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--tekst);
}

/* === Responsive layout === */
@media (max-width: 768px) {

  .diensten-overzicht, .projecten-overzicht {
    padding: 0rem 2rem !important;
    background-color: var(--achtergrond);
  }

  .dienst-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .dienst-afbeelding,
  .dienst-tekst {
    width: 100%;
  }

  .dienst-tekst h1,
  .dienst-tekst h2 {
    font-size: 1.6rem;
  }

  .dienst-tekst p {
    font-size: 1rem;
  }
}


/* === Navigatie & logo === */

.sticky-nav {
  position: sticky;
  top: 0;
  background-color: #e8e4df;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}


.logo img {
  max-height: 80px;
  transition: max-height 0.3s ease;
}

.sticky-nav.scrolled .logo img {
  max-height: 50px;
  transition: max-height 0.3s ease;
}


.nav-links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links li a {
  font-family: "the-seasons", serif;
  text-decoration: none;
  color: var(--tekst);
  font-weight: 600;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--tekst);
  transition: all 0.3s ease;
}

/* Mobiel responsief menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 2rem;
    background-color: var(--beige);
    padding: 1rem 2rem;
    box-shadow: var(--shadow);
    font-family: "the-seasons", serif;
  }

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

  .nav-links li {
    margin-bottom: 0.75rem;
  }
}


 /* Hamburger wordt kruisje bij 'open' */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/* HERO SECTIE */


.hero-acf {
  padding: 6rem 2rem;
  background-color: #9b937a;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left {
  flex: 1 1 50%;
}

.hero-left img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-right {
  flex: 1 1 45%;
}

.hero-right h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-right .subtitel {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 2rem;
}

.hero-right .btn {
  background: var(--tekst);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

/* Mobiel */
@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-right {
    padding: 2rem 0 0;
  }
}


/* HOMEPAGE INTRO */

.homepage-intro {
  background-color: var(--achtergrond);
  text-align: center;
  padding: 6rem 2rem;
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.homepage-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--tekst);
}

.homepage-intro p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: var(--tekst);
  margin-bottom: 2rem;
}

.homepage-intro .btn {
  background-color: var(--beige);
  color: var(--tekst);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.homepage-intro .btn:hover {
  background-color: var(--tekst);
  color: white;
}


/* HOMEPAGE MENU 3 ITEMS */
.homepage-menu {
  padding: 6rem 2rem;
  background-color: var(--achtergrond);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-card {
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.menu-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: white;
  text-align: center;
}

.menu-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.menu-btn {
  background: var(--tekst);
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.menu-card:hover .menu-btn {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* HOMEPAGE BANNER */

.homepage-banner {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.homepage-banner img {
  width: 100%;
  height: 200px; /* pas aan indien gewenst */
  object-fit: cover;
  display: block;
}


/* BUTTONS HOVER EFFECT */


.hero-right .btn,
.homepage-intro .btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-right .btn:hover,
.homepage-intro .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* TESTIMONIALS */

.testimonials {
  background-color: #f8f6f3;
  padding: 6rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background-color: white;
  padding: 2rem;
  font-style: italic;
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-style: normal;
  color: #6a3d3e;
}


/* Recente projecten */

/* === Homepage – Recente Projecten === */

.homepage-projecten {
  padding: 6rem 2rem;
  background-color: var(--achtergrond);
}

.homepage-projecten .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--tekst);
}

.projecten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.project-card {
  background-color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* dit verdeelt ruimte */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.project-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.project-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1; /* vult verticale ruimte */
}

.project-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--tekst);
}

.project-content p {
  font-size: 1rem;
  color: var(--tekst);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}



.project-content .btn {
  background-color: var(--tekst);
  color: white;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;

}

.project-content .btn:hover {
  background-color: #000;
}


/* buttons projecten */

.btn-dark {
  background-color: var(--tekst);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  text-align: center;
  text-decoration: none;

}

.btn-dark:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* Centering the button group */
.btn-group.center {
  text-align: center;
  margin-top: 3rem;
}



/* over mij onderaan */

.homepage-overmij {
  background-color: var(--achtergrond) !important;
}

.overmij-sectie {
  padding: 6rem 2rem;
}

.overmij-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.overmij-tekst {
  flex: 1;
}

.overmij-tekst h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--tekst);
}

.overmij-tekst p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--tekst);
}

.overmij-tekst .btn {
  background-color: var(--beige);
  color: var(--tekst);
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.overmij-foto {
  flex: 1;
  max-width: 500px;
}

.overmij-foto img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 768px) {
  .overmij-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .overmij-foto {
    max-width: 100%;
  }

  .overmij-tekst .btn {
    margin: 0 auto;
  }
}


/* CTA balk */


.cta-balk {
  background-color: var(--beige);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-balk-inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-balk h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--tekst);
}

.cta-balk p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--tekst);
  line-height: 1.6;
}


.cta-balk .btn {
  background-color: var(--tekst);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-balk .btn:hover {
  background-color: #000;
  transform: scale(1.05);
}



/* DIENST SINGLE CSS*/

.em-kleurtje {
  color: #6a3d3e; /* jouw kleur */
  font-style: italic; /* optioneel: behoud em-stijl */
}

.dienst-banner {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.dienst-banner img {
  width: 100%;
  height: 200px; /* pas dit aan naar wens */
  object-fit: cover;
  display: block;
}


.interieuradvies-info {
  background-color: #faf8f5;
  padding: 3rem 1rem;
  font-family: 'Arial', sans-serif;
  color: #333;
  border-radius: 1rem;
  margin: 2rem 0;
}

.interieuradvies-info .container {
  max-width: 800px;
  margin: 0 auto;
}

.stappenlijst,
.voorwaardenlijst {
  list-style: none;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

.stappenlijst li::before,
.voorwaardenlijst li::before {
  content: "✔";
  color: #6a3d3e;
  margin-right: 0.75rem;
  font-weight: bold;
}

.stappenlijst li,
.voorwaardenlijst li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.kleine-opmerking {
  font-style: italic;
  margin-bottom: 2rem;
  display: block;
  color: #6a3d3e !important;
}

.geschikt-titel {
  font-size: 1.5rem;
  margin-top: 2.5rem;
}

.prijs-label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #6a3d3e !important;
}

.dienst-titel {
  color: #6a3d3e !important;
  margin-bottom: 5px;
}


/* ACCORDION STAPPENPLAN */

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  color: #6a3d3e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0;
}

.step-label {
  margin-right: 0.5rem;
  color: #a15c38;
  font-weight: bold;
}

.accordion-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg); /* plus -> kruis */
}

.accordion-content {
  display: none;
  margin-top: 0.5rem;
  color: #333;
  line-height: 1.6;
}

.accordion-header[aria-expanded="true"] + .accordion-content {
  display: block;
}



/* === Footer === */

.site-footer {
  background-color: #6a3d3e;
  color: #e8e4df;
  padding: 4rem 2rem;
  font-size: 0.9rem;
  font-family: "the-seasons", serif;

}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav li a {
  color: #e8e4df;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: var(--beige);
}

.footer-socials a {
  color: #e8e4df;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--beige);
}

.footer-bottom {
  border-top: 1px solid white;
  padding-top: 1.5rem;
  text-align: center;
  color: #ccc;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--beige);
}

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

  .footer-nav {
    flex-direction: column;
    align-items: center;
  }

  .footer-socials {
    margin-top: 1rem;
  }
}



/* CONTACT PAGINA */

/* === Contactpagina Algemeen === */
.contact-pagina section {
  padding: 6rem 2rem;
}

.contact-pagina h1,
.contact-pagina h2,
.contact-pagina h3 {
  color: var(--tekst);
  margin-bottom: 1rem;
}

.contact-pagina p {
  font-size: 1.1rem;
  color: var(--tekst);
  line-height: 1.7;
}

/* === Contact Intro === */
.contact-intro {
  text-align: center;
  background-color: var(--achtergrond);
}

.contact-intro h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

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

/* === Contactgegevens Grid === */
.contact-gegevens .gegevens-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.gegeven {
  flex: 1 1 30%;
  background-color: white;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-radius: 0;
  text-align: center;
}

.gegeven h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gegeven a {
  color: var(--tekst);
  text-decoration: underline;
}

/* === Contactformulier === */
.contact-formulier {
  background-color: white;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 80px;
}

.contact-formulier h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-formulier p {
  margin-bottom: 2rem;
}

/* === Responsive Styling === */
@media (max-width: 768px) {
  .contact-pagina section {
    padding: 4rem 1.5rem;
  }

  .contact-gegevens .gegevens-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .gegeven {
    flex: 1 1 100%;
  }

  .contact-formulier {
    padding: 3rem 1.5rem;
  }

  .contact-formulier h2 {
    font-size: 1.6rem;
  }
}



/* === Contactformulier Styling === */

.contact-formulier {
  background-color: var(--achtergrond);
  padding: 6rem 2rem;
  text-align: center;
}

.contact-formulier h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--tekst);
  font-family: "the-seasons", serif;

}

.contact-formulier p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--tekst);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Form 7 Styles */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
}


.wpcf7 .wpcf7-submit {
  display: block;
  margin-left: auto;
}


.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--tekst);
    font-family: "the-seasons", serif;
}

.wpcf7 textarea {
  min-height: 150px;
}

.wpcf7 label {
    font-family: "the-seasons", serif;
}

.wpcf7 input[type="submit"] {
  background-color: var(--tekst);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-family: "the-seasons", serif;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* Foutmeldingen */
.wpcf7-not-valid-tip {
  color: red;
  font-size: 0.9rem;
  margin-top: -1rem;
}

/* Succesmelding */
.wpcf7-mail-sent-ok {
  background-color: #e0f7e9;
  border-left: 4px solid #38a169;
  padding: 1rem;
  margin-top: 2rem;
  color: #22543d;
}



/* DIENSTEN HOOFDPAGINA */

/* === Diensten Hoofdpagina – complete, verbeterde opmaak === */

.custom-diensten-blokken {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.dienst-blok {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1rem;
  background-color: #f8f6f3;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}

.dienst-blok h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.dienst-blok .sub {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.dienst-tekst {
  width: 100%;
  max-width: 100ch;
  text-align: left;
  margin: 0 auto;
}

.dienst-blok p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: inherit;
  text-align: left;
}

.dienst-blok a.btn {
  margin-top: 2rem;
  display: inline-block;
  background-color: var(--tekst);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dienst-blok a.btn:hover {
  background-color: #000;
  transform: scale(1.05);
}

/* Variaties qua kleur */
.dienst-blok.licht {
  background-color: #f8f6f3;
  color: #333;
}

.dienst-blok.licht .sub,
.dienst-blok.licht p {
  color: #333;
}

.dienst-blok.groen {
  background-color: #9b937a;
  color: white;
}

.dienst-blok.groen .sub,
.dienst-blok.groen p {
  color: white;
}

.dienst-blok.rood {
  background-color: #6a3d3e;
  color: white;
}

.dienst-blok.rood .sub,
.dienst-blok.rood p {
  color: white;
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
  .dienst-blok {
    padding: 2rem 1.5rem;
  }

  .dienst-tekst {
    text-align: center;
  }

  .dienst-blok p,
  .dienst-blok .sub {
    text-align: center;
  }

  .dienst-blok h3 {
    font-size: 1.5rem;
  }
}


/* MASONRY GALLERIJ */

.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  display: block;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-grid {
    column-count: 1;
  }
}


/* MARGES PORTFOLIO */

section.visueel-portfolio {
  padding-top: 1rem;
}

section.diensten-hero {
  padding-bottom: 0.5rem;
}
