/* ========================================================================== */
/* 1) FONTS & ROOT VARIABLES                                                  */
/* ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  /* Base font sizes (desktop) */
  --font-xxs: 0.75rem;   /* 12px */
  --font-xs: 0.875rem;   /* 14px */
  --font-sm: 1rem;       /* 16px */
  --font-md: 1.125rem;   /* 18px */
  --font-lg: 2rem;       /* 24px */
  --font-xl: 2.5rem;     /* 32px */
  --font-xxl: 3.5rem;    /* 48px */
  --black: #000000;
  --gray: #8E8E8E;
  --white: #ffffff;
  --beige: #BDB3A8;
}

/* ========================================================================== */
/* 2) RESET & BASELINE                                                        */
/* ========================================================================== */
/* === BASISINSTELLINGEN === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: "Inter", sans-serif;
  vertical-align: baseline;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent font resizing on iOS */
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-sm);
  color: var(--black);
  line-height: 1.2;
  background-color: var(--white);
}

*, *::before, *::after { box-sizing: border-box; }

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* p { opacity:.70 !important; } */

ol, ul { list-style: none; }

a { text-decoration: none; }

code, kbd, samp {
  font-size: var(--font-xs);
  font-family: monospace;
}

figcaption {
  font-size: var(--font-xs);
  color: #555;
  text-align: center;
  margin-top: 0.5em;
}

blockquote {
  font-size: var(--font-md);
  font-style: italic;
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
}

