/* =========================================================
   FRAAJ WEBSITE
   VOLLEDIGE CSS
   ========================================================= */

/* =========================================================
   1. FONTS
   ========================================================= */

@font-face {
  font-family: "MilgranItalic";
  src: url("fonts/MilgranItalic-ALzOM.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "SegoeScript";
  src: url("fonts/segoesc.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "ErasMedium";
  src: url("fonts/ERASMD.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* =========================================================
   2. VARIABELEN
   ========================================================= */

:root {
  --bg-dark: #11100e;
  --bg-light: #f1eee7;

  --primary-orange: #d23d21;
  --primary-orange-hover: #b83d1f;

  --text-muted: #888888;
  --text-dark: #333333;

  --font-heading: "MilgranItalic", serif;
  --font-script: "SegoeScript", cursive;
  --font-body: "ErasMedium", sans-serif;
}

/* =========================================================
   3. RESET / ALGEMEEN
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family: var(--font-body);

  background-color: var(--bg-dark);
  color: var(--bg-light);

  font-size: 1rem;
  line-height: 1.6;

  overflow-x: hidden;
}

img {
  max-width: 100%;
}

/* =========================================================
   4. HEADER
   ========================================================= */

header {
  height: 60px;

  display: flex;
  align-items: center;

  background-color: var(--bg-dark) !important;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);

  z-index: 1000;
}

.logo-header {
  width: auto;
  height: 40px;

  object-fit: contain;

  margin-left: -30px !important;
}

/* =========================================================
   5. NAVIGATIE
   ========================================================= */

.nav-link {
  color: var(--bg-light) !important;

  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange) !important;
}

/* =======================================================
   NAVBAR
   ======================================================= */

.navbar-toggler {
  padding: 8px;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;

  filter: invert(1);
}

/* =======================================================
   NAVBAR DESKTOP
   ======================================================= */

@media (min-width: 768px) {
  .navbar-nav {
    gap: 26px;
  }

  .navbar-nav .nav-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* =========================================================
   6. ALGEMENE TYPOGRAFIE
   ========================================================= */

.section-title {
  font-family: var(--font-heading);

  font-size: 5rem;
  font-weight: 800;
  font-style: italic;

  line-height: 1;

  white-space: nowrap;
}

.section-title span {
  display: inline-block;

  white-space: nowrap;
}

.script-title {
  font-family: var(--font-script);

  font-size: 2.8rem;
  font-weight: normal;
}

.title-logo {
  width: auto;
  height: 1.1em;

  display: inline-block;

  object-fit: contain;

  margin-left: 15px;

  transform: translateY(2px);
}

.text-orange {
  color: var(--primary-orange) !important;
}

.text-dark-custom {
  color: var(--text-dark);

  font-size: 1rem;
  line-height: 1.7;
}

.text-white-custom {
  max-width: 420px;

  color: var(--bg-light);

  font-size: 1rem;
  line-height: 1.7;
}

.text-muted-custom {
  color: var(--text-muted);

  font-size: 0.95rem;
}

/* =========================================================
   7. ALGEMENE SECTIES
   ========================================================= */

.section-dark {
  background-color: var(--bg-dark);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

/* =========================================================
   8. KNOPPEN
   ========================================================= */

.btn-script-orange {
  display: inline-block;

  margin-top: 20px !important;

  padding: 5px 35px !important;

  border: none !important;
  border-radius: 6px !important;

  background-color: var(--primary-orange) !important;
  color: var(--bg-light) !important;

  font-family: var(--font-script) !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;

  text-decoration: none !important;

  box-shadow: none !important;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.btn-script-orange:hover {
  background-color: var(--primary-orange) !important;
  color: var(--bg-light) !important;

  transform: translateY(-1px);
}

.btn-script-black {
  display: inline-block;

  margin-top: 20px !important;

  padding: 5px 35px !important;

  border: none !important;
  border-radius: 6px !important;

  background-color: var(--bg-dark) !important;
  color: var(--bg-light) !important;

  font-family: var(--font-script) !important;
  font-size: 1rem !important;
  line-height: 1.2 !important;

  text-decoration: none !important;

  box-shadow: none !important;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.btn-script-black:hover {
  background-color: var(--bg-dark) !important;
  color: var(--bg-light) !important;

  transform: translateY(-1px);
}

/* =========================================================
   9. CONTACT SECTIE - ALLE PAGINA'S
   ========================================================= */

.contact-section {
    height: 40vh !important;
    min-height: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;

  background:
    linear-gradient(rgba(244, 238, 231, 0.85), rgba(244, 238, 231, 0.85)),
    url("afbeeldingen/fotos/bw/fraaj_BWbloemen_01.webp")
      center / cover no-repeat;
}

.contact-section .section-title {
  margin-bottom: 10px !important;

  font-size: clamp(3.8rem, 6vw, 6rem);

  text-align: center;
}

.contact-section .btn-script-orange {
  margin-top: 5px !important;
}

/* =========================================================
   FOOTER - DESKTOP
   ========================================================= */

.footer-custom {
  padding-left: 30px;
  padding-right: 30px;

  background-color: var(--bg-dark);
}

/* 4 kolommen:
   logo links - 3 onderdelen rechts */
.footer-grid {
  display: grid;

  grid-template-columns:
    2.5fr
    1fr
    1fr
    1fr;

  column-gap: 45px;

  width: 100%;

  align-items: start;
}

/* ==============================
   LOGO + GEGEVENS LINKS
   ============================== */

.footer-contact {
  grid-column: 1;
}

.footer-logo-wrapper {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;
}

.footer-logo {
  display: block !important;

  width: 150px !important;
  height: auto !important;

  margin: 0 0 15px -6px !important;
}

/* ==============================
   3 KOLOMMEN RECHTS
   ============================== */

.footer-over {
  grid-column: 2;
}

.footer-info {
  grid-column: 3;
}

.footer-anko {
  grid-column: 4;
}

/* Titels */
.footer-custom h5 {
  margin-bottom: 10px !important;

  color: var(--bg-light) !important;

  font-family: var(--font-script) !important;
  font-size: 1rem !important;
  font-weight: normal !important;
}

/* Lijsten */
.footer-custom ul {
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.footer-custom ul li {
  margin-bottom: 4px !important;
}

/* Links */
.footer-custom a.text-muted-custom {
  transition: color 0.3s ease;
}

.footer-custom a.text-muted-custom:hover {
  color: var(--primary-orange) !important;
}

/* ANKO LOGO */
.footer-custom .anko-image,
.footer-custom .anko-logo-wrapper img {
  display: block !important;

  width: 100px !important;
  max-width: 100px !important;
  height: auto !important;

  margin-left: 0 !important;
}

/* =========================================================
   =========================================================
   HOMEPAGE
   =========================================================
   ========================================================= */

/* =========================================================
   11. HOMEPAGE HERO
   ========================================================= */

.home-page .hero-section {
  min-height: 100vh;

  padding-top: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url("afbeeldingen/fotos/bw/fraaj_BWsalon_01.webp")
      center / cover no-repeat;
}

.home-page .logo-hero {
  display: block;

  width: clamp(320px, 58vw, 850px);
  max-width: 85%;
  height: auto;

  margin: 0 auto;
}

/* =========================================================
   12. HOMEPAGE - WIE IS FRAAJ
   ========================================================= */

.home-page .wie-is-wrapper {
  position: relative;

  padding: 0 0 80px;

  background-color: var(--bg-dark);

  overflow: visible;
}

.home-page .wie-is-wrapper .container-fluid {
  overflow: visible;
}

.home-page .wie-is-wrapper .row {
  position: relative;

  min-height: 520px;

  align-items: end !important;
}

.home-page .wie-is-card {
  min-height: 480px;

  padding: 90px 10% 90px 11%;

  display: flex;
  align-items: center;

  position: relative;

  background-color: var(--bg-light);
  color: var(--bg-dark);

  transform: translateY(-40px);

  z-index: 1;
}

.home-page .wie-is-content {
  width: 100%;
  max-width: 600px;
}

.home-page .wie-is-card .section-title {
  margin-bottom: 30px !important;

  font-size: clamp(3.8rem, 6vw, 6rem);
}

.home-page .wie-is-card .text-dark-custom {
  max-width: 520px;

  font-size: 1rem;
  line-height: 1.55;
}

.home-page .wie-is-img-box {
  position: relative;

  width: 390px;
  max-width: 90%;
  height: 430px;

  margin: 0 -90px -35px auto;

  border: 5px solid var(--bg-light);

  overflow: hidden;

  z-index: 5;
}

.home-page .wie-is-img-box img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* =========================================================
   HOMEPAGE - WAT DOET FRAAJ
   ========================================================= */

.home-page .section-dark.py-5 {
  padding-top: 55px !important;
  padding-bottom: 0 !important;

  overflow: hidden !important;
}

.home-page .section-dark.py-5 > .container {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding-left: 40px;
  padding-right: 40px;
}

/* =========================================================
   TITEL - WAT DOET FRAAJ
   ========================================================= */

.home-page .section-dark.py-5 > .container > .section-title {
  margin-bottom: 70px !important;

  font-size: clamp(4rem, 6vw, 6rem);

  justify-content: center;
}

/* =========================================================
   HAARWERKEN
   ========================================================= */

.home-page #haarwerken {
  position: relative;

  min-height: 500px;

  margin-bottom: 0 !important;

  align-items: center !important;
}

/* Tekst Haarwerken */

.home-page .haarwerken-tekst {
  position: relative;

  top: -35px;

  padding-left: 40px;
  padding-right: 30px;
}

.home-page #haarwerken .script-title {
  margin-bottom: 20px !important;

  font-size: 2.7rem;
}

.home-page #haarwerken .text-white-custom {
  width: 100%;
  max-width: 390px;

  margin-bottom: 20px !important;

  font-size: 1rem;
  line-height: 1.55;
}

/* Foto Haarwerken */

.home-page #haarwerken .foto-kader-oranje {
  position: relative;

  width: 100%;
  max-width: 450px;
  height: 480px;

  margin: 0 0 0 auto;

  border: 5px solid var(--primary-orange);

  overflow: hidden;

  z-index: 5;
}

.home-page #haarwerken .sectie2-img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;
}

/* =========================================================
   HOOFDHUIDANALYSE
   ========================================================= */

.home-page .wat-doet-oranje-wrapper {
  position: relative !important;

  left: 27% !important;

  width: 73vw !important;
  max-width: none !important;

  min-height: 470px;

  margin: -25px 0 0 0 !important;

  padding: 70px 60px 70px 40px !important;

  background-color: var(--primary-orange) !important;

  overflow: visible !important;

  z-index: 1;
}

/* Oude pseudo-elementen uitschakelen */

.home-page .wat-doet-oranje-wrapper::before,
.home-page .wat-doet-oranje-wrapper::after {
  display: none !important;
}

/* =========================================================
   FOTO HOOFDHUIDANALYSE
   ========================================================= */

.home-page #hoofdhuidanalyse .foto-overlap-links {
  position: relative !important;

  width: 420px !important;
  max-width: none !important;
  height: 470px !important;

  margin: -15px 0 -90px -315px !important;

  border: 5px solid var(--primary-orange) !important;

  overflow: hidden;

  z-index: 10;
}

.home-page #hoofdhuidanalyse .foto-overlap-links img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;
}

