/* Evelien Schoonheidssalon — huisstijl
   Palet afgeleid van het eigen logo (plum-paarse sierletter met bloem) en de
   salon zelf: porselein-wit, warm zand en rosegoud van de Icon Time-producten. */

:root {
  --porselein: #faf7f4;      /* paginafond */
  --zand: #f1e8e2;           /* secties, zachte vlakken */
  --wit: #ffffff;
  --plum: #6d4a63;           /* primaire merkkleur, uit het logo */
  --plum-diep: #4d3346;      /* koppen, footer */
  --rose: #c08d6e;           /* rosegoud accent (Icon Time) */
  --rose-licht: #e9d3c4;
  --inkt: #3b3138;           /* lopende tekst */
  --inkt-zacht: #6f6069;
  --lijn: #e5d9d3;

  --font-kop: "Cormorant Garamond", Georgia, serif;
  --font-tekst: "Mulish", "Segoe UI", sans-serif;

  --maat: 1120px;
  --radius: 14px;
  --schaduw: 0 10px 30px rgba(77, 51, 70, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-tekst);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--inkt);
  background: var(--porselein);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-kop);
  font-weight: 600;
  color: var(--plum-diep);
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
a { color: var(--plum); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}
ul { padding-left: 1.2em; }

.wrap { max-width: var(--maat); margin: 0 auto; padding: 0 20px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Bloem-accent (signatuur uit het logo) */
.bloem { color: var(--rose); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 0.9em;
}
.kicker svg { width: 1.15em; height: 1.15em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lijn);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  max-width: var(--maat);
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-link img { width: 132px; height: 65px; object-fit: contain; }

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-nav a {
  text-decoration: none;
  color: var(--inkt);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover { color: var(--plum); }
.site-nav a[aria-current="page"] { color: var(--plum); border-bottom-color: var(--rose); }
.nav-bel {
  background: var(--plum);
  color: var(--wit) !important;
  padding: 10px 18px !important;
  border-radius: 999px;
  border-bottom: none !important;
}
.nav-bel:hover { background: var(--plum-diep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--lijn);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--plum-diep);
}
.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--porselein);
    border-bottom: 1px solid var(--lijn);
    box-shadow: var(--schaduw);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 20px; }
  .site-nav a { display: block; padding: 12px 4px; font-size: 1.05rem; }
  .nav-bel { text-align: center; margin-top: 8px; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--zand) 55%, var(--rose-licht) 130%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--maat);
  margin: 0 auto;
  padding: 64px 20px 72px;
}
.hero p.intro { font-size: 1.15rem; max-width: 34em; }
.hero-foto {
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  overflow: hidden;
}
.hero-foto img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; padding: 40px 20px 48px; gap: 28px; }
}