.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ========================================================================== */
/* 3) TYPOGRAPHY                                                              */
/* ========================================================================== */
/* === KOPPEN === */
h1 {
  font-size: var(--font-xxl);
  line-height: var(--font-heading-line-height);
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

h2 {
  font-size: var(--font-xl);
  line-height: var(--font-heading-line-height);
  font-weight: 600;
  font-family: "Abhaya Libre", serif;
}

h3 { font-size: var(--font-lg); font-weight: 600; }
h4 { font-size: var(--font-md); font-weight: 600; }
h5 { font-size: var(--font-sm); font-weight: 600; }

h6 {
  font-size: var(--font-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* === INLINE EN PARAGRAFEN === */
p { font-size: var(--font-sm); margin-bottom: 1em; }

span,
label,
li,
td,
th,
dd,
dt { font-size: var(--font-sm); }

small { font-size: var(--font-xs); }

/* ========================================================================== */
/* 4) FORMS & BUTTONS                                                         */
/* ========================================================================== */
button,
input,
select,
textarea {
  font-size: var(--font-sm);
  font-family: inherit;
}

button {
  cursor: pointer;
  transition: all 1s ease;
  padding: 10px 15px;
  border: none;
  font-weight: bold;
  color: var(--white);
  background-color: transparent;
}

.primary-button {
  background-color: var(--beige);
  border: 1px solid var(--beige);
}
.primary-button:hover { }

.secondary-button { }
.secondary-button:hover { }

/* ========================================================================== */
/* 5) LAYOUT UTILITIES                                                        */
/* ========================================================================== */
.content {
  max-width: 85vw;
  margin: 0 auto;
}

section { padding: 75px 0px; }

.grid {
  display: grid;
  grid-template-columns: 1fr;
}

/* a11y helper */

/* ========================================================================== */
/* 6) HERO                                                                    */
/* ========================================================================== */
.hero {
  position: relative;
  min-height: 50vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #C5DEE0;
}
.hero__inner{
  width:min(1100px, 90vw);
  margin:auto;
  color:var(--white);
  text-align:left;
  padding:4rem 0;
}
.hero__title {
  color: #7FA9AB;
}
.hero__subtitle{
  max-width:65ch;
  margin-top:1rem;
  font-weight: 600;
}


/* ========================================================================== */
/* 7) ABOUT                                                                   */
/* ========================================================================== */
.about_grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about_media,
.about_inline {
  position: relative;
  overflow: visible;
  margin: 0;
}

.about_media img,
.about_inline img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  outline: 1px solid rgba(0,0,0,0.06);
  object-fit: cover;
}

.about_media img { max-height: 620px; }

.about_content {
  display: grid;
  align-content: start;
  gap: 18px;
}
.about_title { color: var(--black); }
.about_text  { max-width: 64ch; }
.about_cta   { width: fit-content; }

.circle-text { position: absolute; z-index: 0; pointer-events: none; }
.circle-left  { top: -26px; left: -26px; }
.circle-right { top: -22px; right: -22px; }

.backgroundABoutMe {
  background: linear-gradient(0deg, transparent 0 50%, #BDB3A8 50%);
}

/* About Person Card */
.about_person_section{
  padding:72px 0 36px;
  background:var(--ap-white);
}
.about_person_inner{
  width:min(820px, 92vw);
  margin:0 auto;
  text-align:center;
}
.about_person_heading{
  color: var(--beige);
  margin-bottom:28px;
}
.about_person_card{
  margin:0 auto;
  display:grid;
  justify-items:center;
  gap:12px;
}
.about_person_portrait{
  width:min(480px, 86vw);
  aspect-ratio: 1 / 1.05;
  background: url('/img/lilian.png') center/cover no-repeat;
  box-shadow:0 1px 0 rgba(0,0,0,.04) inset;
}
.about_person_caption{ display:grid; gap:4px; }
.about_person_role{ color: var(--gray); }

/* ========================================================================== */
/* 8) CONTACT                                                                 */
/* ========================================================================== */
.contact_title {
  text-align: center;
  color: var(--beige);
  margin-bottom: 22px;
}

.contact_grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.contact_map {
  width: 100%;
  min-height: 420px;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  outline: 1px solid var(--white);
}

.contact_form { display: grid; gap: 18px; }

.field input,
.field textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px 18px;
  border-radius: 4px;
  background: #f7f6f5;
}
.field textarea { resize: vertical; }

.contact_btn { padding: 16px 18px; }

.contact_info {
  display: grid;
  max-width: 60vw;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto;
  margin-top: 40px;
}
.contact_info li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
}
.contact_info i {
  font-size: 26px;
  color: var(--beige);
}
.contact_info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact_info a { color: inherit; }
.contact_info address { font-style: normal; }

.contact-map-section { padding: 0; }

.contact_map--full {
  width: 100%;
  height: clamp(360px, 0vh, 820px);
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  outline: none;
}

.contact-info-sub { margin: 30px auto; }

/* ========================================================================== */
/* 9) SERVICES / PRIJZEN / TREATMENTS                                         */
/* ========================================================================== */
.prijzenlijstWrapper { margin: 100px 0px 0px 0px; }

#servicesSection .services_title { color: var(--beige); }
#servicesSection .services-subtext { color: var(--black); }
#servicesSection.on-dark .services_title,
#servicesSection.on-dark .services-subtext { color: var(--white); }

/* "sevicespage" as provided */
.sevicespage_section{ padding:48px 0 72px; }
.sevicespage_intro{
  max-width:78ch;
  margin:0 auto 28px;
  text-align:center;
}
.sevicespage_grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:40px;
  align-items:start;
}
.sevicespage_media img{
  width:100%;
  height:auto;
  display:block;
  border-radius:2px;
  outline:1px solid rgba(0,0,0,.06);
}
.sevicespage_content{ display:grid; gap:18px; }
.sevicespage_btn{ justify-self:start; }

.treatment_classname_section{
  background-color: var(--beige);
  padding:72px 0;
  color: var(--white);
  text-align:center;
}
.treatment_classname_heading{ margin-bottom:14px; }
.treatment_classname_intro{
  max-width:75ch;
  margin:0 auto 24px;
}
.treatment_classname_subheading{ margin:24px 0; }
.treatment_classname_grid{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:36px 48px;
  list-style:none;
  padding:0;
}
.treatment_classname_item{
  display:grid;
  gap:10px;
  justify-items:center;
}
.treatment_classname_item i{ font-size:52px; }
.treatment_classname_item span{ text-align:center; }

/* ========================================================================== */
/* 10) FIXED ACTIONS (WhatsApp / Language Switcher)                           */
/* ========================================================================== */
/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 999; /* keep it above everything */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0,0,0,0.3);
}

