/* ============================================
   Beauty by Lien — Design System
   Kleuren: lichtroze, wit, goud
   ============================================ */

:root {
  --roze:        #F7C5D5;
  --roze-donker: #E8A0B8;
  --roze-licht:  #FDF0F5;
  --goud:        #C9A84C;
  --goud-licht:  #F0D98C;
  --wit:         #FFFFFF;
  --tekst:       #3A2A2E;
  --tekst-licht: #7A6069;
  --rand:        #F0D9E3;

  --font-hoofd:  'Playfair Display', Georgia, serif;
  --font-tekst:  'Lato', 'Segoe UI', sans-serif;

  --radius:      12px;
  --schaduw:     0 4px 24px rgba(58, 42, 46, 0.10);
  --schaduw-hover: 0 8px 32px rgba(58, 42, 46, 0.16);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-tekst);
  color: var(--tekst);
  background: var(--wit);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- Typografie ---- */
h1, h2, h3, h4 {
  font-family: var(--font-hoofd);
  line-height: 1.2;
  color: var(--tekst);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.goud { color: var(--goud); }
.ondertitel {
  font-size: 1.05rem;
  color: var(--tekst-licht);
  margin-top: 0.5rem;
}

/* ---- Container ---- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Navigatie ---- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rand);
  box-shadow: 0 2px 12px rgba(58,42,46,0.07);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}
.logo-tekst {
  font-family: var(--font-hoofd);
  font-size: 1.6rem;
  color: var(--tekst);
  letter-spacing: 0.02em;
}
.logo-tekst span { color: var(--goud); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--tekst-licht);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--goud);
  transition: width 0.3s;
}

.nav-links a:hover, .nav-links a.actief {
  color: var(--tekst);
}
.nav-links a:hover::after, .nav-links a.actief::after {
  width: 100%;
}

.nav-boek-btn {
  background: var(--goud);
  color: var(--wit) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-boek-btn::after { display: none !important; }
.nav-boek-btn:hover {
  background: #b8923e !important;
  transform: translateY(-1px);
  color: var(--wit) !important;
}

/* Hamburger menu (mobiel) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tekst);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- Knoppen ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--schaduw); }

.btn-primair {
  background: var(--goud);
  color: var(--wit);
}
.btn-primair:hover { background: #b8923e; }

.btn-secundair {
  background: transparent;
  color: var(--goud);
  border: 2px solid var(--goud);
}
.btn-secundair:hover { background: var(--goud); color: var(--wit); }

.btn-roze {
  background: var(--roze);
  color: var(--tekst);
}
.btn-roze:hover { background: var(--roze-donker); }

/* ---- Hero sectie ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--roze-licht) 0%, #fff5f8 50%, var(--wit) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--roze) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-inhoud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-tekst h1 { margin-bottom: 1rem; }
.hero-tekst p { font-size: 1.1rem; color: var(--tekst-licht); margin-bottom: 2rem; max-width: 480px; }
.hero-knoppen { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-afbeelding {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.hero-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* ---- Sectie opmaak ---- */
section { padding: 5rem 0; }

.sectie-hoofd {
  text-align: center;
  margin-bottom: 3rem;
}
.sectie-hoofd h2 { margin-bottom: 0.5rem; }
.goud-lijn {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--goud), var(--goud-licht));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ---- Diensten kaarten ---- */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.dienst-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--schaduw);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dienst-kaart:hover {
  transform: translateY(-6px);
  box-shadow: var(--schaduw-hover);
}

.dienst-icoon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.dienst-kaart h3 { margin-bottom: 0.5rem; }
.dienst-kaart p { color: var(--tekst-licht); font-size: 0.92rem; }
.dienst-prijs {
  display: inline-block;
  margin-top: 1rem;
  color: var(--goud);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--font-hoofd);
}

/* ---- Over mij ---- */
.over-mij { background: var(--roze-licht); }

.over-mij-inhoud {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.over-foto-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
}

.over-foto-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.over-tekst h2 { margin-bottom: 1rem; }
.over-tekst p { color: var(--tekst-licht); margin-bottom: 1rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--schaduw);
}

.sterren { color: var(--goud); font-size: 1.2rem; margin-bottom: 0.75rem; }
.testimonial-kaart p { color: var(--tekst-licht); font-style: italic; margin-bottom: 1rem; }
.testimonial-naam { font-weight: 600; font-size: 0.9rem; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--roze) 0%, var(--roze-donker) 100%);
  text-align: center;
  padding: 4rem 1.5rem;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--tekst-licht); margin-bottom: 2rem; font-size: 1.05rem; }

