/* ==========================================================================
   Kapsalon Sandra — schone, moderne stylesheet
   Huisstijl: geel + zwart
   ========================================================================== */

/* ---- Self-hosted fonts (geen externe afhankelijkheden, GDPR-veilig) --- */
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/raleway-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/raleway-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/raleway-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/raleway-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/raleway-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/cormorant-garamond-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/cormorant-garamond-700.woff2') format('woff2');
}

:root {
  --yellow:        #ffd500;
  --yellow-dark:   #f5c500;
  --yellow-soft:   #fff8d6;
  --black:         #000000;
  --black-soft:    #1a1a1a;
  --grey-900:      #222222;
  --grey-700:      #444444;
  --grey-500:      #6b6b6b;
  --grey-300:      #d8d8d8;
  --grey-100:      #f5f3ec;
  --white:         #ffffff;
  --red:           #d4322f;

  --font-sans:    'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --max:          1200px;
  --max-narrow:   720px;
  --radius:       4px;
  --radius-lg:    12px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 8px 30px rgba(0,0,0,.12);

  --pad-section:  clamp(64px, 10vh, 120px) 0;
}

/* Reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--grey-700); }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em 0;
  color: var(--black);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.6em; }
h3 { font-size: 1.25rem; font-family: var(--font-sans); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 1.6em; }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--max-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-700);
  margin: 0 0 16px;
  padding: 4px 0;
  border-bottom: 2px solid var(--yellow);
}
.eyebrow.center { display: block; text-align: center; margin: 0 auto 16px; width: max-content; }
.eyebrow.light  { color: rgba(255,255,255,.85); border-bottom-color: var(--yellow); }
.center { text-align: center; }
.light  { color: var(--white); }
.link-light { color: var(--yellow); }

/* Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-ghost   { background: transparent; color: var(--white); border-color: var(--yellow); }
.btn-ghost:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand img { width: 44px; height: auto; }
.brand-text {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
.brand-text span { color: var(--yellow); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
}
.primary-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--yellow); }

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all .2s ease;
}
.phone-btn:hover { background: var(--white); color: var(--black); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--yellow);
  margin: 5px auto;
  transition: all .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(520px, 80vh, 760px);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/woman-with-curls-makeup.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(0.95);
}
.hero-bg::before {
  /* Donker gradient zodat de tekst leesbaar blijft, met geel-accent bovenin */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.75) 100%),
    radial-gradient(circle at 20% 25%, rgba(255,213,0,.18), transparent 55%);
  z-index: 1;
}
.hero-bg::after {
  /* Subtiel dot-patroon over de overlay heen */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,213,0,.10) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
  z-index: 2;
}
/* gele accent-strepen links/rechts */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 4px;
  height: clamp(80px, 14vh, 140px);
  background: var(--yellow);
  z-index: 1;
}
.hero::before { top: 14%; left: 6%; }
.hero::after  { bottom: 14%; right: 6%; }
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(80px, 15vh, 160px) 24px clamp(80px, 15vh, 140px);
  text-align: center;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero h1 br { display: block; }
.hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.92);
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero .eyebrow {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* Sections -------------------------------------------------------------- */
.section {
  padding: var(--pad-section);
}
.section-alt   { background: var(--yellow-soft); }
.section-dark  { background: var(--black); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.two-col.reverse { grid-template-columns: 1fr 1.1fr; }
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

/* Hours card ------------------------------------------------------------ */
.hours-card {
  background: var(--black);
  color: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  border-top: 6px solid var(--yellow);
}
.hours-card h3 {
  color: var(--yellow);
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.hours {
  margin: 0;
  display: grid;
  gap: 0;
}
.hours > div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hours > div:last-child { border-bottom: 0; }
.hours dt { font-weight: 600; margin: 0; }
.hours dd { margin: 0; color: rgba(255,255,255,.85); font-variant-numeric: tabular-nums; }
.hours .closed dd { color: rgba(255,255,255,.45); }
.hours-note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 0.92rem;
  color: rgba(255,255,255,.8);
}

/* Price grid ------------------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 40px;
}
.price-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.price-card h3 {
  color: var(--black);
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  margin: 1.6em 0 0.8em;
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.price-card h3:first-child { margin-top: 0; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px dotted var(--grey-300);
  font-size: 0.97rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-list li > span:first-child { color: var(--grey-900); }
.price-list li > span:last-child  {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-list-home { margin-top: 24px; }

.price-note {
  margin: 40px 0 0;
  text-align: center;
  font-size: 1rem;
  color: var(--grey-700);
}
.pin-fee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-left: 8px;
  white-space: nowrap;
  font-size: 0.92rem;
}
.pin-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  flex: none;
}

.small-note {
  font-size: 0.92rem;
  color: var(--grey-700);
  margin-top: 24px;
}

/* Image card ------------------------------------------------------------ */
.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 6px solid var(--yellow);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s ease;
}
.image-card:hover::before { opacity: 1; }
.image-card img { display: block; width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* Route ----------------------------------------------------------------- */
.contact-card {
  background: var(--black);
  color: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
  border-top: 4px solid var(--yellow);
}
.contact-card h3 { color: var(--yellow); margin-top: 0; }
.contact-card a  { color: var(--white); }
.contact-card a:hover { color: var(--yellow); }

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 460px;
  background: var(--grey-100);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

/* Contact form ---------------------------------------------------------- */
.contact-form {
  margin-top: 40px;
  background: rgba(255,255,255,.04);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,213,0,.25);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.field label span { color: var(--yellow); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  color: var(--white);
  transition: border-color .2s, background .2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,.1);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,.4); }

/* honeypot — hide from humans */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn { width: 100%; margin-top: 8px; }
.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.form-success { background: rgba(255,213,0,.2); color: var(--yellow); border: 1px solid var(--yellow); }
.form-error   { background: rgba(212,50,47,.2); color: #ff8a87; border: 1px solid var(--red); }

/* Footer ---------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 40px 0 30px;
  font-size: 0.88rem;
  border-top: 3px solid var(--yellow);
}
.site-footer p { margin: 0 0 10px; }
.site-footer .legal { color: rgba(255,255,255,.5); font-size: 0.8rem; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,213,0,.12);
  color: var(--yellow);
  text-decoration: none;
  margin: 8px 4px 14px;
  transition: background .2s, transform .2s;
}
.socials a:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }

/* Responsive ------------------------------------------------------------ */
@media (max-width: 900px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child,
  .two-col.reverse > :last-child { order: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .image-card img { min-height: 300px; }
  .map-card { min-height: 360px; }
  .map-card iframe { min-height: 360px; }
}

@media (max-width: 720px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 32px;
    /* Ruim voldoende negatieve translate om de hele nav (incl. border) buiten beeld te schuiven */
    transform: translateY(calc(-100% - 100px));
    transition: transform .3s ease, visibility 0s linear .3s;
    visibility: hidden;
    border-bottom: 3px solid var(--yellow);
    box-shadow: var(--shadow-md);
  }
  .primary-nav[data-open="true"] {
    transform: translateY(0);
    visibility: visible;
    transition: transform .3s ease, visibility 0s linear 0s;
  }
  .primary-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .primary-nav a {
    display: block;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .primary-nav .phone-btn { width: 100%; justify-content: center; padding: 14px; }

  .header-inner { padding: 10px 0; }
  .brand-text { font-size: 1.2rem; }
  .brand img  { width: 38px; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  .price-card { padding: 28px 22px; }
  .contact-form { padding: 24px 18px; }

  .pin-fee { display: inline-flex; margin-top: 8px; }
}

/* Reduced motion -------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
