/* -------------------------------------------------------------------
   Lottes ditjes en datjes — basisstijl
   Kleuren rechtstreeks overgenomen uit het logo (zachte pastel koraal,
   roze, salie-groen, stofblauw, mosterdgeel, lavendel). Plain CSS, geen
   preprocessor nodig. Pas kleuren/fonts hieronder aan.
   ------------------------------------------------------------------- */

:root {
  --color-bg: #fffbf6;
  --color-text: #4a4038;
  --color-text-muted: #8a7d70;
  --color-card-bg: #ffffff;

  /* Pastelpalet uit het logo */
  --color-coral: #f2a06b;
  --color-coral-dark: #d9824f;
  --color-pink: #f0a0b8;
  --color-green: #9dc48f;
  --color-blue: #93bfce;
  --color-yellow: #f0cb6e;
  --color-purple: #a99bc7;

  /* Diepere tinten (goede leesbaarheid op lichte achtergronden: iconen/tekst) */
  --color-pink-deep: #d97590;
  --color-green-deep: #6f9f61;
  --color-yellow-deep: #c9a03e;
  --color-blue-deep: #5f95a6;
  --color-purple-deep: #8570a8;

  /* Heel lichte tinten voor blob-achtergronden en badges */
  --tint-pink: #fbe4ec;
  --tint-green: #e6f2e0;
  --tint-yellow: #fdf1d7;
  --tint-blue: #e3eff3;
  --tint-purple: #ede7f3;

  --color-primary: var(--color-coral);
  --color-primary-dark: var(--color-coral-dark);
  --color-accent: var(--color-yellow);

  /* Aliassen zodat het palet ook onder deze namen beschikbaar is */
  --coral: var(--color-coral);
  --pink: var(--color-pink);
  --peach: var(--color-coral);
  --mint: #bcdcc0;
  --sage: var(--color-green);
  --yellow: var(--color-yellow);
  --lavender: var(--color-purple);
  --blue: var(--color-blue);
  --cream: var(--color-bg);
  --text: var(--color-text);

  --max-width: 960px;
  --font-heading: "Quicksand", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-script: "Pacifico", cursive;
  --font-hand: "Caveat", cursive;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-heading);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--color-primary-dark);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Dev-environment banner ---------------------------------------------- */

.dev-banner {
  background: #45392f;
  color: var(--color-yellow);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* Header / navigation — bewust subtiel, dit is een Coming Soon site ---- */

.site-header {
  background: transparent;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.site-logo {
  height: 34px;
  width: auto;
  transition: transform 0.2s ease;
}

.site-title:hover .site-logo {
  transform: rotate(-6deg) scale(1.05);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--tint-pink);
  color: var(--color-pink-deep);
  font-size: 1.1rem;
  cursor: pointer;
}

.site-nav {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  background: var(--color-card-bg);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(74, 64, 56, 0.15);
  padding: 0.75rem 1.25rem;
  z-index: 20;
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-primary-dark);
}

@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 1.5rem;
  }

  .site-nav a {
    font-size: 0.85rem;
    color: var(--color-text-muted);
  }
}

/* Main content --------------------------------------------------------- */

.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.site-main h1 {
  color: var(--color-text);
}

/* Hero / coming soon section ---------------------------------------------- */

.hero {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  padding: 1rem 1.5rem 4rem;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 170px minmax(0, 640px) 170px;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: 230px minmax(0, 680px) 230px;
  }
}

.hero-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  animation: hero-fade-in 0.8s ease-out both;
}

.hero-logo {
  width: 220px;
  max-width: 55vw;
  height: auto;
  margin-bottom: 1rem;
  animation: hero-logo-in 0.9s ease-out both;
}

.hero-title {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.75rem, 2rem + 3vw, 5rem);
  color: var(--color-pink-deep);
  margin: 0 0 0.4rem;
  line-height: 1;
}

.hero-subtitle {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  color: var(--color-green-deep);
  margin: 0 0 1.1rem;
  line-height: 1.2;
}

.heart-accent {
  color: var(--color-pink);
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--color-text);
  margin: 0 0 0.75rem;
}

