/* user.css – Projectspecificieke stijlen voor HOUDOE.nl */

:root {
  --kleur-brabantsrood: #b94c4c;
  --kleur-als-logo:	#e07454;
  --kleur-als-logo-hover: #cc5f3e;
  --kleur-vuurgroen: #749368;
  --kleur-accent: #5f6561;
  --kleur-hover: #39514e;
  --kleur-goed: #2e7d32;
  --kleur-tekst: #333;
  --kleur-blokje: #fef6e5;
  --kleur-achtergrond-licht: #fff9ed;
  --kleur-achtergrond-groenlicht: #ebf4d3;
  --kleur-achtergrond-witwarm: #fefcf8;	
  --kleur-achtergrond-geelzacht: #fce7ca;
  --kleur-achtergrond-geelzacht2: #fdf0d9;
  --kleur-achtergrond-lichtgrijs: #f8f8f6;
  --kleur-achtergrond-lichtgrijs-beige: #f8f6f1;
  --kleur-achtergrond-lichtgrijs-beige2: #f8f5ef;
  --kleur-achtergrond-lichtgrijs-beige3: #fffaf3;
  --border-radius-medium: 16px;
  --border-radius-large: 24px;
  --font-groot: 4.4rem;
  --font-medium: 2.4rem;
  --font-klein: 1.6rem;
}

body {
  background-color: var(--kleur-achtergrond-witwarm);
  margin: 0;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid var(--kleur-lijn-subtiel);
}

a {
  color: var(--kleur-als-logo);
  text-decoration: underline;
}

a:hover {
  color: var(--kleur-als-logo-hover);
}

section:not(.hero-split):not(.site-header):not(.footer-eenvoudig):not(.copyright) {
  border-top: 1px solid var(--kleur-lijn-subtiel);
}

.hero-split,
.probleemherkenning,
.slimme-aanpak,
.tarieven,
.testimonials,
.contact,
.portfolio {
  border-bottom: 1px solid var(--kleur-lijn-subtiel);
}