/* =========================================================
   TEKST HOOFDHUIDANALYSE
   ========================================================= */

.home-page #hoofdhuidanalyse .col-12.col-md-7 {
  margin-left: 0 !important;

  padding: 20px 40px 20px 55px !important;
}

.home-page #hoofdhuidanalyse .script-title {
  margin-bottom: 20px !important;

  font-size: 2.7rem;
  line-height: 1.1;
}

.home-page #hoofdhuidanalyse .text-white-custom {
  width: 100%;
  max-width: 400px;

  margin-bottom: 20px !important;

  font-size: 1rem;
  line-height: 1.55;
}

/* =========================================================
   DESKTOP UITLIJNING HAARWERKEN + HOOFDHUIDANALYSE
   ========================================================= */

@media (min-width: 1025px) {
  /* -----------------------------------------
     HAARWERKEN
     Tekst verder naar links
     ----------------------------------------- */

  .home-page .haarwerken-tekst {
    transform: translateX(-70px);
  }

  /* Foto Haarwerken rechts houden */

  .home-page #haarwerken > .col-md-6:last-child {
    display: flex;
    justify-content: flex-end;
  }

  /* -----------------------------------------
     HOOFDHUIDANALYSE
     Foto en tekst verticaal uitlijnen
     ----------------------------------------- */

  .home-page #hoofdhuidanalyse .row {
    min-height: 430px;

    align-items: center !important;
  }

  /* Tekst Hoofdhuidanalyse naar links */

  .home-page #hoofdhuidanalyse .col-12.col-md-7 {
    transform: translateX(-190px);
  }
}

/* =========================================================
   FOTO HOOFDHUIDANALYSE
   ========================================================= */

.home-page #hoofdhuidanalyse .foto-overlap-links {
  position: relative !important;

  width: 420px !important;
  max-width: none !important;

  height: 470px !important;

  /*
    Foto terug naar links laten overlappen.
  */
  margin: -15px 0 -90px -315px !important;

  border: 5px solid var(--primary-orange) !important;

  overflow: hidden;

  z-index: 10;
}

.home-page #hoofdhuidanalyse .foto-overlap-links img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;
}

/* =========================================================
   TEKST HOOFDHUIDANALYSE
   ========================================================= */

.home-page #hoofdhuidanalyse .col-12.col-md-7 {
  margin-left: 0 !important;

  padding: 20px 40px 20px 55px !important;

  transform: translateX(-210px);
}

.home-page #hoofdhuidanalyse .script-title {
  margin-bottom: 20px !important;

  font-size: 2.7rem;
  line-height: 1.1;
}

.home-page #hoofdhuidanalyse .text-white-custom {
  width: 100%;
  max-width: 400px;

  margin-bottom: 20px !important;

  font-size: 1rem;
  line-height: 1.55;
}

/* =========================================================
   DESKTOP EXTRA CORRECTIE
   ========================================================= */

@media (min-width: 1025px) {
  .home-page #haarwerken > .col-md-6:last-child {
    display: flex;
    justify-content: flex-end;
  }

  .home-page #hoofdhuidanalyse .row {
    min-height: 430px;

    align-items: center !important;
  }
}

/* =========================================================
   14. PRAKTISCHE INFORMATIE
   ========================================================= */

.home-page .section-dark.pb-5 {
  padding-top: 80px;
  padding-bottom: 100px !important;
}

.home-page .section-dark.pb-5 .script-title {
  font-size: 3rem !important;
}

.home-page .praktisch-subtitle {
  margin: -10px 0 25px 420px !important;

  color: var(--primary-orange) !important;

  font-family: var(--font-script);
  font-size: 0.9rem !important;
}

.home-page .max-w-750 {
  max-width: 1000px;
}

.home-page .info-box {
  padding: 8px 25px !important;

  border: none !important;
  border-radius: 5px !important;

  background-color: var(--primary-orange) !important;
  color: var(--bg-light) !important;

  font-family: var(--font-body);
  font-size: 1rem !important;

  text-align: center;
}

/* =========================================================
   15. WAAROM FRAAJ
   ========================================================= */