/* === MOBILE LANGUAGE SWITCHER (phones only) === */
.mobile-lang-switcher{
  position: fixed;
  right: 20px;
  bottom: 92px; /* 60px (WA btn) + 12px gap + 20px page padding */
  z-index: 1000; /* above WhatsApp (which is 999) */
  display: none; /* hidden by default; shown on small screens */
}
.mobile-lang-switcher select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  font-size: var(--font-sm);
  line-height: 1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  cursor: pointer;
}
/* subtle caret */
.mobile-lang-switcher select{
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px; /* space for caret */
}

/* ========================================================================== */
/* 11) SUB-HERO INTRO                                                         */
/* ========================================================================== */
.herointrosub {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--beige);
  background-color: rgb(248, 246, 246);
  justify-content: center;
  text-align: center;
}
.herointrosub span {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 0.5rem; 
}

/* ========================================================================== */
/* 12) RESPONSIVE                                                             */
/* ========================================================================== */
/* === RESPONSIVE SCHAAL (Tablet en Mobiel) === */


@media (max-width: 640px) {
  .hero { min-height:78vh; }
}

/* About responsive tweaks */
@media (max-width: 640px){
  .about_person_portrait{ aspect-ratio: 1 / 1.1; }
}

/* About section responsive */
@media (max-width: 980px) {
  .about_grid { grid-template-columns: 1fr; gap: 24px; }
  .about_media img { max-height: 460px; }

  /* scale circles down on smaller screens */
  .circle-left  svg { width: 120px; height: 120px; }
  .circle-right svg { width: 100px; height: 100px; }

  /* keep the peek subtle */
  .circle-left  { top: -22px; left: -22px; }
  .circle-right { top: -18px; right: -18px; }
}

@media (max-width: 640px) {
  .about { padding: 56px 0; }
  .about_text { max-width: none; }
}

/* Contact responsive */
@media (max-width: 980px) {
  .contact_grid { grid-template-columns: 1fr; }
  .contact_map { min-height: 360px; }
}
@media (max-width: 640px) {
  .contact_info {
    grid-template-columns: 1fr;
    max-width: 100vw;
  }
  .contact_title { font-size: var(--font-xl); }
}

/* Services responsive */
@media (max-width: 980px){
  .sevicespage_grid{ grid-template-columns:1fr; gap:24px; }
  .sevicespage_btn{ justify-self:center; }
}
@media (max-width: 640px){
  .sevicespage_intro{ margin-bottom:22px; }
}

/* Treatment grid responsive */
@media (max-width: 900px){
  .treatment_classname_grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 600px){
  .treatment_classname_grid{ grid-template-columns:1fr; }
}

/* Language switcher visibility (phones only) */
@media (max-width: 640px){
  .mobile-lang-switcher{ display: block; }
}

/* =========================================================
   ACTIE SECTIE (alle classes beginnen met actie_)
========================================================= */
.actie_container{
  width: min(1100px, 90vw);
  margin: 0 auto;
}

/* ===== Promo blok ===== */
.actie_promo{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.actie_promoContent{
  padding: 32px;
}

.actie_title{
  color: #7FA9AB; /* past bij je hero tint */
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
  margin-bottom: 14px;
}

.actie_text{
  color: rgba(0,0,0,0.72);
  max-width: 70ch;
  line-height: 1.45;
  margin-bottom: 18px;
}

/* media */
.actie_promoMedia{
  height: 70%;
  min-height: 260px;
  background: #C5DEE0; /* fallback */
}

.actie_promoImg{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Buttons ===== */
.actie_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;  padding: 12px 18px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  text-decoration: none;
  line-height: 1;
}

.actie_btnPrimary{
  background: var(--beige);
  color: var(--white);
  border: 1px solid var(--beige);
}

.actie_btnPrimary:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}

.actie_btnCard{
  width: 100%;
  background: #6f9ea0; /* teal-achtig */
  color: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}

.actie_btnCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
}

/* ===== Zones ===== */
.actie_zones{
  margin-top: 26px;
}