.bg-blokjes {
  background-image: url("data:image/svg+xml,%3Csvg width='240' height='240' viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='40' height='40' fill='%23fef6e5' /%3E%3Crect x='160' y='40' width='40' height='40' fill='%23fef6e5' /%3E%3Crect x='80' y='120' width='40' height='40' fill='%23fef6e5' /%3E%3Crect x='200' y='160' width='40' height='40' fill='%23fef6e5' /%3E%3Crect x='40' y='200' width='40' height='40' fill='%23fef6e5' /%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 240px 240px;
}

.site-header {
  background-color: var(--kleur-achtergrond-licht);
  padding: 1em 1em 1em 1.3em;
  position: relative;
  z-index: 1;
  border-bottom: none;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1em;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 48px;
}

.bedrijfsnaam {
  font-weight: 700;
  font-size: 3rem;
  color: var(--kleur-accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hoofdmenu ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}

.hoofdmenu a {
  color: var(--kleur-tekst);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.hoofdmenu a:hover,
.hoofdmenu a:focus,
.hoofdmenu a.active {
  color: var(--kleur-hover);
}

.header-buttons {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

/* Toevoeging: Mobiele styling voor contactknop in menu */
@media (max-width: 768px) {
  .header-buttons {
    width: 100%;
  }

  .header-buttons .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .header-buttons {
    display: none;
  }
}

.button.klein,
.header-buttons .button {
  background-color: var(--kleur-accent);
  color: #fff;
  padding: 0.75em 1.6em;
  border-radius: var(--border-radius-large);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Mobiel */
@media (max-width: 768px) {
  .button.klein,
  .header-buttons .button {
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* Hover */
.button.klein:hover,
.header-buttons .button:hover {
  background-color: var(--kleur-hover);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

/* Active (bij klikken) */
.button.klein:active,
.header-buttons .button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.hamburger {
  color: var(--kleur-tekst); /* grijsblauw, consistent met typografie */
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.8rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10; /* zodat hij boven content ligt */
}

.menu-toggle {
  position: absolute;
  top: 2.4rem;
  right: 1rem;
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--kleur-tekst); /* grijsblauw zoals andere tekst in header */
  z-index: 1000;
}

/* /* HERO-BLOK */
 
.hero-split {
  background-color: var(--kleur-achtergrond-licht);
  padding: 1rem 2rem 6rem;
}

.split-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-tekst {
  flex: 1 1 50%;
  max-width: 600px;
  min-width: 300px;
}

.hero-beeld {
  flex: 1 1 50%;
  max-width: 480px;
  text-align: center;
  min-width: 300px;
}

.hero-beeld img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
}

.hero-tekst h1 {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  margin-top: 8rem;
  padding-top: 0;
  color: var(--kleur-accent);
}

@media (max-width: 768px) {
  .hero-tekst h1 {
    margin-top: 2rem; /* of 2.5rem voor iets meer ruimte */
  }
}

.hero-tekst p {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  color: var(--kleur-tekst);
}

/* VOORDELEN */

.voordelen {
  background-color: var(--kleur-achtergrond-geelzacht);
  padding: 1rem 1rem 2rem 1rem;
  text-align: center;
}

.voordelen-blok {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.voordeel-item {
  flex: 1 1 200px;
  padding: 2rem 2rem 0 2rem;
  transition: transform 0.3s ease;
}

.voordeel-item i {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1;
  height: 2.5rem;
  display: inline-block;
  color: var(--kleur-accent);
}

.voordeel-item h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--kleur-accent);
}

.voordeel-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--kleur-accent);
  margin-top: 0.8rem;
  margin-bottom: 0;
}

/* Subtiele hover (optioneel) */
.voordeel-item:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .voordelen {
    padding: 3rem 1rem 3rem 1rem;
  }
}




/* PROBLEEMHERKENNING */

.probleemherkenning {
  background-color: var(--kleur-achtergrond-witwarm);
  padding: 5rem 2rem;
}

.probleemherkenning .split-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.probleem-afbeelding {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.probleem-afbeelding img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-large);
}

.probleem-tekstblok {
  flex: 1 1 55%;
  padding: 3rem 0;
}

.probleem-tekstblok h2 {
  font-size: 2.4rem;
  color: var(--kleur-tekst);
  margin-bottom: 2.8rem;
}

.probleem-lijst {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.probleem-lijst li {
  font-size: 1.7rem;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--kleur-tekst);
  line-height: 1.5;
}

.probleem-lijst li i {
  color: var(--kleur-goed);
  font-size: 1.2rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.probleem-cta {
  display: inline-block;
  background-color: var(--kleur-accent); /* of een concrete waarde zoals #5d625c */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-large);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}

.probleem-cta:hover {
  background-color: var(--kleur-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .probleemherkenning .split-container {
    flex-direction: column;
    text-align: center;
  }
	
  .probleem-tekstblok {
    text-align: left;
  }
}


/* AANBOD */

.aanbod {
  padding: 5rem 2rem;
  background-color: var(--kleur-achtergrond-witwarm);
}

.aanbod h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 4rem;
  color: var(--kleur-tekst);
}

.aanbod-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
}

.aanbod-kaart {
  background-color: #fef9f2;
  border: 1px solid #f0eae0;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 3rem 2rem;
  text-align: center;
  flex: 1 1 280px;
  max-width: 340px;
  transition: all 0.2s ease;
}

.aanbod-kaart:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.aanbod-kaart img {
  max-width: 160px;
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
}

.aanbod-kaart h3 {
  font-size: 1.8rem;
  color: var(--kleur-tekst);
  margin-bottom: 1rem;
}

.aanbod-kaart p {
  font-size: 1.5rem;
  color: var(--kleur-tekst);
  line-height: 1.6;
}



/* OVER MIJ */

.overmij {
  padding: 8rem 2rem 12rem 2rem;
  background-color: var(--kleur-achtergrond-witwarm);
}

.overmij-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.overmij-tekst {
  flex: 1 1 55%;
}

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

.overmij-tekst p {
  font-size: 1.7rem;
  line-height: 1.7;
  color: var(--kleur-tekst);
  margin-bottom: 1.6rem;
}

.overmij-afbeelding {
  flex: 1 1 40%;
  position: relative;
}

/* Container met pastelcirkels */
.pastel-cirkel-breed {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.pastel {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  z-index: 1;
}

.pastel-1 {
  background: #fce7ca;
  top: -20px;
  left: -40px;
}

.pastel-2 {
  background: #ebf4d3;
  bottom: -20px;
  right: -40px;
}

/* Ronde foto met lichte draaiing */
.foto-rond-wrapper {
  position: relative;
  z-index: 2;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--kleur-achtergrond-licht);
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-1.5deg);
}

.foto-rond-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
  transform: rotate(2.5deg) translateY(-3px);
  transition: transform 0.3s ease;
}