/* Knoppen */
.knoppen { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4em; }
.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
}
.knop svg { width: 1.15em; height: 1.15em; flex: none; }
.knop-primair { background: var(--plum); color: var(--wit); }
.knop-primair:hover { background: var(--plum-diep); }
.knop-wa { background: #2e7d4f; color: var(--wit); }
.knop-wa:hover { background: #24623e; }
.knop-rand { border-color: var(--plum); color: var(--plum); background: transparent; }
.knop-rand:hover { background: var(--plum); color: var(--wit); }

/* USP-strip */
.usp-strip { background: var(--plum-diep); color: var(--wit); }
.usp-strip ul {
  list-style: none;
  margin: 0;
  padding: 18px 20px;
  max-width: var(--maat);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  font-size: 0.95rem;
}
.usp-strip li { display: flex; align-items: center; gap: 0.6em; }
.usp-strip svg { width: 1.3em; height: 1.3em; color: var(--rose); flex: none; }
@media (max-width: 860px) { .usp-strip ul { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .usp-strip ul { grid-template-columns: 1fr; } }

/* ---------- Secties ---------- */
.sectie { padding: 72px 0; }
.sectie-zand { background: var(--zand); }
.sectie-kop { max-width: 720px; margin-bottom: 40px; }
.sectie-kop.midden { margin-inline: auto; text-align: center; }
.sectie-kop.midden .kicker { justify-content: center; }

.twee-kolom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.twee-kolom .foto { border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); }
@media (max-width: 860px) { .twee-kolom { grid-template-columns: 1fr; gap: 28px; } }

/* Kaarten */
.kaarten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kaart {
  background: var(--wit);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  display: flex;
  flex-direction: column;
}
.kaart img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.kaart-tekst { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.kaart-tekst p { color: var(--inkt-zacht); flex: 1; }
.kaart-link { font-weight: 700; text-decoration: none; }
.kaart-link:hover { text-decoration: underline; }
@media (max-width: 860px) { .kaarten { grid-template-columns: 1fr; } }

/* Tarieven */
.tarief-groep { margin-bottom: 48px; }
.tarief-lijst { list-style: none; margin: 0; padding: 0; }
.tarief-lijst > li {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.tarief-regel {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  flex-wrap: wrap;
}
.tarief-regel h3 { margin: 0; }
.tarief-prijs {
  font-family: var(--font-kop);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
  white-space: nowrap;
}
.tarief-lijst p { margin: 0.5em 0 0; color: var(--inkt-zacht); font-size: 0.98rem; }
.tarief-korting { font-size: 0.88rem; color: var(--rose); font-weight: 700; margin-top: 0.4em; display: block; }

.vaste-elementen {
  background: var(--wit);
  border-left: 4px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin-bottom: 28px;
}
.vaste-elementen ul { margin: 0.6em 0 0; columns: 2; column-gap: 32px; }
@media (max-width: 640px) { .vaste-elementen ul { columns: 1; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--schaduw);
}
.review blockquote { margin: 0 0 1em; font-family: var(--font-kop); font-size: 1.18rem; color: var(--plum-diep); }
.review figcaption { font-weight: 700; color: var(--inkt-zacht); font-size: 0.92rem; }
.review figcaption::before { content: "✿ "; color: var(--rose); }
@media (max-width: 860px) { .reviews { grid-template-columns: 1fr; } }

/* Info-blokken (praktisch) */
.info-blokken { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.info-blok { background: var(--wit); border-radius: var(--radius); padding: 24px 26px; border: 1px solid var(--lijn); }
.info-blok h3 { font-size: 1.2rem; display: flex; align-items: center; gap: 0.5em; }
.info-blok h3 svg { width: 1.1em; height: 1.1em; color: var(--rose); flex: none; }
.info-blok p, .info-blok li { font-size: 0.97rem; color: var(--inkt-zacht); }
@media (max-width: 1000px) { .info-blokken { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .info-blokken { grid-template-columns: 1fr; } }

/* Openingstijden-tabel */
.tijden { width: 100%; border-collapse: collapse; }
.tijden th, .tijden td { text-align: left; padding: 9px 4px; border-bottom: 1px solid var(--lijn); font-size: 0.98rem; }
.tijden th { font-weight: 700; color: var(--plum-diep); width: 45%; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--wit);
  border: 1px solid var(--lijn);
  border-radius: var(--radius);
  padding: 4px 24px;
  margin-bottom: 12px;
}
.faq summary {
  font-weight: 700;
  color: var(--plum-diep);
  cursor: pointer;
  padding: 14px 0;
  font-size: 1.02rem;
}
.faq p { color: var(--inkt-zacht); margin-top: 0; }

/* Contact CTA-band */
.cta-band { background: linear-gradient(150deg, var(--plum-diep), var(--plum)); color: var(--wit); }
.cta-band h2 { color: var(--wit); }
.cta-band p { color: var(--rose-licht); max-width: 36em; }
.cta-band .knop-primair { background: var(--wit); color: var(--plum-diep); }
.cta-band .knop-primair:hover { background: var(--rose-licht); }
.cta-band a { color: var(--wit); }

/* Kaart / map */
.map-link { display: inline-block; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--schaduw); text-decoration: none; }
.map-link img { width: 100%; }
.map-link span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--plum-diep);
  color: var(--wit);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Nieuws / acties */
.nieuws-kaart .prijs-actie { color: var(--plum); font-weight: 800; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-diep); color: var(--rose-licht); margin-top: 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding: 56px 20px 40px;
  max-width: var(--maat);
  margin: 0 auto;
}
.site-footer h3 { color: var(--wit); font-size: 1.15rem; }
.site-footer a { color: var(--wit); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 0.97rem; }
.footer-onder {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 20px;
  font-size: 0.88rem;
}
.footer-logo { width: 150px; margin-bottom: 14px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Mobiele belbalk */
.belbalk {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--wit);
  border-top: 1px solid var(--lijn);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.belbalk .knop { flex: 1; justify-content: center; padding: 12px 10px; font-size: 0.95rem; }
@media (max-width: 700px) {
  .belbalk { display: flex; }
  body { padding-bottom: 74px; }
}

/* Breadcrumb */
.kruimel { font-size: 0.88rem; margin: 22px 0 0; color: var(--inkt-zacht); }
.kruimel ol { list-style: none; display: flex; gap: 0.5em; padding: 0; margin: 0; flex-wrap: wrap; }
.kruimel li + li::before { content: "›"; margin-right: 0.5em; color: var(--rose); }
.kruimel a { color: var(--inkt-zacht); }

/* Pagina-hero (subpagina's) */
.pagina-kop { background: linear-gradient(160deg, var(--zand) 60%, var(--rose-licht) 140%); padding: 40px 0 48px; }
.pagina-kop p.intro { font-size: 1.12rem; max-width: 38em; color: var(--inkt-zacht); }
