/* Création Tricot by Rachel — kleuren overgenomen uit het originele formulierthema */
:root {
  --bg: #f5f2f7;
  --bg-card: #fffdfb;
  --ink: #3b2f35;
  --ink-soft: #6b5a63;
  --lav: #b9abca;
  --lav-deep: #7a6893;
  --lav-wash: #ece7f2;
  --rose: #af6c7a;
  --rose-light: #dda4ad;
  --orange: #f05333;
  --brown: #93311b;
  --shadow: 0 10px 30px rgba(59, 47, 53, 0.1);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.25;
  margin: 0 0 0.4em;
}

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

a { color: var(--rose); }

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

/* ---------- Navigatie ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 242, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lav-wash);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.nav-marque {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--lav-deep);
  text-decoration: none;
}
.nav-liens { display: flex; gap: 20px; flex-wrap: wrap; }
.nav-liens a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-liens a:hover { color: var(--lav-deep); border-bottom-color: var(--lav); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-photo {
  height: clamp(180px, 26vw, 300px);
  background-size: cover;
  background-position: center;
}
.hero-corps {
  background: linear-gradient(180deg, var(--lav-wash), var(--bg));
  padding: 40px 0 56px;
  text-align: center;
}
.hero-corps h1 {
  font-size: clamp(32px, 6vw, 54px);
  color: var(--lav-deep);
  margin-bottom: 12px;
}
.hero-slogan {
  font-size: clamp(18px, 2.4vw, 23px);
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 auto 28px;
  font-style: italic;
}

.bouton {
  display: inline-block;
  background: var(--lav-deep);
  color: #fff;
  text-decoration: none;
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  padding: 13px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(122, 104, 147, 0.32);
  transition: transform 0.15s ease, background 0.15s ease;
}
.bouton:hover { background: #66557d; transform: translateY(-2px); }
.bouton-whatsapp { background: #25d366; box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35); }
.bouton-whatsapp:hover { background: #1eb455; }

/* ---------- Secties ---------- */
section { padding: 64px 0; }
.section-titre { text-align: center; margin-bottom: 8px; font-size: clamp(26px, 4vw, 38px); }
.section-slogan {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 46ch;
  margin: 0 auto 40px;
}

/* Passion */
.passion { background: var(--bg-card); }
.passion-grille {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.passion-grille h2 { font-size: clamp(24px, 3.4vw, 34px); color: var(--brown); }
.passion-grille img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Keuzekaarten */
.choix-grille {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.choix-carte {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.choix-carte:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(59, 47, 53, 0.16); }
.choix-carte .cadre { aspect-ratio: 4 / 3; background: var(--lav-wash); }
.choix-carte img { width: 100%; height: 100%; object-fit: cover; }
.choix-carte span {
  display: block;
  padding: 18px 20px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 18px;
  color: var(--lav-deep);
}

/* Galerijen */
.galerie-titre {
  text-align: center;
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--rose);
  margin: 44px 0 26px;
}
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.piece {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.piece .cadre { aspect-ratio: 3 / 4; background: var(--lav-wash); }
.piece img { width: 100%; height: 100%; object-fit: cover; }
.piece figcaption {
  padding: 16px 18px;
  font-family: "Merriweather", Georgia, serif;
  font-size: 17px;
  text-align: center;
  color: var(--ink);
}

/* Personalisatieblok */
.perso {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background: var(--lav-wash);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 40px);
  margin-top: 12px;
}
.perso img { border-radius: 14px; box-shadow: var(--shadow); }
.perso h3 { font-size: clamp(20px, 2.8vw, 27px); color: var(--lav-deep); }

.zoo { background: var(--bg-card); }

/* Contact */
.contact { background: linear-gradient(180deg, var(--bg), var(--lav-wash)); }
.contact-grille {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.contact-grille img { border-radius: var(--radius); box-shadow: var(--shadow); }
.contact h2 { font-size: clamp(24px, 3.4vw, 34px); color: var(--brown); }
.whatsapp-bloc { margin: 24px 0 32px; }
.whatsapp-bloc .label { display: block; font-size: 15px; color: var(--ink-soft); margin-bottom: 4px; }
.whatsapp-bloc .numero {
  font-family: "Merriweather", Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

/* Inschrijfformulier */
.inscription {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: clamp(20px, 3.5vw, 32px);
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.inscription h3 { font-size: 22px; color: var(--lav-deep); }
.inscription p { margin: 0 0 18px; color: var(--ink-soft); font-size: 16px; }
.inscription-rangee { display: flex; gap: 12px; flex-wrap: wrap; }
.inscription input {
  flex: 1 1 220px;
  padding: 13px 16px;
  border: 1px solid var(--lav);
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}
.inscription input:focus { outline: 2px solid var(--lav-deep); outline-offset: 1px; }
.inscription-etat { margin: 14px 0 0; font-size: 15px; min-height: 1.2em; }
.inscription-etat.ok { color: #2f7d4f; }
.inscription-etat.ko { color: #c0392b; }

/* Voet */
footer {
  background: var(--lav-deep);
  color: #efeaf5;
  text-align: center;
  padding: 34px 0;
  font-size: 15px;
}
footer a { color: #fff; }

/* Lichtbak */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(43, 34, 39, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.actif { display: flex; }
.lightbox img { max-width: min(92vw, 900px); max-height: 88vh; border-radius: 12px; object-fit: contain; }
.lightbox-fermer {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .passion-grille,
  .contact-grille,
  .perso { grid-template-columns: 1fr; }
  .passion-grille img { order: -1; }
  section { padding: 48px 0; }
  .nav-liens { gap: 14px; }
  .nav-liens a { font-size: 14px; }
}
