/* ============================================================
   Viltplezier — speelse, kleurrijke stijl voor een viltsite
   Eén gedeeld stylesheet voor alle pagina's.
   Kleuren makkelijk aan te passen via de variabelen hieronder.
   ============================================================ */

:root {
  --roze:    #ff6fa5;
  --oranje:  #ff9f45;
  --geel:    #ffd23f;
  --groen:   #4ecb8d;
  --blauw:   #4aa8ff;
  --paars:   #9b6bff;
  --creme:   #fff8f0;
  --donker:  #3a2e3f;
  --zacht:   #fbeee6;
  --schaduw: 0 10px 30px rgba(58, 46, 63, 0.12);
  --radius:  22px;
  --font:    'Segoe UI', 'Trebuchet MS', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--donker);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---------- Header / navigatie ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--geel);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--donker);
}

.brand .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--roze), var(--paars));
  box-shadow: 0 0 0 5px rgba(255, 111, 165, 0.18);
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--donker);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .2s, color .2s, transform .2s;
}

.nav-links a:hover { background: var(--zacht); transform: translateY(-2px); }
.nav-links a.active { background: var(--roze); color: #fff; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-block;
  background: var(--paars);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--schaduw);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-3px) rotate(-1deg); background: var(--roze); }
.btn.alt { background: var(--groen); }
.btn.alt:hover { background: var(--blauw); }

/* ---------- Layout ---------- */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }
section { padding: 70px 0; }

.page-head {
  text-align: center;
  padding: 64px 22px 30px;
}
.page-head h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page-head p { max-width: 620px; margin: 14px auto 0; font-size: 1.1rem; opacity: .85; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 22px 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,210,63,.35), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(78,203,141,.30), transparent 45%),
    radial-gradient(circle at 50% 95%, rgba(155,107,255,.25), transparent 50%);
  overflow: hidden;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero h1 .accent {
  background: linear-gradient(90deg, var(--roze), var(--oranje), var(--geel));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { max-width: 560px; margin: 20px auto 30px; font-size: 1.2rem; }
.hero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* zwevende wolbolletjes */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  animation: drift 9s ease-in-out infinite;
}
.blob.b1 { width: 90px; height: 90px; background: var(--roze);  top: 20%; left: 8%;  }
.blob.b2 { width: 60px; height: 60px; background: var(--blauw); top: 65%; left: 18%; animation-delay: 1.5s; }
.blob.b3 { width: 110px; height: 110px; background: var(--geel); top: 25%; right: 10%; animation-delay: .8s; }
.blob.b4 { width: 70px; height: 70px; background: var(--groen); top: 70%; right: 16%; animation-delay: 2.2s; }
@keyframes drift {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-18px) scale(1.06); }
}

/* ---------- Kaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--schaduw);
  border-top: 6px solid var(--geel);
  transition: transform .25s;
}
.card:hover { transform: translateY(-6px); }
.card:nth-child(3n+1) { border-top-color: var(--roze); }
.card:nth-child(3n+2) { border-top-color: var(--groen); }
.card:nth-child(3n)   { border-top-color: var(--blauw); }
.card .emoji { font-size: 2.4rem; }
.card h3 { margin: 12px 0 8px; font-size: 1.3rem; }

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.section-title p { opacity: .8; margin-top: 8px; }

/* ---------- Projecten galerij ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--schaduw);
  background: #fff;
}
.tile .thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.tile:nth-child(5n+1) .thumb { background: linear-gradient(135deg, var(--roze), var(--oranje)); }
.tile:nth-child(5n+2) .thumb { background: linear-gradient(135deg, var(--groen), var(--blauw)); }
.tile:nth-child(5n+3) .thumb { background: linear-gradient(135deg, var(--geel), var(--oranje)); }
.tile:nth-child(5n+4) .thumb { background: linear-gradient(135deg, var(--paars), var(--roze)); }
.tile:nth-child(5n+5) .thumb { background: linear-gradient(135deg, var(--blauw), var(--paars)); }
.tile .meta { padding: 16px 18px; }
.tile .meta h3 { font-size: 1.15rem; margin-bottom: 4px; }
.tile .meta p { font-size: .92rem; opacity: .8; }

/* ---------- Over mij ---------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.about .portrait {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 40%, var(--geel), var(--oranje) 60%, var(--roze));
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  box-shadow: var(--schaduw);
}
@media (max-width: 700px){ .about { grid-template-columns: 1fr; } }

.pillrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
  background: var(--zacht);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- Workshops ---------- */
.workshop {
  display: flex;
  gap: 22px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--schaduw);
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.workshop .ws-icon {
  width: 76px; height: 76px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  background: var(--zacht);
  flex-shrink: 0;
}
.workshop .ws-body { flex: 1 1 240px; }
.workshop .ws-body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.workshop .ws-price {
  font-weight: 800;
  color: var(--paars);
  font-size: 1.1rem;
  white-space: nowrap;
}

/* ---------- Formulier ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--schaduw);
  max-width: 640px;
  margin: 0 auto;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 2px solid #f0e2d6;
  border-radius: 14px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--creme);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--roze);
}
.field textarea { min-height: 140px; resize: vertical; }

.notice {
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-weight: 600;
}
.notice.ok  { background: #e6f9ef; color: #1f7a4d; border: 2px solid var(--groen); }
.notice.err { background: #ffeaf0; color: #b3245c; border: 2px solid var(--roze); }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 18px;
  margin-top: 40px;
}
.contact-info .ci {
  background: #fff; border-radius: var(--radius);
  padding: 22px; text-align: center; box-shadow: var(--schaduw);
}
.contact-info .ci .emoji { font-size: 2rem; }
.contact-info .ci a { text-decoration: none; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--donker);
  color: #fff;
  text-align: center;
  padding: 40px 22px;
  margin-top: 30px;
}
.site-footer a { color: var(--geel); text-decoration: none; }
.site-footer .foot-links { margin: 14px 0; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.site-footer .foot-links a { color: #fff; font-weight: 600; }
.site-footer small { opacity: .7; }

/* ---------- Band ---------- */
.band {
  background: linear-gradient(90deg, var(--roze), var(--paars));
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 46px 24px;
  box-shadow: var(--schaduw);
}
.band h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 10px; }
.band .btn { background: #fff; color: var(--paars); }
.band .btn:hover { background: var(--geel); color: var(--donker); }