.foto-rond-wrapper img:hover {
  transform: rotate(0deg) scale(1.02);
}

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

  .overmij-tekst {
    text-align: left;
  }

  .foto-rond-wrapper {
    margin: 0 auto;
  }
}

/* Desktop: iets kleinere afbeelding voor balans */
@media (min-width: 1024px) {
  .pastel-cirkel-breed {
    max-width: 260px;
  }

  .foto-rond-wrapper {
    width: 230px;
    height: 230px;
    padding: 0.8rem;
  }

  .pastel {
    width: 140px;
    height: 140px;
  }

  .pastel-1 {
    top: -15px;
    left: -30px;
  }

  .pastel-2 {
    bottom: -15px;
    right: -30px;
  }

  .overmij-tekst {
    max-width: 580px;
  }
}



/* SLIMME AANPAK */

.slimme-aanpak {
  background-color: var(--kleur-achtergrond-geelzacht2);
  padding: 8rem 2rem;
}

.slimme-aanpak .split-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.slimme-aanpak-afbeelding {
  flex: 1 1 40%;
  text-align: center;
}

.slimme-aanpak-afbeelding img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.slimme-aanpak-tekst {
  flex: 1 1 55%;
  color: var(--kleur-tekst);
}

.slimme-aanpak-tekst h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: var(--kleur-accent);
}

.slimme-aanpak-tekst p {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.slimme-aanpak a {
  color: var(--kleur-als-logo);
  text-decoration: underline;
  font-weight: 500;
}

.slimme-aanpak a:hover {
  color: var(--kleur-brabantsrood);
  text-decoration-thickness: 2px; /* optioneel: net wat meer 'aanraking' */
}

@media (max-width: 768px) {
  .slimme-aanpak .split-container {
    flex-direction: column;
    text-align: center;
  }

  .slimme-aanpak-tekst {
    text-align: left;
  }
}



/* TARIEVEN */

.tarieven {
  background-color: var(--kleur-achtergrond-lichtgrijs-beige2);	
  padding: 8rem 2rem 12rem 2rem;
}

.tarieven-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pakketblok {
  background-color: #fef9f2;
  border: 1px solid #f0eae0;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 5rem;
  transition: all 0.2s ease;
}

.pakketblok:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.pakketblok h3 {
  font-size: 2rem;
  color: var(--kleur-accent);
  margin-bottom: 0.5rem;
}

.pakketblok .prijs {
  font-size: 2.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.pakketblok .uitleg {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--kleur-tekst);
}

.pakketblok ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.pakketblok li {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  padding-left: 1.4rem;
  position: relative;
}

.pakketblok li::before {
  content: "✔";
  color: var(--kleur-goed);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .tarieven-container {
    flex-direction: row;
  }

  .pakketblok {
    flex: 1 1 30%;
  }
}

.tarieven-titel {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  color: var(--kleur-accent);
}

.tarieven-intro {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 4rem;
  color: var(--kleur-tekst);
}

.pakket-populair {
  border: 2px solid var(--kleur-brabantsrood);
  position: relative;
  z-index: 1;
}

.badge-populair {
  position: absolute;
  top: -1.2rem;
  right: 1.2rem;
  background-color: var(--kleur-brabantsrood);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

@media (min-width: 768px) {
  .pakket-populair {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  }
}

/* Subtitel voor blokken binnen tarieven */
.tarieven-subtitel {
  text-align: center;
  font-size: 2rem;
  margin: 4rem 0 4rem 0;
  color: var(--kleur-accent);
}

/* Afsluitende zin onderaan tarieven */
.tarieven-afsluiter {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 4rem;
  color: var(--kleur-tekst);
}

.tarieven-divider {
  border: none;
  border-top: 1px solid #e7e2da;
  margin: 6rem auto 4rem;
  max-width: 600px;
}

.strippenkaart-centered {
  justify-content: center;
}

.pakket-alleen {
  max-width: 500px;
  width: 100%;
}

/* TESTIMONIALS */

.testimonials {
  padding: 8rem 2rem 12rem 2rem;
  background-color: var(--kleur-achtergrond-lichtgrijs-beige3);	
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: var(--kleur-accent);
}

.testimonial-blokken {
	background-color: #fdf6ec;
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .testimonial-blokken {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background-color: #fef9f2;
  border: 1px solid #f0eae0;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  transition: all 0.2s ease;
}

.testimonial:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial .quote {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--kleur-tekst);
}

.testimonial .quote i {
  font-size: 1.2rem;
  color: var(--kleur-accent);
  margin-right: 0.4rem;
}

.klant-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.klant-info strong {
  font-size: 1.8rem;
  color: var(--kleur-vuurgroen);
}

.klant-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}




/* PORTFOLIO */

.portfolio {
  background-color: var(--kleur-achtergrond-witwarm);
  padding: 4rem 2rem;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.8rem;
  color: var(--kleur-accent);
  margin-bottom: 0.5rem;
}

.portfolio .subtekst {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 3rem;
  color: var(--kleur-tekst);
}

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

.portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-medium);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.portfolio-item img:hover {
  transform: scale(1.02);
}