.home-page .waarom-wrapper {
  position: relative;

  padding: 40px 0 130px !important;

  background-color: var(--bg-dark);

  overflow: hidden;
}

.home-page .waarom-wrapper::after {
  content: "";

  position: absolute;

  top: 270px;
  right: 0;

  width: 31%;
  height: 420px;

  background-color: var(--primary-orange);

  z-index: 1;
}

.home-page .waarom-card {
  position: relative;

  width: 77%;
  min-height: 500px;

  margin: 0;

  padding: 60px 60px 70px 90px;

  background-color: var(--bg-light);
  color: var(--text-dark);

  z-index: 2;
}

.home-page .waarom-inhoud-rechts {
  padding-left: 0;
}

.home-page .waarom-titel {
  margin-left: 0 !important;

  font-size: clamp(4rem, 6vw, 6rem);
}

.home-page .waarom-subtitle {
  margin: -5px 0 20px 300px !important;

  color: var(--primary-orange) !important;

  font-family: var(--font-script);
  font-size: 0.95rem;

  white-space: nowrap;
}

.home-page .list-custom {
  margin-top: -5px;

  padding-left: 0;

  list-style: none;
}

.home-page .list-custom li {
  position: relative;

  padding-left: 20px;

  color: var(--bg-dark);

  font-size: 1rem;
}

.home-page .list-custom li::before {
  content: "•";

  position: absolute;

  left: 0;
  top: 50%;

  color: var(--primary-orange);

  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;

  transform: translateY(-50%);
}

.home-page .waarom-card .foto-kader-oranje {
  position: relative;

  width: 380px !important;
  max-width: none !important;
  height: 400px !important;

  margin: 20px -280px -130px 0 !important;

  border: 5px solid var(--bg-light);

  overflow: hidden;

  transform: translate(100px, 50px);

  z-index: 5;
}

.home-page .waarom-card .sectie2-img {
  display: block;

  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: center !important;
}

/* =========================================================
   =========================================================
   HAARWERKEN PAGINA
   =========================================================
   ========================================================= */

/* =========================================================
   17. HAARWERKEN GRID
   ========================================================= */

.haarwerken-stappen {
  display: grid;

  grid-template-columns: 1fr 1fr;
  grid-template-rows:
    170px
    480px
    530px
    530px
    530px;

  column-gap: 28px;
  row-gap: 24px;

  width: 100%;

  margin: 0;

  padding: 190px 0 130px;

  background-color: var(--bg-dark);
}

/* =========================================================
   18. HAARWERKEN TITEL
   ========================================================= */

.haarwerken-titel-box {
  grid-column: 1;
  grid-row: 1;

  position: relative;

  display: flex;
  align-items: flex-start;

  width: fit-content;

  margin-left: 28%;
  padding-left: 0;
}

.haarwerken-titel-tekst {
  position: absolute;

  top: 76px;
  left: 195px;

  color: var(--bg-light);

  font-family: var(--font-script);
  font-size: 3rem;
  line-height: 1;

  white-space: nowrap;
}

.haarwerken-titel-logo {
  width: 250px !important;
  height: auto !important;

  object-fit: contain;
}

/* =========================================================
   19. HAARWERKEN FOTO'S
   ========================================================= */

.haarwerken-stappen .stappen-foto {
  width: 100%;
  height: 100%;

  overflow: hidden;
}

.haarwerken-stappen .stappen-foto img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.stappen-foto-stap1 {
  grid-column: 1;
  grid-row: 2;

  border-top: 4px solid var(--bg-light);
  border-right: 4px solid var(--bg-light);
  border-bottom: 4px solid var(--bg-light);
}

.stappen-foto-stap2 {
  grid-column: 2;
  grid-row: 3;

  border-top: 4px solid var(--primary-orange);
  border-bottom: 4px solid var(--primary-orange);
  border-left: 4px solid var(--primary-orange);

  transform: translateY(-140px);
}

.stappen-foto-stap3 {
  grid-column: 1;
  grid-row: 4;

  border-top: 4px solid var(--bg-light);
  border-right: 4px solid var(--bg-light);
  border-bottom: 4px solid var(--bg-light);
}

.stappen-foto-stap4 {
  grid-column: 2;
  grid-row: 5;

  border-top: 4px solid var(--primary-orange);
  border-bottom: 4px solid var(--primary-orange);
  border-left: 4px solid var(--primary-orange);

  transform: translateY(-140px);
}

/* =========================================================
   20. HAARWERKEN KAARTEN
   ========================================================= */

.haarwerken-stappen .stappen-card {
  padding: 50px 65px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: var(--primary-orange);
  color: var(--bg-light);

  text-align: center;
}

.stappen-card-stap1 {
  grid-column: 2;
  grid-row: 1 / 3;

  align-self: start;

  width: 73%;
  height: 530px;

  margin-top: 0;
}

.stappen-card-stap2 {
  grid-column: 1;
  grid-row: 3;

  justify-self: end;

  width: 73%;
  height: 530px;
}

.stappen-card-stap3 {
  grid-column: 2;
  grid-row: 4;

  align-self: start;

  width: 73%;
  height: 530px;

  transform: translateY(-140px);
}

.stappen-card-stap4 {
  grid-column: 1;
  grid-row: 5;

  justify-self: end;

  width: 73%;
  height: 530px;
}

/* =========================================================
   21. HAARWERKEN NUMMERS
   ========================================================= */