.hero-motto {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-pink-deep);
  margin: 0 0 2rem;
}

@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-logo-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Left/right decorative illustration columns (desktop & tablet only) ------ */

.hero-side {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 900px) {
  .hero-side {
    display: flex;
  }
}

.hero-side__text {
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.25;
  color: var(--color-pink-deep);
  margin: 0;
}

.hero-side--right .hero-side__text {
  color: var(--color-green-deep);
}

@media (min-width: 1200px) {
  .hero-side__text {
    font-size: 1.6rem;
  }
}

/* Soft photo-blob frames — swap in real photos at assets/images/*.jpg later */

.photo-blob {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(74, 64, 56, 0.12);
  flex-shrink: 0;
}

@media (min-width: 1200px) {
  .photo-blob {
    width: 130px;
    height: 130px;
  }
}

.photo-blob--cupcake { background: var(--tint-pink); color: var(--color-pink-deep); }
.photo-blob--cake { background: var(--tint-green); color: var(--color-green-deep); }

.photo-blob--cookies {
  display: none;
  position: absolute;
  z-index: 1;
  width: 78px;
  height: 78px;
  left: 4%;
  bottom: 6%;
  background: var(--tint-blue);
  color: var(--color-blue-deep);
  animation: hero-drift 9s ease-in-out infinite;
}

@media (min-width: 900px) {
  .photo-blob--cookies {
    display: flex;
  }
}

.decorative-doodle {
  position: relative;
  z-index: 1;
}

.decorative-photo {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative corner blobs with handwritten notes — smaller on mobile, may
   bleed slightly off-canvas; bigger from tablet width up ------------------ */

.hero-blob {
  position: absolute;
  z-index: 1;
  display: flex;
  width: 150px;
  min-height: 110px;
  padding: 0.85rem 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25;
  pointer-events: none;
  animation: hero-drift 8s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero-blob {
    width: 230px;
    min-height: 160px;
    padding: 1.25rem 1.5rem;
    font-size: 1.35rem;
  }
}

.hero-blob__heart {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

.hero-blob--blue {
  bottom: 4%;
  left: -4%;
  background: var(--tint-blue);
  color: var(--color-blue-deep);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
}

.hero-blob--yellow {
  bottom: 4%;
  right: -4%;
  background: var(--tint-yellow);
  color: var(--color-yellow-deep);
  border-radius: 55% 45% 40% 60% / 45% 60% 40% 55%;
  animation-delay: 4.5s;
}

@keyframes hero-drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -10px); }
}

/* Scattered confetti: dots, hearts and stars ------------------------------- */

.confetti-dot {
  position: absolute;
  z-index: 1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
  animation: hero-drift 6s ease-in-out infinite;
}

.confetti-dot--sm {
  width: 8px;
  height: 8px;
}

@media (min-width: 700px) {
  .confetti-dot {
    width: 14px;
    height: 14px;
  }

  .confetti-dot--sm {
    width: 9px;
    height: 9px;
  }
}

.confetti-dot--pink { background: var(--color-pink); }
.confetti-dot--green { background: var(--color-green); }
.confetti-dot--blue { background: var(--color-blue); }
.confetti-dot--yellow { background: var(--color-yellow); }
.confetti-dot--purple { background: var(--color-purple); }

.confetti-dot-1 { top: 4%; left: 20%; animation-delay: 0.5s; }
.confetti-dot-2 { top: 10%; right: 18%; animation-delay: 2s; }
.confetti-dot-3 { top: 34%; left: 6%; animation-delay: 3.5s; }
.confetti-dot-4 { top: 55%; right: 8%; animation-delay: 1s; }
.confetti-dot-5 { top: 78%; left: 14%; animation-delay: 2.5s; }
.confetti-dot-6 { top: 18%; left: 38%; animation-delay: 4s; }
.confetti-dot-7 { top: 66%; right: 26%; animation-delay: 0s; }
.confetti-dot-8 { top: 42%; right: 36%; animation-delay: 1.5s; }

.confetti-heart,
.confetti-star {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  animation: hero-drift 7s ease-in-out infinite;
}

.confetti-heart {
  color: var(--color-pink);
  opacity: 0.85;
}