/* CONTACT */

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

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

.contact h2 {
  font-size: 2.8rem;
  color: var(--kleur-accent);
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--kleur-tekst);
}

.contact a {
  color: var(--kleur-als-logo);
  text-decoration: underline;
}

.contact a:hover {
  color: var(--kleur-als-logo-hover);
}

.contact form {
  margin-top: 2rem;
  text-align: left;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 1rem;
  border-radius: var(--border-radius-medium);
  border: 1px solid #ccc;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  box-sizing: border-box;
  font-family: inherit;
}

.contact textarea {
  min-height: 180px;
  resize: vertical;
}



/* FOOTER */

.footer-eenvoudig {
  background-color: var(--kleur-accent);
  padding: 2em 3em;
  border-top: 1px solid #dcdcdc;
  color: var(--kleur-achtergrond-licht);
}

.footer-inhoud {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.footer-tekst {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 1.5rem;
  color: var(--kleur-tekst);
}

.footer-logos img {
  height: 48px;
  object-fit: contain;
}

.copyright {
  background-color: var(--kleur-accent);
  color: var(--kleur-achtergrond-licht);
  font-size: 1.3rem;
  text-align: center;
  padding: 1em 0;
}

.copyright a {
  color: var(--kleur-achtergrond-licht);
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
	
  .hoofdmenu ul {
    flex-direction: column;
    gap: 1rem;
  }

  .split-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-tekst,
  .hero-beeld {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-inhoud {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-logos img {
    margin: 0 auto;
  }
}

	
/* CORRECTIES VOOR MOBIEL */
	
@media (hover: none) {
  .aanbod-kaart:hover,
  .pakketblok:hover,
  .testimonial:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 768px) {
  .aanbod-grid,
  .tarieven-container,
  .testimonial-blokken {
    gap: 3rem;
  }

  .aanbod-kaart,
  .pakketblok,
  .testimonial {
    padding: 2rem;
  }
}


/* HOUDOE-INTELLIGENCE */

.hi-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hi-header h1 {
  margin: 3rem 0.2rem 0 0;
}

.hi-button {
  display: inline-block;
  background-color: var(--kleur-als-logo);
  color: #fff;
  margin-top: 3rem;
  padding: 0.1em 0.45em;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  transition: background 0.3s ease;
}

.hi-button:hover {
  background-color: #bb6a56;
}

.houdoe-intelligence h2 {
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 3rem;
  color: var(--kleur-accent);
}

.houdoe-intelligence p {
  margin-bottom: 1.5rem;
  max-width: 60ch;
}

.houdoe-intelligence ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.houdoe-intelligence ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.2rem;
  position: relative;
}

.houdoe-intelligence ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

.houdoe-intelligence strong {
  font-weight: 600;
  color: var(--kleur-als-logo);
}

.houdoe-intelligence hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 4rem 0;
  max-width: 40ch;
}


/* Universele CTA-buttonstijl */
.cta-button,
.button.klein,
.header-buttons .button,
.cardbutton {
  background-color: var(--kleur-als-logo);
  color: #fdf9f6;
  padding: 0.9rem 1.8rem;
  border-radius: var(--border-radius-large);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease, transform 0.1s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  display: inline-block;
  letter-spacing: 0.03em;
}

/* Hover & active */
.cta-button:hover,
.button.klein:hover,
.header-buttons .button:hover,
.cardbutton:hover {
  background-color: var(--kleur-als-logo-hover);
  color: #fdf9f6;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:active,
.button.klein:active,
.header-buttons .button:active,
.cardbutton:active {
  transform: translateY(1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cardbutton {
	 font-size: 1rem;
}

button.cta-button {
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}