.stap-nummer-wrapper {
  position: relative;

  width: 72px;
  height: 72px;

  margin-bottom: 15px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.haarwerken-stappen .stap-cirkel {
  position: absolute;

  width: 100% !important;
  height: 100% !important;

  object-fit: contain !important;
}

.stap-cijfer {
  position: relative;

  color: var(--bg-light);

  font-family: var(--font-script);
  font-size: 2.5rem;
  line-height: 1;

  z-index: 2;
}

/* =========================================================
   22. HAARWERKEN TEKST
   ========================================================= */

.haarwerken-stappen .script-title {
  margin: 5px 0 22px !important;

  color: var(--bg-light);

  font-family: var(--font-script);
  font-size: 3rem !important;
  font-weight: normal;
  line-height: 1.1;
}

.haarwerken-stappen .stappen-card p {
  width: 100%;
  max-width: 390px;

  margin: 0;

  color: var(--bg-light);

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;

  text-align: center;
}

.hoofdhuidanalyse-titel {
  left: calc(12% + 150px);
}

/* =========================================================
   =========================================================
   OVER FRAAJ PAGINA
   =========================================================
   ========================================================= */

/* =========================================================
   OVER FRAAJ - WIE IS + LOGO
   ========================================================= */

.overfraaj-titel {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 25px;
}

.overfraaj-titel .overfraaj-hoofdtitel {
  margin: 0;

  white-space: nowrap;
}

.overfraaj-titel-logo {
  display: block;

  width: clamp(150px, 16vw, 230px);
  height: auto;

  flex-shrink: 0;

  transform: translateY(5px);
}

/* =========================================================
   23. OVER FRAAJ INTRO
   ========================================================= */

.overfraaj-intro {
  position: relative;

  min-height: 720px;

  /* Geen zwarte ruimte meer boven het lichte vlak */
  padding: 0 0 80px;

  background-color: var(--bg-dark);
}

/* =========================================================
   LICHTE TEKSTKAART
   ========================================================= */

.overfraaj-intro-card {
  position: relative;

  width: 75%;
  min-height: 710px;

  padding: 160px 28% 70px 12%;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  background-color: var(--bg-light);
  color: var(--bg-dark);
}

/* =========================================================
   HEY, IK BEN ANIQUE
   ========================================================= */

.overfraaj-kleine-titel {
  position: absolute;

  /* Iets omhoog en naar links */
  top: clamp(80px, 6vw, 100px);
  left: clamp(480px, 46vw, 660px);

  margin: 0;

  color: var(--primary-orange);
  font-family: var(--font-script);

  font-size: clamp(1.4rem, 2vw, 2rem);

  white-space: nowrap;

  transform: rotate(6deg);
  transform-origin: left center;

  z-index: 6;
}

/* =========================================================
   WIE IS FRAAJ TITEL
   ========================================================= */

.overfraaj-hoofdtitel {
  margin-bottom: 30px;

  color: var(--primary-orange);

  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-style: italic;
  font-weight: 800;

  line-height: 0.95;
}

/* =========================================================
   WIE IS + FRAAJ LOGO
   ========================================================= */

.overfraaj-titel {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 25px;
}

.overfraaj-titel .overfraaj-hoofdtitel {
  margin: 0;

  white-space: nowrap;
}

.overfraaj-titel-logo {
  display: block;

  width: clamp(150px, 16vw, 230px);
  height: auto;

  flex-shrink: 0;

  transform: translateY(5px);
}

/* =========================================================
   TEKST
   ========================================================= */

.overfraaj-tekst {
  max-width: 600px;

  color: var(--bg-dark);

  font-family: var(--font-body);
  font-size: 1rem;

  line-height: 1.55;
}

.overfraaj-tekst p {
  margin-bottom: 25px;
}

/* =========================================================
   FOTO
   ========================================================= */

.overfraaj-intro-foto {
  position: absolute;

  right: 8%;
  bottom: 30px;

  width: 29%;
  max-width: 420px;
  height: 470px;

  border: 5px solid var(--bg-light);

  overflow: hidden;

  z-index: 5;
}

.overfraaj-intro-foto img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* =========================================================
   24. OVER FRAAJ WAARDES
   ========================================================= */

.overfraaj-waardes {
  padding: 70px 8% 160px;

  background-color: var(--bg-dark);

  text-align: center;
}

.overfraaj-waardes-titel {
  margin-bottom: 50px;

  color: var(--primary-orange);

  font-family: var(--font-heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.overfraaj-waardes-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 28px;

  width: 100%;
  max-width: 1300px;

  margin: 0 auto;
}

.overfraaj-waarde-card {
  min-height: 370px;

  padding: 45px 55px;

  display: flex;
  flex-direction: column;

  /* Alles exact verticaal in het midden */
  justify-content: center;

  /* Alles horizontaal in het midden */
  align-items: center;

  background-color: var(--primary-orange);

  text-align: center;
}

.overfraaj-waarde-card h3 {
  margin-bottom: 30px;

  font-family: var(--font-script);
  font-size: 2rem;
  font-weight: normal;
}

.overfraaj-waarde-card p {
  max-width: 290px;

  margin: 0;

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
}

/* =========================================================
   CONTACT PAGINA
   ========================================================= */

.contact-pagina {
  position: relative;

  min-height: 700px;

  padding-top: 60px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.72)),
    url("afbeeldingen/fotos/bw/fraaj_BWsalon_01.webp")
      center / cover no-repeat;

  margin-bottom: 0;
}
/* Inhoud */

.contact-pagina-overlay {
  width: 100%;
  min-height: 700px;
}

.contact-pagina-titel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 100%;
  margin: 0 0 20px;
}

.contact-pagina-titel-logo {
  width: clamp(180px, 18vw, 280px);
  max-width: none;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.geen-afbreking {
  white-space: nowrap;
}

.footer-custom {
  margin-top: 0;
  border-top: none !important;
}

.contact-pagina-inner {
  width: min(100% - 60px, 1100px);

  margin: 0 auto;

  padding: 65px 0 80px;
}

/* Titel */

.contact-pagina-header {
  max-width: 850px;

  margin: 0 auto 70px;

  text-align: center;
}

.contact-pagina-header h1 {
  margin-bottom: 20px;

  color: var(--primary-orange);
  font-family: var(--font-heading);

  font-size: clamp(4rem, 7vw, 6.5rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.95;

  /* Houd "Neem contact op" op één regel */
  white-space: nowrap;
}

.contact-pagina-header p {
  max-width: 760px;

  margin: 0 auto;

  color: var(--bg-light);

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
}

/* Onderste gedeelte */

.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-page main {
  flex: 1;
  display: flex;
}

.contact-pagina {
  flex: 1;
  display: flex;
}

.contact-pagina-overlay {
  flex: 1;
  width: 100%;
}

.contact-pagina-content {
  display: grid;

  grid-template-columns:
    1fr
    1.5fr;

  gap: 70px;

  align-items: center;

  max-width: 800px;

  margin: 0 auto;
}

/* Gegevens */

.contact-pagina-gegevens {
  color: var(--bg-light);
}

.contact-item {
  margin-bottom: 45px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h2 {
  margin-bottom: 8px;

  color: var(--bg-light);

  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: normal;
}

.contact-item p,
.contact-item a {
  margin: 0;

  color: var(--bg-light);

  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;

  text-decoration: none;
}

.contact-item a:hover {
  color: var(--primary-orange);
}

/* Plattegrond */

.contact-pagina-kaart {
  width: 100%;

  background-color: var(--bg-light);

  overflow: hidden;
}

.contact-pagina-kaart img {
  display: block;

  width: 100%;
  height: auto;
}

/* =========================================================
   =========================================================
   TABLET
   =========================================================
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

  /* Aangesloten bij op één regel in elke footer */
.footer-anko h5 {
  white-space: nowrap !important;
}
  /* =======================================================
     HOMEPAGE TABLET
     ======================================================= */

  /* ==============================
     WIE IS FRAAJ
     ============================== */

  .home-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-page .wie-is-wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-page .wie-is-wrapper .container-fluid {
    overflow: hidden;
  }

  .home-page .wie-is-img-box {
    width: 300px;
    height: 360px;

    margin-right: -20px;
  }

  .home-page .wie-is-img-box {
    width: 300px;
    height: 360px;
    margin-right: -70px;
    transform: translateY(-45px);
  }

  .home-page .wie-is-card {
    padding: 70px 50px 70px 90px;
  }

  .home-page .wie-is-card .section-title {
    font-size: clamp(3.2rem, 6vw, 4rem);
  }

  /* ==============================
     WAT DOET FRAAJ
     ============================== */

.home-page .section-dark.py-5 {
  padding-top: 0px !important;
}

.home-page .wat-doet {
  padding-top: 0;
}

  .home-page .section-dark.py-5 > .container > .section-title {
    font-size: clamp(3.2rem, 6vw, 4rem) !important;
  }

  .home-page .wat-doet-title {
    margin-bottom: 70px;

    text-align: center;
  }

  /* ==============================
     HAARWERKEN HOMEPAGE
     ============================== */

  .home-page #haarwerken {
    min-height: auto;

    margin-bottom: 0 !important;

    align-items: center !important;
  }

  .home-page .haarwerken-tekst {
    top: 0;

    padding-left: 55px;
    padding-right: 35px;

    transform: none !important;
  }

  .home-page #haarwerken .foto-kader-oranje {
    width: 305px;
    max-width: 90%;
    height: 360px;
    margin: 0 auto -40px;
    z-index: 5;
    transform: none !important;
  }

  .home-page #haarwerken {
  padding-bottom: 35px !important;
}

  .home-page #haarwerken .script-title {
  font-size: 1.8rem !important;
}