.confetti-star {
  color: var(--color-yellow);
  opacity: 0.9;
}

.confetti-heart-1 { top: 24%; left: 4%; }
.confetti-heart-2 { top: 60%; right: 6%; animation-delay: 2s; }
.confetti-star-1 { top: 14%; right: 12%; animation-delay: 1s; }
.confetti-star-2 { top: 72%; left: 10%; animation-delay: 3s; }

/* Allergen badges ----------------------------------------------------------- */

.allergen-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100px;
}

.badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.badge:nth-child(odd):hover .badge-icon {
  transform: translateY(-3px) scale(1.08) rotate(-4deg);
}

.badge:nth-child(even):hover .badge-icon {
  transform: translateY(-3px) scale(1.08) rotate(4deg);
}

.badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

.badge--vegan .badge-icon { background: var(--tint-green); color: var(--color-green-deep); }
.badge--melkvrij .badge-icon { background: var(--tint-pink); color: var(--color-pink-deep); }
.badge--eivrij .badge-icon { background: var(--tint-yellow); color: var(--color-yellow-deep); }
.badge--glutenvrij .badge-icon { background: var(--tint-blue); color: var(--color-blue-deep); }
.badge--meer .badge-icon { background: var(--tint-purple); color: var(--color-purple-deep); }

.allergen-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.signup {
  max-width: 460px;
  margin: 0 auto 1.5rem;
  background: var(--tint-pink);
  border-radius: 28px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 24px rgba(217, 130, 79, 0.12);
}

.signup-title {
  font-size: 1.15rem;
  color: var(--color-text);
  margin: 0 0 1rem;
}

.signup-placeholder {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-card-bg);
  border: 2px dashed #ecdfce;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
}

.signup-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.signup-form input[type="email"] {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1.1rem;
  border: 2px solid #f1e8dd;
  border-radius: 999px;
  min-width: 240px;
  background: var(--color-card-bg);
  color: var(--color-text);
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

.signup-form button {
  font-family: inherit;
}

/* Buttons ------------------------------------------------------------------ */

.button {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 0 6px 16px rgba(232, 99, 47, 0.25);
}

.button-secondary {
  background: transparent;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary-dark);
}

.button-secondary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

/* Allergen grid ----------------------------------------------------------- */

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.allergen-card {
  background: var(--color-card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  border-top: 6px solid var(--color-coral);
  box-shadow: 0 2px 10px rgba(74, 64, 56, 0.08);
  transition: transform 0.15s ease;
}

.allergen-card:hover {
  transform: translateY(-4px);
}

.allergen-card:nth-child(6n+2) { border-top-color: var(--color-pink); }
.allergen-card:nth-child(6n+3) { border-top-color: var(--color-yellow); }
.allergen-card:nth-child(6n+4) { border-top-color: var(--color-green); }
.allergen-card:nth-child(6n+5) { border-top-color: var(--color-blue); }
.allergen-card:nth-child(6n+6) { border-top-color: var(--color-purple); }

.allergen-icon {
  font-size: 1.75rem;
}

.allergen-card h2 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
}

/* Call to action block ----------------------------------------------------- */

.cta {
  background: #faf1de;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin: 3rem 0;
}

.cta h2 {
  margin-top: 0;
  color: var(--color-text);
}

/* Footer --------------------------------------------------------------------- */

.site-footer {
  background: var(--color-bg);
  color: var(--color-text-muted);
  padding: 2rem 0 2.5rem;
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid #f1e8dd;
}

.site-footer__tagline {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.site-footer__tagline span {
  color: var(--color-pink);
}

.site-footer__copyright {
  font-size: 0.8rem;
  margin: 0 0 0.25rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.site-footer a {
  color: var(--color-primary-dark);
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tint-pink);
  color: var(--color-pink-deep);
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.social-links a:hover {
  background: var(--color-pink);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}

/* Respect users who prefer less motion ---------------------------------- */

@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-logo,
  .hero-blob,
  .photo-blob--cookies,
  .confetti-dot,
  .confetti-heart,
  .confetti-star {
    animation: none;
  }
}