.actie_zonesTitle{
  text-align: center;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  color: rgba(0,0,0,0.70);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  margin: 16px 0 18px;
}

.actie_cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.actie_card{
  background: #ffffff;
  padding: 20px;
  outline: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  display: grid;
  gap: 14px;
}

.actie_cardFeatured{
  background: #eef5f5; /* subtiele highlight zoals je voorbeeld */
  outline: 1px solid rgba(127,169,171,0.35);
}

.actie_cardHeader{
  display: grid;
  gap: 8px;
}

.actie_cardKicker{
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
  font-weight: 600;
}

.actie_priceRow{
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.actie_price{
  font-size: 2.1rem;
  font-weight: 800;
  color: rgba(0,0,0,0.75);
}

.actie_priceMeta{
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
}

.actie_list{
  display: grid;
  gap: 8px;
  padding-left: 0;
  margin: 0;
}

.actie_listItem{
  position: relative;
  padding-left: 22px;
  color: rgba(0,0,0,0.62);
  font-size: 0.98rem;
}

.actie_listItem::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #6f9ea0;
  font-weight: 900;
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .actie_promo{
    grid-template-columns: 1fr;
  }
  .actie_promoMedia{
    min-height: 220px;
  }
}

@media (max-width: 680px){
  .actie_cards{
    grid-template-columns: 1fr;
  }
  .actie_promoContent{
    padding: 22px;
  }
}
/* =========================================================
   ACTIE – UITLEG SECTIE (alle classes starten met actie_)
   Plak dit onderaan je style.css
========================================================= */


.actie_uitlegWrap{
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.actie_uitlegGrid{
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

/* LEFT */
.actie_uitlegTitle{
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  color: rgba(0,0,0,0.72);
  margin-bottom: 14px;
}

.actie_accent{
  color: #6f9ea0;
}

.actie_uitlegIntro{
  color: rgba(0,0,0,0.70);
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 70ch;
}

.actie_features{
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.actie_feature{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.actie_featureIcon{
  width: 46px;
  height: 46px;
  background: rgba(111, 158, 160, 0.18);
  display: grid;
  place-items: center;
  outline: 1px solid rgba(0,0,0,0.05);
}

.actie_featureIcon i{
  font-size: 18px;
  color: #6f9ea0;
}

.actie_featureTitle{
  font-weight: 800;
  color: rgba(0,0,0,0.72);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.actie_featureDesc{
  color: rgba(0,0,0,0.66);
  line-height: 1.5;
  margin: 0;
}

/* CTA */
.actie_cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);
  background: #6f9ea0;
  color: #fff;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.actie_cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.14);
  filter: brightness(0.98);
}

.actie_ctaBottom{
  margin-top: 18px;
}

/* RIGHT – card */
.actie_dealCard{
  background: #f3f6f6;
  padding: 18px;
  outline: 1px solid rgba(111,158,160,0.25);
}

.actie_dealTop{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.actie_dealTitle{
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.1;
  color: rgba(0,0,0,0.72);
  margin-bottom: 12px;
}




/* zone lijst */
.actie_zoneGrid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.actie_zoneList{
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.actie_zoneItem{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
  color: rgba(0,0,0,0.65);
  font-size: 0.98rem;
}

.actie_zoneTick{
  width: 16px;
  height: 16px;
  background: #6f9ea0;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  line-height: 1;
}

.actie_ctaCard{
  width: 100%;
  margin-top: 16px;
}

.actie_dealNote{
  margin-top: 12px;
  color: rgba(0,0,0,0.58);
  line-height: 1.45;
  text-align: center;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 980px){
  .actie_uitlegGrid{
    grid-template-columns: 1fr;
  }
  .actie_dealTop{
    grid-template-columns: 1fr;
  }
  .actie_bubble{
    width: 132px;
    height: 132px;
  }
  .actie_dealPhoto{
    min-height: 240px;
  }
}

@media (max-width: 560px){
  .actie_zoneGrid{
    grid-template-columns: 1fr;
  }
  .actie_feature{
    grid-template-columns: 46px 1fr;
  }
  .actie_featureIcon{
    width: 40px;
    height: 40px;
  }
}