.home-page #hoofdhuidanalyse .script-title {
  font-size: 1.8rem !important;
  white-space: nowrap;
}
  /* ==============================
     HOOFDHUIDANALYSE HOMEPAGE
     ============================== */

  .home-page .wat-doet-oranje-wrapper {
    position: relative !important;

    left: 0 !important;

    width: 85% !important;
    min-height: 440px;

    margin: 0 -42px 00px auto !important;

    padding: 60px 35px 60px 35px !important;

    overflow: visible !important;
  }

  .home-page #hoofdhuidanalyse .row {
    min-height: 330px;

    align-items: center !important;
  }

  /* Foto hoofdhuidanalyse */

  .home-page #hoofdhuidanalyse .foto-overlap-links {
    width: 305px !important;
    max-width: none !important;
    height: 360px !important;

    margin: 0 0 0 -125px !important;

    transform: none !important;
  }

  /* Tekst hoofdhuidanalyse */

  .home-page #hoofdhuidanalyse .col-12.col-md-7 {
    margin-left: 0 !important;

    padding: 20px 10px 20px 20px !important;

    transform: none !important;
  }

  .home-page #hoofdhuidanalyse h2 {
    font-size: 2.7rem;

    white-space: normal;
  }

  .home-page #hoofdhuidanalyse p {
    max-width: 390px;

    line-height: 1.55;
  }

  /* ==============================
     PRAKTISCHE INFORMATIE
     ============================== */

  .home-page .praktisch-subtitle {
    margin-left: 250px !important;
  }

.home-page .max-w-750 > .col-12 {
  width: 50% !important;
}

/* Laatste blok: Levertijd over volledige breedte */
.home-page .max-w-750 > .col-12:last-child {
  width: 100% !important;
}
  /* ==============================
     WAAROM FRAAJ
     ============================== */

  .home-page .waarom-card {
    width: 83%;

    padding: 50px 40px 60px;
  }

.home-page .waarom-card .foto-kader-oranje {
  width: 300px !important;
  height: 350px !important;
  margin-right: -190px !important;
  transform: translate(20px, 45px) !important;
}

  .home-page .waarom-titel {
  font-size: clamp(3.2rem, 6vw, 4rem) !important;
}

  .home-page .waarom-subtitle {
    margin-left: 160px !important;
  }

  /* ==============================
   CONTACT BANNER
   ============================== */

.home-page .contact-section {
  height: 30vh !important;
  min-height: 280px !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

  /* =======================================================
   HAARWERKEN PAGINA TABLET - ZIGZAG ZONDER OVERLAP
   ======================================================= */

  .haarwerken-stappen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      auto
      430px
      430px
      430px
      430px;

    column-gap: 32px;
    row-gap: 0;

    width: 100%;
    padding: 80px 0 25px;
    overflow: hidden;
  }

  /* TITEL */
  .haarwerken-titel-box {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    width: fit-content;
    min-height: 150px;
    margin-left: 5%;
    
    padding-left: 0;
  }

  .haarwerken-titel-logo {
    width: clamp(180px, 25vw, 260px) !important;
    height: auto;
  }

  .haarwerken-titel-tekst {
    position: absolute;
    top: 55%;
    left: 68%;
    font-size: clamp(2rem, 4vw, 3rem);
    white-space: nowrap;
    transform: translateY(-50%);
  }

  .hoofdhuidanalyse-titel {
    left: 120px;
  }

  /* ALGEMEEN FOTO'S */
  .haarwerken-stappen .stappen-foto {
    width: 100%;
    height: 400px;
    margin: 0;
    overflow: hidden;
    transform: none !important;
  }

  .haarwerken-stappen .stappen-foto img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ALGEMEEN KAARTEN */
  .haarwerken-stappen .stappen-card {
    width: 90%;
    height: 400px;
    margin: 0;
    padding: 30px 28px;
    transform: none !important;
    z-index: 2;
  }

  .haarwerken-stappen .script-title {
    margin-bottom: 15px !important;
    font-size: 2.4rem !important;
  }

  .haarwerken-stappen .stappen-card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .stap-nummer-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }

  .stap-cijfer {
    font-size: 2rem;
  }

  /* STAP 1 - FOTO LINKS / KAART RECHTS */
  .stappen-foto-stap1 {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: end;

    border-top: 4px solid var(--primary-orange);
    border-right: 4px solid var(--primary-orange);
    border-bottom: 4px solid var(--primary-orange);
    border-left: 0;
  }

  .stappen-card-stap1 {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: start;
  }

  /* STAP 2 - KAART LINKS / FOTO RECHTS */
  .stappen-card-stap2 {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    align-self: end;
  }

  .stappen-foto-stap2 {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: start;

    border-top: 4px solid var(--bg-light);
    border-right: 0;
    border-bottom: 4px solid var(--bg-light);
    border-left: 4px solid var(--bg-light);
  }

  /* STAP 3 - FOTO LINKS / KAART RECHTS */
  .stappen-foto-stap3 {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    align-self: end;

    border-top: 4px solid var(--primary-orange);
    border-right: 4px solid var(--primary-orange);
    border-bottom: 4px solid var(--primary-orange);
    border-left: 0;
  }

  .stappen-card-stap3 {
    grid-column: 2;
    grid-row: 4;
    justify-self: start;
    align-self: start;
  }

  /* STAP 4 - KAART LINKS / FOTO RECHTS */
  .stappen-card-stap4 {
    grid-column: 1;
    grid-row: 5;
    justify-self: end;
    align-self: end;
  }

  .stappen-foto-stap4 {
    grid-column: 2;
    grid-row: 5;
    justify-self: end;
    align-self: start;

    border-top: 4px solid var(--bg-light);
    border-right: 0;
    border-bottom: 4px solid var(--bg-light);
    border-left: 4px solid var(--bg-light);
  }

  /* =======================================================
     OVER FRAAJ TABLET
     ======================================================= */

  .overfraaj-intro {
    position: relative;

    min-height: 650px;

    padding: 0 0 70px;

    background-color: var(--bg-dark);
  }

  /* LICHTE KAART */

  .overfraaj-intro-card {
    position: relative;

    width: 82%;
    min-height: 620px;

    padding: 120px 30% 60px 8%;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background-color: var(--bg-light);
    color: var(--bg-dark);
  }

  /* WIE IS + FRAAJ LOGO */

  .overfraaj-titel {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
  }

  .overfraaj-titel .overfraaj-hoofdtitel {
    margin: 0;

    font-size: clamp(3.8rem, 7vw, 5rem);
    line-height: 0.95;

    white-space: nowrap;
  }

  .overfraaj-titel-logo {
    width: clamp(135px, 19vw, 190px);

    height: auto;

    flex-shrink: 0;

    transform: translateY(4px);
  }

  /* HEY IK BEN ANIQUE */

  .overfraaj-kleine-titel {
    position: absolute;

    top: 72px;
    left: 48%;

    margin: 0;

    color: var(--primary-orange);

    font-family: var(--font-script);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);

    white-space: nowrap;

    transform: rotate(6deg);
    transform-origin: left center;

    z-index: 6;
  }

  /* TEKST */

  .overfraaj-tekst {
    max-width: 480px;

    font-size: 0.95rem;
    line-height: 1.55;
  }

  .overfraaj-tekst p {
    margin-bottom: 22px;
  }

  /* FOTO */

  .overfraaj-intro-foto {
  position: absolute;

  right: 3%;
  bottom: 30px;
    
  width: 330px;
  height: auto;
  aspect-ratio: 420 / 470;

  border: 4px solid var(--bg-light);

  overflow: hidden;
  z-index: 5;
}