/* ---- Formulieren ---- */
.formulier-kaart {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--schaduw);
  max-width: 680px;
  margin: 0 auto;
}

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-groep.vol { grid-column: 1 / -1; }

.form-groep label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tekst);
  letter-spacing: 0.03em;
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--rand);
  border-radius: 8px;
  font-family: var(--font-tekst);
  font-size: 0.95rem;
  color: var(--tekst);
  background: var(--wit);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  outline: none;
  border-color: var(--goud);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-groep textarea { resize: vertical; min-height: 120px; }

.form-melding {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-melding.succes { background: #E8F5E9; color: #2E7D32; display: block; }
.form-melding.fout   { background: #FFEBEE; color: #C62828; display: block; }

/* ---- Agenda (admin) ---- */
.agenda-wrapper { overflow-x: auto; }

.agenda-tabel {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.agenda-tabel th {
  background: var(--roze-licht);
  color: var(--tekst);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--rand);
}

.agenda-tabel td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--rand);
  vertical-align: top;
}

.agenda-tabel tr:hover td { background: var(--roze-licht); }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.badge-wacht    { background: #FFF8E1; color: #F57F17; }
.badge-bevestigd { background: #E8F5E9; color: #2E7D32; }
.badge-klaar    { background: #EDE7F6; color: #4527A0; }
.badge-geannuleerd { background: #FFEBEE; color: #C62828; }

/* ---- Admin layout ---- */
.admin-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background: var(--tekst);
  color: var(--wit);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  font-family: var(--font-hoofd);
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--goud-licht);
}

.admin-nav { list-style: none; flex: 1; }
.admin-nav li { margin-bottom: 0.25rem; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.admin-nav a:hover, .admin-nav a.actief {
  background: rgba(255,255,255,0.1);
  color: var(--wit);
}

.admin-hoofdinhoud {
  background: #F9F5F7;
  padding: 2.5rem;
  overflow-y: auto;
}

.admin-paginahoofd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.admin-paginahoofd h1 { font-size: 1.8rem; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat-kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--schaduw);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icoon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.stat-icoon.roze  { background: var(--roze-licht); }
.stat-icoon.goud  { background: #FFF8E1; }
.stat-icoon.groen { background: #E8F5E9; }
.stat-icoon.paars { background: #EDE7F6; }

.stat-getal { font-size: 1.8rem; font-weight: 700; font-family: var(--font-hoofd); }
.stat-label { font-size: 0.85rem; color: var(--tekst-licht); }

.kaart {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--schaduw);
  margin-bottom: 1.5rem;
}
.kaart-hoofd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.kaart-hoofd h2 { font-size: 1.15rem; }

/* Datumfilter */
.filter-balk {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  align-items: center;
}
.filter-balk input[type="date"],
.filter-balk select {
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--rand);
  border-radius: 8px;
  font-family: var(--font-tekst);
  font-size: 0.9rem;
  color: var(--tekst);
  background: var(--wit);
  cursor: pointer;
}
.filter-balk input[type="date"]:focus,
.filter-balk select:focus {
  outline: none;
  border-color: var(--goud);
}

/* ---- Fotogalerij ---- */
.galerij-sectie { padding: 5rem 0; background: var(--roze-licht); }

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.galerij-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--schaduw);
  cursor: pointer;
  position: relative;
}

.galerij-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  aspect-ratio: 1;
}

.galerij-item:hover img { transform: scale(1.05); }

.galerij-item.groot {
  grid-column: span 2;
}
.galerij-item.groot img { aspect-ratio: 2/1; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 300;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

/* ---- Footer ---- */
footer {
  background: var(--tekst);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.footer-logo {
  font-family: var(--font-hoofd);
  font-size: 1.5rem;
  color: var(--wit);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--goud-licht); }

.footer-sectie h4 {
  font-family: var(--font-hoofd);
  color: var(--wit);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer-sectie ul { list-style: none; }
.footer-sectie ul li { margin-bottom: 0.5rem; }
.footer-sectie ul a:hover { color: var(--goud-licht); }

.footer-onder {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Responsief ---- */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--wit); padding: 1.5rem; border-bottom: 1px solid var(--rand); box-shadow: var(--schaduw); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  .hero-inhoud { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .hero-afbeelding { order: -1; }

  .over-mij-inhoud { grid-template-columns: 1fr; }
  .form-rij { grid-template-columns: 1fr; }

  .admin-wrapper { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-onder { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-knoppen { flex-direction: column; }
  .btn { text-align: center; }
}
