@import url('https://fonts.googleapis.com/css2?family=Anton&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600&display=swap');

@font-face {
  font-family: 'LOVELO';
  src: url('../assets/fonts/Lovelo-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-lovelo: 'LOVELO', 'Anton', sans-serif;
  --font-anton: 'Anton', sans-serif;
  --font-instrument: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --navy: #0C1C39;
  --pink-primary: #FF24C8;
  --pink-soft: #FFBAD7;
  --orange: #EF512C;
  --white: #FFFFFF;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-lovelo);
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  line-height: 1.1;
}

p { margin: 0 0 1rem; }

a { color: inherit; }

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

.label {
  font-family: var(--font-anton);
  color: var(--pink-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.quote, .lede {
  font-family: var(--font-instrument);
  font-size: 1.25rem;
  line-height: 1.6;
}

.section {
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  .section { padding: 7rem 3rem; }
}

.container-narrow {
  max-width: 46rem;
  margin: 0 auto;
}

.container-wide {
  max-width: 68rem;
  margin: 0 auto;
}

.center { text-align: center; }

/* Buttons */
.btn {
  font-family: var(--font-anton);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  display: inline-block;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: #d94420;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-pink {
  background: var(--pink-primary);
  color: var(--white);
}
.btn-pink:hover {
  background: #e01db3;
  transform: scale(1.02);
}

.btn-small {
  padding: 0.7rem 1.6rem;
  font-size: 0.8rem;
}

/* Header / Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-logo {
  width: 220px;
  max-width: 60vw;
  margin-bottom: 2.5rem;
}
.hero-logo img { width: 100%; }

.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 4rem; }
}

.hero p.lede {
  color: rgba(255,255,255,0.7);
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.hero-note {
  color: rgba(255,255,255,0.4);
  font-family: var(--font-instrument);
  font-size: 0.95rem;
  margin-top: 1.25rem;
}

/* Photo placeholder */
.photo-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 2px dashed var(--pink-soft);
  background: rgba(255,186,215,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  font-family: var(--font-instrument);
  color: var(--navy);
  font-size: 0.95rem;
}

.about-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

/* Sections */
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-pink {
  background: var(--pink-soft);
}

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .grid-cards { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(255,36,200,0.15);
  box-shadow: 0 2px 40px rgba(255,36,200,0.06);
  padding: 2rem;
}
.card h3 {
  font-family: var(--font-lovelo);
  color: var(--pink-primary);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.card p {
  font-family: var(--font-instrument);
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 0.8fr 1.2fr; }
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.embed-wrap {
  margin-top: 2.5rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.embed-wrap iframe { width: 100%; border-radius: 12px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(12,28,57,0.1);
  padding: 1.75rem 0;
}
.faq-item h3 {
  font-family: var(--font-lovelo);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.faq-item p {
  font-family: var(--font-instrument);
  font-size: 1.05rem;
  margin: 0;
}

/* Footer */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
  font-family: var(--font-instrument);
  font-size: 0.95rem;
}
footer .footer-name {
  font-family: var(--font-lovelo);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}
footer a:hover { color: var(--pink-primary); }
footer .footer-links {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}
footer .footer-copy {
  margin-top: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1.5rem;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cookie-inner { flex-direction: row; align-items: center; gap: 2rem; }
}
.cookie-inner p {
  font-family: var(--font-instrument);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
  flex: 1;
}
.cookie-inner a { color: var(--pink-primary); }

/* Simple docs page (voorwaarden/privacy) */
.doc-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 6rem 1.5rem 5rem;
}
.doc-page h1 { color: var(--navy); font-size: 2rem; margin-bottom: 0.5rem; }
.doc-page .updated {
  font-family: var(--font-instrument);
  color: rgba(12,28,57,0.5);
  margin-bottom: 2.5rem;
}
.doc-page h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-top: 2.5rem;
}
.doc-page p {
  font-family: var(--font-instrument);
  font-size: 1.05rem;
}
.back-link {
  font-family: var(--font-anton);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-primary);
  text-decoration: none;
}