.overfraaj-intro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-30px);
}



  /* =========================================================
   MIJN WAARDES - TABLET
   ========================================================= */

  .overfraaj-waardes {
    padding: 45px 35px 45px;
  }

  .overfraaj-waardes-titel {
    margin-bottom: 30px;

    font-size: clamp(3.5rem, 7vw, 5rem);

    text-align: center;
  }

  .overfraaj-waardes-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
  }

  .overfraaj-waarde-card {
    min-height: 330px;

    padding: 20px 24px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;
  }

  .overfraaj-waarde-card h3 {
    margin: 0 0 22px;

    font-size: 1.7rem;

    text-align: center;
  }

  .overfraaj-waarde-card p {
    width: 100%;

    margin: 0;

    font-size: 0.86rem;
    line-height: 1.5;

    text-align: center;
  }

  /* =========================================================
   CONTACT PAGINA - TABLET
   ========================================================= */

  .contact-pagina-inner {
    width: calc(100% - 50px);

    padding: 55px 0 65px;
  }

  .contact-pagina-header {
    margin-bottom: 55px;
  }

  .contact-pagina-content {
    grid-template-columns:
      0.8fr
      1.2fr;

    gap: 45px;

    max-width: 700px;
  }

  .contact-pagina-kaart {
    max-width: 390px;
  }
}

/* =========================================================
   =========================================================
   MOBIEL
   =========================================================
   ========================================================= */

@media (max-width: 767.98px) {
  /* =======================================================
     ALGEMEEN MOBIEL
     ======================================================= */

  header {
    height: 60px;
  }

  .logo-header {
    margin-left: -10px !important;
  }

  .section-title {
    white-space: normal;
  }

  /* =======================================================
   MOBILE NAV
   ======================================================= */

  @media (max-width: 767.98px) {
    header {
      background-color: var(--bg-dark);
      padding-top: 8px !important;
      padding-bottom: 8px !important;
    }

    header .container-fluid {
      padding: 0 !important;
    }

    .navbar {
      position: relative;
      width: 100%;
      padding: 0 !important;
    }
.contact-section h2 {
  white-space: normal !important;
  text-align: center !important;
  line-height: 1 !important;
  max-width: 300px;
  margin-left: auto !important;
  margin-right: auto !important;
}
    /* ==============================
     LOGO
     ============================== */

    .navbar-brand {
      margin: 0;
      padding: 0;
    }

    .logo-header {
      position: relative;
      z-index: 10;
    }

    /* ==============================
     HAMBURGER
     ============================== */

    .navbar-toggler {
      position: relative;
      z-index: 10;

      margin-left: auto;
      padding: 6px !important;

      border: 0 !important;
      box-shadow: none !important;
    }

    .navbar-toggler-icon {
      width: 28px;
      height: 28px;

      filter: invert(1);
    }

    /* ==============================
     UITGEKLAPT MENU
     ============================== */

    .navbar-collapse {
      position: absolute;

      top: calc(100% + 8px);
      right: -8px;

      width: 230px;

      margin: 0 !important;
      padding: 18px 22px !important;

      background-color: var(--bg-dark);

      z-index: 9999;
    }

    /* ==============================
     MENU LINKS
     ============================== */

    .navbar-nav {
      width: 100%;

      margin: 0 !important;
      padding: 0 !important;

      gap: 0 !important;

      align-items: stretch !important;
    }

    .navbar-nav .nav-item {
      width: 100%;
    }

    .navbar-nav .nav-link {
      display: block;

      width: 100%;

      padding: 9px 0 !important;

      color: var(--bg-light) !important;

      font-size: 1rem !important;

      text-align: right;
    }

    .navbar-nav .nav-link:hover {
      color: var(--primary-orange) !important;
    }
  }

  /* =======================================================
     HOMEPAGE MOBIEL
     ======================================================= */
@media (max-width: 767.98px) {

  html,
  body,
  .home-page,
  .home-page main {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .home-page .hero-section,
  .home-page .wie-is-wrapper,
  .home-page .section-dark,
  .home-page .waarom-wrapper,
  .home-page .contact-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}


  /* ==============================
     HERO
     ============================== */

  .home-page .hero-section {
    min-height: 75vh;
  }

  .home-page .logo-hero {
    width: 90%;
  }

  /* ==============================
     WIE IS FRAAJ
     ============================== */

  .home-page .wie-is-wrapper {
    padding-bottom: 50px;
  }

  .home-page .wie-is-wrapper .row {
    min-height: auto;

    display: flex;
    flex-direction: column-reverse;
  }

  .home-page .wie-is-card {
    width: 100%;
    min-height: auto;

    padding: 50px 25px;

    transform: none;
  }

  /* Alle 3 de hoofdtitels even groot */
  .home-page .wie-is-card .section-title,
  .home-page .section-dark.py-5 > .container > .section-title,
  .home-page .waarom-titel {
    font-size: clamp(2.7rem, 12vw, 4rem) !important;
  }

  
  .home-page .wie-is-card .section-title span {
    white-space: nowrap !important;
  }

  .home-page .wie-is-card .title-logo {
    width: clamp(110px, 31vw, 165px) !important;
    height: auto !important;
    flex-shrink: 0;
  }


  .home-page .wie-is-img-box {
    width: calc(100% - 36px);
    max-width: none;

    /* Staande rechthoek */
    height: 430px;

    margin: -20px 18px 0;
  }

  .home-page .wie-is-img-box img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  /* ==============================
     WAT DOET FRAAJ
     ============================== */

  .home-page .section-dark > .container > .section-title {
    margin-bottom: 50px !important;

    font-size: 3.4rem;

    flex-wrap: wrap !important;
  }

  /* ==============================
     HAARWERKEN HOMEPAGE
     ============================== */

  .home-page #haarwerken {
    min-height: auto;

    margin-bottom: 70px !important;
  }

  .home-page .haarwerken-tekst {
    position: static;

    padding: 0 18px;

    text-align: center !important;

    transform: none !important;
  }

  .home-page #haarwerken .script-title {
    font-size: 1.5rem !important;
    line-height: 1.1;
  }

  .home-page #haarwerken .foto-kader-oranje {
    width: 100%;
    max-width: none;
    height: 430px;
    margin-top: 30px;
    overflow:hidden;
    transform: none !important;
  }

  .home-page #haarwerken .foto-kader-oranje img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

  /* ==============================
     HOOFDHUIDANALYSE HOMEPAGE
     ============================== */

  .home-page .wat-doet-oranje-wrapper {
    left: 0 !important;

    width: 100% !important;
    min-height: auto;

    margin: 0 !important;

    padding: 30px 22px 50px !important;

    overflow: hidden !important;
  }

  .home-page #hoofdhuidanalyse .row {
    display: flex;
    flex-direction: column;
  }

  .home-page #hoofdhuidanalyse .foto-overlap-links {
    width: 100% !important;
    max-width: none !important;

    /* Staande rechthoek */
    height: 430px !important;

    margin: 0 0 35px !important;

    transform: none !important;
  }

  .home-page #hoofdhuidanalyse .foto-overlap-links img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }

  .home-page #hoofdhuidanalyse .col-12.col-md-7 {
    margin: 0 !important;

    padding: 0 10px !important;

    text-align: center;

    transform: none !important;
  }

  .home-page #hoofdhuidanalyse .script-title {
    font-size: 1.5rem !important;
    line-height: 1.1;

    white-space: normal;
    overflow-wrap: anywhere;

    text-align: center;
  }

  .home-page #hoofdhuidanalyse .text-white-custom {
    max-width: 100%;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
  }

  /* ==============================
     PRAKTISCHE INFORMATIE
     ============================== */

  .home-page .praktisch-subtitle {
    margin: 5px 0 25px !important;

    text-align: center;
  }

  .home-page .info-box {
    font-size: 1rem !important;
  }

    body.home-page .section-dark .script-title.fs-1 {
    font-size: 1.5rem !important;
  }

  /* ==============================
     WAAROM FRAAJ
     ============================== */

  .home-page .waarom-wrapper {
    padding: 30px 18px 70px !important;
  }

  /* Oranje vlak rechts uitschakelen */
  .home-page .waarom-wrapper::after {
    display: none;
  }

  /* Witte kaart */
  .home-page .waarom-card {
    width: 100%;
    min-height: auto;

    padding: 35px 25px 45px;

    background-color: var(--bg-light);
  }

  /* Titel Waarom */
  .home-page .waarom-titel {
    margin: 0 0 20px 0 !important;

    display: block !important;

    font-size: 3.4rem;
    line-height: 0.9;

    text-align: left;
    white-space: normal;
  }

  /* Fraaj-logo onder Waarom */
  .home-page .waarom-titel .title-logo {
    display: block !important;

    width: auto;
    height: 1.15em;

    margin: 8px 0 0 -5px !important;

    transform: none !important;
  }

  /* Rode subtitel */
  .home-page .waarom-subtitle {
    margin: 0 0 28px 0 !important;

    font-size: 0.95rem;

    white-space: normal;

    text-align: left;
  }

  /* Normale tekst */
  .home-page .waarom-card .text-dark-custom {
    font-size: 1rem;
    line-height: 1.6;

    text-align: left;
  }

  /* Lijst */
  .home-page .list-custom {
    margin-top: 20px;

    padding-left: 0;
  }

  .home-page .list-custom li {
    font-size: 1rem;
    line-height: 1.5;

    text-align: left;
  }

  /* Foto Waarom Fraaj */
  .home-page .waarom-card .foto-kader-oranje {
    width: 100% !important;
    max-width: none !important;

    /* Staande rechthoek */
    height: 430px !important;

    margin: 30px 0 0 0 !important;

    border-color: var(--primary-orange);

    transform: none !important;
  }

  .home-page .waarom-card .foto-kader-oranje img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
  }

  /* =======================================================
     HAARWERKEN PAGINA MOBIEL
     ======================================================= */

  .haarwerken-stappen {
    display: flex;
    flex-direction: column;

    gap: 20px;

    width: 100%;

    padding: 100px 18px 60px;
  }

  /* ==============================
     TITEL HAARWERKEN PAGINA
     ============================== */

  .haarwerken-titel-box {
    min-height: 130px;

    padding-left: 0;

    order: 0;
  }

  .haarwerken-titel-logo {
    width: 190px !important;
  }

  .haarwerken-titel-tekst {
    top: 58px;
    left: 145px;
    transform: translateX(-20px) !important;
    font-size: 2rem;
  }

  .hoofdhuidanalyse-titel {
    left: 80px;
    transform: translateX(-50px) !important;
  }

  /* ==============================
     VOLGORDE HAARWERKEN
     ============================== */

  .stappen-card-stap1 {
    order: 1;
  }

  .stappen-foto-stap1 {
    order: 2;
  }

  .stappen-card-stap2 {
    order: 3;
  }

  .stappen-foto-stap2 {
    order: 4;
  }

  .stappen-card-stap3 {
    order: 5;
  }

  .stappen-foto-stap3 {
    order: 6;
  }

  .stappen-card-stap4 {
    order: 7;
  }

  .stappen-foto-stap4 {
    order: 8;
  }

  /* ==============================
     KAARTEN HAARWERKEN
     ============================== */

  .haarwerken-stappen .stappen-card {
    width: 100%;
    height: auto;
    min-height: 400px;

    margin: 0;

    padding: 40px 30px;

    transform: none;
  }

  /* ==============================
     FOTO'S HAARWERKEN PAGINA
     ============================== */

  /* Foto's Haarwerken - mobiel */
  .haarwerken-stappen .stappen-foto {
    width: 100%;
    height: 500px;
    margin: 0;

    border: 3px solid var(--bg-light);

    overflow: hidden;
    transform: none;
  }

  .haarwerken-stappen .stappen-foto img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
  }

  /* Tweede foto heeft oranje rand */
  .haarwerken-stappen .stappen-foto-stap2 {
    border: 3px solid var(--primary-orange) !important;
  }

  .haarwerken-stappen .script-title {
    font-size: 2rem !important;
  }

  /* =========================================================
   OVER FRAAJ - MOBIEL
   ========================================================= */

  .overfraaj-intro {
    position: relative;

    min-height: auto;

    padding: 0 0 35px;

    background-color: var(--bg-dark);
  }

  /* LICHTE KAART */

  .overfraaj-intro-card {
    position: relative;

    width: 100%;
    min-height: auto;

    padding: 150px 22px 60px;

    background-color: var(--bg-light);
  }

  /* HEY IK BEN ANIQUE */

  .overfraaj-kleine-titel {
    position: absolute;

    top: 100px;
    right: 24px;
    left: auto;

    margin: 0;

    color: var(--primary-orange);
    font-family: var(--font-script);
    font-size: clamp(1.15rem, 5vw, 1.5rem);

    white-space: nowrap;

    transform: rotate(6deg);
    transform-origin: center;

    z-index: 6;
  }

  /* WIE IS + FRAAJ LOGO */

  .overfraaj-titel {
    display: flex;
    align-items: center;

    gap: 12px;

    width: 100%;

    margin-bottom: 25px;
  }

  .overfraaj-titel .overfraaj-hoofdtitel {
    margin: 0;

    font-size: clamp(3.2rem, 13vw, 4.4rem);
    line-height: 0.9;

    white-space: nowrap;
  }

  .overfraaj-titel-logo {
    display: block;

    width: clamp(135px, 36vw, 175px);
    height: auto;

    flex-shrink: 0;

    transform: translateY(3px);
  }

  /* TEKST */

  .overfraaj-tekst {
    width: 100%;
    max-width: none;

    font-size: 0.95rem;
    line-height: 1.55;
  }

  .overfraaj-tekst p {
    margin-bottom: 28px;
  }

  /* FOTO */

  .overfraaj-intro-foto {
    position: relative;
    right: auto;
    bottom: auto;

    width: calc(100% - 44px);
    max-width: 420px;
    height: 470px;

    margin: 0 auto;
    border: 4px solid var(--bg-light);
    overflow: hidden;
    z-index: 5;
  }

