:root {
  --bg: #08071b;
  --bg-soft: #100c29;
  --card: rgba(19, 14, 46, .78);
  --purple: #b95cff;
  --purple-light: #e0b3ff;
  --blue: #4f9dff;
  --blue-light: #9ccaff;
  --text: #f8f3ff;
  --muted: #c6bdd7;
  --border: rgba(184, 116, 255, .30);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at 75% 8%, rgba(86, 68, 185, .25), transparent 28rem),
    radial-gradient(circle at 15% 45%, rgba(152, 52, 255, .14), transparent 30rem),
    linear-gradient(145deg, #080617 0%, #0b0920 52%, #070b20 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(180,130,255,.55) 1px, transparent 1.5px);
  background-size: 105px 105px, 173px 173px;
  background-position: 12px 21px, 70px 90px;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.navbar {
  width: min(calc(100% - 36px), 1200px);
  height: 76px;
  margin: 14px auto 0;
  padding: 0 22px;
  border: 1px solid rgba(125, 104, 218, .35);
  border-radius: 28px;
  background: rgba(8, 6, 27, .65);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 14px;
  z-index: 20;
  box-shadow: 0 15px 50px rgba(0,0,0,.22);
}

.brand, .heart-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--purple-light);
  font-size: 28px;
}

.heart-button {
  color: var(--blue-light);
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform .2s, color .2s;
}
.heart-button:hover { transform: scale(1.18); color: white; }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  position: relative;
  color: #ddd6e9;
  font-size: 14px;
  padding: 27px 3px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  box-shadow: 0 0 12px var(--purple);
}

.section {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 50px;
  align-items: center;
  padding: 72px 40px 45px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 11px;
  color: var(--blue-light);
  margin: 0 0 22px;
}

.hero h1, .section-heading h2, .forever h2, .reason-panel h2 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

.hero h1 {
  font-size: clamp(55px, 6vw, 83px);
  line-height: .94;
  margin: 0;
  color: var(--purple-light);
  text-shadow: 0 0 35px rgba(180, 85, 255, .20);
}
.hero h1 span { color: var(--blue-light); font-size: .75em; }

.hero-text {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 32px 0;
}

.primary-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 13px 28px;
  border: 1px solid rgba(194, 113, 255, .8);
  border-radius: 999px;
  color: white;
  background: rgba(146, 66, 219, .15);
  box-shadow: inset 0 0 20px rgba(163, 73, 255, .10), 0 0 24px rgba(163, 73, 255, .10);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.primary-button:hover {
  transform: translateY(-3px);
  background: rgba(146, 66, 219, .28);
  box-shadow: 0 0 30px rgba(163, 73, 255, .25);
}
.primary-button span { color: var(--purple-light); }

.hero-heart {
  min-height: 390px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-heart::before {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(145,74,255,.15), transparent 67%);
  filter: blur(15px);
}
.glow-heart {
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 355px;
  line-height: .75;
  color: transparent;
  -webkit-text-stroke: 2px transparent;
  background: linear-gradient(135deg, #c56bff, #6bb5ff);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(180, 87, 255, .42));
  transform: translateY(-4px);
}
.hero-heart p {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: "Great Vibes", cursive;
  font-size: 45px;
  line-height: 1.05;
  margin: -10px 0 0;
  color: #f1ddff;
}
.hero-heart > span {
  position: absolute;
  bottom: 58px;
  color: var(--purple-light);
  font-size: 30px;
  z-index: 3;
}

.section-heading { text-align: center; margin: 38px 0 42px; }
.section-heading h2 {
  font-size: 50px;
  margin: 0;
  color: var(--purple-light);
}
.section-heading h2 span { color: var(--blue-light); font-family: "DM Sans"; font-size: 30px; }
.section-heading p { color: var(--muted); margin: 5px 0 0; }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}
.photo-card { min-width: 0; }
.photo-wrap {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(188, 108, 255, .7);
  background: #15102b;
  box-shadow: 0 0 22px rgba(136, 71, 255, .08);
}
.photo-card:nth-child(4) .photo-wrap, .photo-card:nth-child(5) .photo-wrap {
  border-color: rgba(86, 158, 255, .7);
}
.photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .55s ease;
}
.photo-card:hover img { transform: scale(1.05); filter: saturate(1.08); }
.photo-copy { padding: 18px 4px 0; }
.number { color: var(--blue-light); font-size: 11px; letter-spacing: .15em; }
.photo-copy h3 { color: var(--purple-light); margin: 5px 0 7px; font-size: 18px; }
.photo-copy p { color: var(--muted); font-size: 13px; line-height: 1.65; margin: 0; }

.reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 90px;
}
.reason-panel {
  position: relative;
  padding: 45px 46px;
  border-radius: 28px;
  background: rgba(16, 12, 40, .68);
  overflow: hidden;
}
.reason-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .7;
}
.reason-panel.purple { border: 1px solid rgba(183, 86, 255, .42); }
.reason-panel.blue { border: 1px solid rgba(78, 148, 255, .42); }
.reason-panel.purple::before { background: radial-gradient(circle at 50% 100%, rgba(151, 56, 255, .13), transparent 55%); }
.reason-panel.blue::before { background: radial-gradient(circle at 50% 100%, rgba(55, 125, 255, .13), transparent 55%); }

.panel-icon { color: var(--purple-light); font-size: 25px; }
.blue .panel-icon { color: var(--blue-light); }
.reason-panel h2 {
  font-size: 47px;
  line-height: .95;
  color: var(--purple-light);
  margin: 6px 0 26px;
}
.blue h2 { color: var(--blue-light); }

.reason-panel ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}
.reason-panel li {
  position: relative;
  padding-left: 28px;
  color: #ddd6e7;
  font-size: 14px;
  line-height: 1.5;
}
.reason-panel li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--purple-light);
  font-size: 18px;
}
.blue li::before { color: var(--blue-light); }

.forever { padding: 70px 0 90px; }
.forever-card {
  text-align: center;
  max-width: 820px;
  margin: auto;
  padding: 45px 30px 32px;
  border: 1px solid rgba(142, 112, 255, .4);
  border-radius: 28px;
  background: rgba(12, 9, 32, .62);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.mini-hearts { color: var(--purple-light); font-size: 25px; }
.forever h2 { color: var(--purple-light); font-size: 57px; margin: 2px 0 15px; }
.forever p { color: var(--muted); margin: 5px; }
.forever strong {
  display: block;
  margin-top: 18px;
  color: #d89cff;
  font-family: "Great Vibes", cursive;
  font-size: 30px;
  font-weight: 400;
}
.bottom-heart { color: var(--purple-light); margin-top: 15px; }

.toast {
  position: fixed;
  left: 50%; bottom: 28px;
  transform: translate(-50%, 120px);
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(26, 18, 56, .95);
  border: 1px solid rgba(192, 103, 255, .6);
  box-shadow: 0 0 30px rgba(164, 70, 255, .25);
  opacity: 0;
  transition: .35s ease;
  z-index: 50;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

@media (max-width: 950px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 75px; }
  .hero-heart { min-height: 330px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-card:last-child { grid-column: 1 / -1; max-width: 48%; margin: 0 auto; }
}

@media (max-width: 680px) {
  .navbar { height: 62px; border-radius: 20px; padding: 0 12px; }
  .nav-links { display: none; }
  .navbar::after { content: "Voor jou ♡"; font-family: "Great Vibes"; font-size: 25px; color: var(--purple-light); }
  .brand, .heart-button { width: 36px; height: 36px; }
  .section { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 55px 10px 25px; }
  .hero h1 { font-size: 55px; }
  .hero-text { font-size: 15px; }
  .hero-heart { min-height: 270px; }
  .glow-heart { font-size: 280px; }
  .hero-heart p { font-size: 36px; }
  .section-heading h2 { font-size: 42px; }
  .photo-grid { grid-template-columns: 1fr; gap: 35px; }
  .photo-card:last-child { max-width: none; }
  .photo-wrap { aspect-ratio: 1 / 1.18; }
  .reasons { grid-template-columns: 1fr; margin-top: 65px; }
  .reason-panel { padding: 34px 28px; }
  .reason-panel h2 { font-size: 43px; }
  .forever { padding-bottom: 55px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