.overfraaj-intro-foto img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

  /* ==============================
     WAARDES OVER FRAAJ
     ============================== */

  .overfraaj-waardes {
    padding: 55px 18px 70px;
  }

  .overfraaj-waardes-titel {
    margin-bottom: 35px;

    font-size: 3.8rem;
  }

  .overfraaj-waardes-grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .overfraaj-waarde-card {
    min-height: auto;

    padding: 45px 30px;
  }

  .overfraaj-waarde-card h3 {
    margin-bottom: 20px;

    font-size: 1.8rem;
  }

  .overfraaj-waarde-card p {
    max-width: 320px;
  }

  /* =======================================================
     CONTACT MOBIEL - ALLE PAGINA'S
     ======================================================= */

  .contact-section {
    min-height: 330px;
    height: auto;

    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .contact-section .section-title {
    font-size: 2.7rem;

    white-space: nowrap;

    text-align: center;
  }

  /* =======================================================
   FOOTER MOBIEL - 2 x 2
   ======================================================= */

  .footer-custom {
    padding: 45px 28px 50px !important;
  }

  .footer-custom .footer-grid {
    display: grid;

    grid-template-columns:
      1fr
      1fr;

    column-gap: 35px;
    row-gap: 40px;

    align-items: start;
  }

  /* Blokken */
  .footer-custom .footer-blok {
    min-width: 0;
  }

  /* ==============================
   LINKSBOVEN
   ============================== */

  .footer-custom .footer-contact {
    grid-column: 1;
    grid-row: 1;
  }

  /* ==============================
   RECHTSBOVEN
   ============================== */

  .footer-custom .footer-over {
    grid-column: 2;
    grid-row: 1;

    padding-top: 5px;
  }

  /* ==============================
   LINKSONDER
   ============================== */

  .footer-custom .footer-info {
    grid-column: 1;
    grid-row: 2;
  }

  /* ==============================
   RECHTSONDER
   ============================== */

  .footer-custom .footer-anko {
    grid-column: 2;
    grid-row: 2;
  }

  /* Logo */
  .footer-custom .footer-logo {
    display: block !important;

    width: 120px !important;
    height: auto !important;

    margin: 0 0 15px -5px !important;
  }

  /* Titels */
  .footer-custom h5 {
    margin-bottom: 10px !important;

    font-size: 1rem !important;

    white-space: nowrap;
  }

  /* Tekst */
  .footer-custom p,
  .footer-custom a,
  .footer-custom li {
    font-size: 0.9rem !important;
    line-height: 1.6;
  }

  /* Lijsten */
  .footer-custom ul {
    margin: 0 !important;
    padding: 0 !important;
  }

  /* ANKO */
  .footer-custom .anko-image {
    display: block !important;

    width: 95px !important;
    max-width: 95px !important;
    height: auto !important;

    margin-top: 8px;
  }

  /* =========================================================
   CONTACT PAGINA - MOBIEL
   ========================================================= */

  .contact-page {
    overflow-x: hidden;
  }

  .contact-pagina {
    width: 100%;
    min-height: auto;
    padding-top: 60px;
  }

  .contact-pagina-inner {
    width: 100%;
    padding: 55px 24px 60px;
  }

  /* =========================
     TITEL
     ========================= */

  .contact-pagina-header {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 45px;
    text-align: center;
  }

  .contact-pagina-titel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0 0 25px;
  }

.contact-pagina-header h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1;
  white-space: nowrap;
}

.contact-pagina-titel-logo {
  width: clamp(90px, 26vw, 130px);
  height: auto;
}

  /* =========================
     INTRO TEKST
     ========================= */

  .contact-pagina-intro {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .contact-pagina-intro p,
  .contact-pagina-header p {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    overflow-wrap: break-word;
  }

  .contact-route-tekst {
    margin-top: 35px !important;
  }

  .geen-afbreking {
    white-space: nowrap;
  }

  /* =========================
     CONTACTGEGEVENS
     ========================= */

  .contact-pagina-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: none;
    gap: 40px;
  }

  .contact-pagina-gegevens {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 30px;
    text-align: center;
  }

  .contact-item {
    width: 100%;
    margin-bottom: 0;
    text-align: center;
  }

  .contact-item h2 {
    margin-bottom: 8px;
      font-size: 1.25rem;
    text-align: center;
  }

  .contact-item p,
  .contact-item a {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: anywhere;
  }

  /* =========================
     PLATTEGROND
     ========================= */

  .contact-pagina-kaart {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-pagina-kaart img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

}

@media (min-width: 2000px) {
  .home-page #hoofdhuidanalyse .col-12.col-md-7 {
    transform: translateX(-550px) !important;
  }

    .home-page .waarom-inhoud-rechts {
    transform: translateX(500px) !important;
    
  }

  /* Titel groter */
  .haarwerken-titel-tekst {
    font-size: 4rem !important;
  }

  /* Fraaj-logo bij de titel groter */
  .haarwerken-titel-logo {
    width: 320px !important;
    height: auto !important;
  }

    /* Alleen scripttekst Haarwerken naar rechts */
  .haarwerken-titel-tekst {
    transform: translateX(55px);
  }

  /* Scripttekst Hoofdhuidanalyse verder naar rechts */
  .haarwerken-titel-tekst.hoofdhuidanalyse-titel {
    transform: translateX(180px);
  }
}

/* HAARWERKEN PAGINA - FOTORANDEN OMGEWISSELD */
.haarwerken-page .stappen-foto-stap1,
.haarwerken-page .stappen-foto-stap3 {
  border-color: var(--primary-orange) !important;
}

.haarwerken-page .stappen-foto-stap2,
.haarwerken-page .stappen-foto-stap4 {
  border-color: var(--bg-light) !important;
}

@media (min-width: 1025px) and (max-width: 1500px) {

  .haarwerken-titel-logo {
    width: clamp(190px, 16.7vw, 250px) !important;
  }

  .haarwerken-titel-tekst {
    left: 78%;
    top: 38%;

    font-size: clamp(2.4rem, 3.2vw, 3rem);
  }

    /* HOOFDHUIDANALYSE */
  .haarwerken-titel-tekst.hoofdhuidanalyse-titel {
    left: 25%;
    top: 38%;
  }
}

/* =========================================================
   DEFINITIEVE FIX HAARWERKEN FOTO HOMEPAGE
   Tablet + mobiel
   ========================================================= */
@media (max-width: 1024px) {
  #haarwerken .foto-kader-oranje {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  #haarwerken .foto-kader-oranje > img,
  #haarwerken .foto-kader-oranje img.sectie2-img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* =========================================
   MOBIEL - TITELS HAARWERKEN + HOOFDHUID
   ========================================= */

@media (max-width: 767.98px) {

  .haarwerken-titel-box {
    position: relative !important;
    width: fit-content !important;
    min-height: 130px !important;

    /* hele combinatie naar links */
    margin-left: 0px !important;

    padding-left: 0 !important;
  }

  .haarwerken-titel-logo {
    width: 190px !important;
    height: auto !important;
  }

  /* Haarwerken */
  .haarwerken-titel-tekst {
    position: absolute !important;

    top: 58px !important;
    left: 145px !important;

    transform: translateX(-20px) !important;

    font-size: 2rem !important;
    white-space: nowrap !important;
  }

  /* Hoofdhuidanalyse */
  .haarwerken-titel-tekst.hoofdhuidanalyse-titel {
    left: 80px !important;
    transform: translateX(-50px) !important;
  }
}

/* =========================================================
   HOOFDHUIDANALYSE - FIX GROTE RUIMTE NA STAP 3
   De pagina heeft 3 stappen; Haarwerken heeft 4.
   :has() herkent de unieke hoofdhuidanalyse-titel.
   ========================================================= */

/* DESKTOP */
@media (min-width: 1025px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    grid-template-rows:
      170px
      480px
      530px
      530px;

    /* voorkom gereserveerde ruimte voor een vierde stap */
    padding-bottom: 0;
    min-height: 0;
  }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    grid-template-rows:
      auto
      430px
      430px
      430px;

    row-gap: 0;
    padding-bottom: 25px;
    min-height: 0;
  }
}

/* MOBIEL: flex-layout, dus geen vaste gridhoogte nodig */
@media (max-width: 767.98px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    min-height: 0;
  }
}


/* =========================================================
   HOOFDHUIDANALYSE - ONDERRUIMTE GELIJK AAN HAARWERKEN
   ========================================================= */

@media (min-width: 1025px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    padding-bottom: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    padding-bottom: 80px;
  }
}

@media (max-width: 767.98px) {
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) {
    padding-bottom: 60px;
  }
}


/* =========================================================
   HOOFDHUIDANALYSE - TABLET FOTORANDEN
   Alleen deze pagina; Haarwerken blijft ongewijzigd.
   ========================================================= */
@media (min-width: 768px) and (max-width: 1024px) {

  /* Stap 1 en 3: lichte rand, buitenste linkerzijde open */
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) .stappen-foto-stap1,
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) .stappen-foto-stap3 {
    border-top: 4px solid var(--bg-light) !important;
    border-right: 4px solid var(--bg-light) !important;
    border-bottom: 4px solid var(--bg-light) !important;
    border-left: 0 !important;
  }

  /* Stap 2: oranje rand, buitenste rechterzijde open */
  .haarwerken-stappen:has(.hoofdhuidanalyse-titel) .stappen-foto-stap2 {
    border-top: 4px solid var(--primary-orange) !important;
    border-right: 0 !important;
    border-bottom: 4px solid var(--primary-orange) !important;
    border-left: 4px solid var(--primary-orange) !important;
  }
}
