/* ============================================================
   TERUGSPOEL.BE — MAGNETIC WARMTH
   Gedeelde stylesheet voor SEO-landingspaginas (subpaginas).
   Overgenomen uit index.html — zonder VHS-intro, canvas-
   animaties en contactformulier. Nav en site-wrapper zijn
   hier meteen zichtbaar (geen intro-JS nodig).
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Young+Serif&family=Outfit:wght@300;400;600;700&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&family=JetBrains+Mono:wght@300;400&display=swap');

:root {
  --amber: #C47A3A;
  --amber-light: #E8A96A;
  --amber-glow: rgba(196,122,58,0.15);
  --umber: #2C2420;
  --cream: #F5E6D3;
  --sand: #D4A574;
  --warm-grey: #7A6B5D;
  --light-cream: #FDF8F2;
  --dark-warm: #1E1814;
  --tape-brown: #3D302A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Crimson Pro', Georgia, serif;
  color: var(--umber);
  background: var(--light-cream);
  overflow-x: hidden;
}

/* ============================================================
   SITE WRAPPER — op subpaginas meteen zichtbaar
   ============================================================ */

.site-wrapper {
  opacity: 1;
}

/* ============================================================
   NAV — op subpaginas meteen zichtbaar (geen translateY-intro)
   ============================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(30,24,20,0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,122,58,0.1);
  transform: translateY(0);
  transition: background 0.4s ease;
}
nav.scrolled {
  background: rgba(253,248,242,0.95);
  border-bottom-color: rgba(212,165,116,0.15);
}
nav.scrolled .nav-logo-img {display: block; object-fit: contain; object-position: center top; filter: brightness(0.35) saturate(1.2); }
nav.scrolled .nav-links a { color: var(--warm-grey); }
nav.scrolled .nav-links a:hover { color: var(--amber); }

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {display: block; object-fit: contain; object-position: center top;
  height: 28px;
  width: auto;
  transition: filter 0.4s ease;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  justify-content: center;
}
.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--sand);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--amber); }

.nav-cta-wrapper {
  display: flex;
  justify-content: flex-end;
}
.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: white !important;
  background: var(--amber);
  padding: 11px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

/* ============================================================
   PAGE HERO — compacte hero voor subpaginas (CSS-only,
   geen canvas). Zelfde donkere sfeer als de homepage-hero.
   ============================================================ */

.page-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(60,40,28,1) 0%, var(--umber) 50%, var(--dark-warm) 100%);
}

/* Warm amber glow behind text */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(196,122,58,0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Hero grain overlay */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* Hero scanlines */
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  opacity: 0.5;
}

/* Horizontal tape strip */
.tape-strip {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 4px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.tape-strip-inner {
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    rgba(196,122,58,0.12) 0px,
    rgba(196,122,58,0.06) 20px,
    transparent 20px,
    transparent 30px
  );
  animation: tapeScroll 12s linear infinite;
}
@keyframes tapeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Additional thin tape lines */
.tape-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(196,122,58,0.06);
  z-index: 1;
  pointer-events: none;
}

/* Hero content */
.page-hero-content {
  position: relative;
  z-index: 5;
  max-width: 740px;
}

/* Animated rewind icon */
.hero-rewind {
  color: var(--amber);
  font-size: 44px;
  letter-spacing: -6px;
  margin-bottom: 28px;
  opacity: 0;
  animation: rewindPulse 3s ease-in-out infinite, fadeUp 1s ease 0.3s forwards;
}
@keyframes rewindPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Title */
.page-hero h1 {
  font-family: 'Young Serif', serif;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.5s forwards;
}
.page-hero h1 span {
  color: var(--amber);
  display: inline-block;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--sand);
  line-height: 1.7;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA buttons */
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom edge — sharp amber line */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, var(--amber) 50%, transparent 90%);
  z-index: 4;
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: var(--amber);
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,122,58,0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--umber);
  background: transparent;
  padding: 16px 36px;
  border-radius: 10px;
  border: 1.5px solid rgba(196,122,58,0.3);
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber) !important;
  background: rgba(196,122,58,0.05);
}

/* ============================================================
   SECTION STYLING
   ============================================================ */

section {
  padding: 100px 24px;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 400;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Young Serif', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--umber);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  color: var(--warm-grey);
  max-width: 580px;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Amber top line on sections */
.section-amber {
  background: var(--cream);
  position: relative;
}
.section-amber::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
}

/* ============================================================
   VISUAL BREAK + IMAGE PLACEHOLDER
   ============================================================ */

.img-placeholder {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212,165,116,0.3) 100%);
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: 0.5;
}
.img-placeholder-label {
  position: absolute;
  bottom: 12px;
  left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--warm-grey);
  letter-spacing: 1px;
  opacity: 0.5;
}

.visual-break {
  padding: 100px 24px;
  background: var(--light-cream);
}
.visual-break .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.visual-break-text {
  max-width: 480px;
}
.visual-break-text .section-title {
  margin-bottom: 24px;
}
.visual-break-text p {
  font-family: 'Crimson Pro', serif;
  font-size: 18px;
  color: var(--warm-grey);
  line-height: 1.75;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .nav-logo-img {display: block; object-fit: contain; object-position: center top; height: 22px; }
  .visual-break { padding: 60px 24px; }
  .visual-break .container { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   SERVICES / PRICING
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(44,36,32,0.08);
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; border-radius: 16px; }
}

.pricing-extras {
  text-align: center;
  margin-top: 32px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-extras p {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.7;
}
.pricing-extras span {
  color: var(--amber);
  font-weight: 600;
}

.price-card {
  background: var(--light-cream);
  padding: 48px 40px;
  border: none;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--umber);
}
.price-card.featured * { color: var(--cream); }
.price-card.featured .price-desc { color: var(--sand); }
.price-card.featured .price-features li { color: rgba(245,230,211,0.7); }
.price-card.featured .price-features li::before { color: var(--amber); }

.price-badge {
  display: inline-block;
  background: var(--amber);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  height: 22px;
  line-height: 14px;
}
.price-badge-spacer {
  height: 22px;
  margin-bottom: 16px;
}

.price-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 8px;
}

.price-desc {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--warm-grey);
  margin-bottom: 20px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--umber);
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--warm-grey);
}
.price-card.featured .price-amount { color: var(--cream); }
.price-card.featured .price-amount span { color: var(--sand); }
.price-per {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  color: var(--warm-grey);
  margin-bottom: 24px;
}
.price-card.featured .price-per { color: var(--sand); }

.price-divider {
  height: 1px;
  background: rgba(196,122,58,0.15);
  margin-bottom: 24px;
}
.price-card.featured .price-divider {
  background: rgba(245,230,211,0.1);
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--warm-grey);
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
}
.price-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.price-cta {
  display: block; object-fit: contain; object-position: center top;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.price-card:not(.featured) .price-cta {
  background: transparent;
  border: 1.5px solid var(--amber);
  color: var(--amber);
}
.price-card:not(.featured) .price-cta:hover {
  background: var(--amber);
  color: white;
}
.price-card.featured .price-cta {
  background: var(--amber);
  color: white;
  border: none;
}
.price-card.featured .price-cta:hover {
  background: var(--amber-light);
}
.price-bottom {
  margin-top: auto;
}
.price-card .price-upgrade-note {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  color: var(--warm-grey);
  text-align: center;
  margin-top: 14px;
  opacity: 0.7;
}
.price-card.featured .price-upgrade-note { color: var(--sand); }

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: var(--cream);
}

.faq-list {
  max-width: 700px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(196,122,58,0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}
.faq-question span {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--umber);
  flex: 1;
}
.faq-toggle {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: var(--amber);
  transition: transform 0.3s;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION (donkere band, zonder contactformulier)
   ============================================================ */

.cta-section {
  background: var(--umber);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(196,122,58,0.06);
}
.cta-section::before {
  top: -200px;
  left: -100px;
  box-shadow: 0 0 0 40px rgba(196,122,58,0.03), 0 0 0 80px rgba(196,122,58,0.015);
}
.cta-section::after {
  bottom: -200px;
  right: -100px;
  box-shadow: 0 0 0 40px rgba(196,122,58,0.03), 0 0 0 80px rgba(196,122,58,0.015);
}

.cta-section .section-label { color: var(--sand); }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-desc {
  color: var(--sand);
  margin: 0 auto 40px;
}

.cta-rewind {
  color: var(--amber);
  font-size: 32px;
  letter-spacing: -5px;
  margin-bottom: 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--dark-warm);
  padding: 60px 24px 30px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand-name {
  font-family: 'Young Serif', serif;
  font-size: 24px;
  color: var(--cream);
}
.footer-brand-be {
  color: var(--amber);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
}
.footer-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--warm-grey);
  margin-top: 8px;
}

.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.footer-links a {
  display: block; object-fit: contain; object-position: center top;
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  color: var(--warm-grey);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(122,107,93,0.2);
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(122,107,93,0.5);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  nav {
    padding: 12px 16px;
    grid-template-columns: auto auto;
  }
  .nav-links { display: none; }
  .nav-cta-wrapper { justify-content: flex-end; }

  .nav-cta { font-size: 13px; padding: 9px 18px; }

  section { padding: 60px 20px; }

  .page-hero { padding: 110px 20px 70px; min-height: 55vh; }
  .page-hero h1 { font-size: clamp(26px, 8vw, 42px); }
  .hero-rewind { font-size: clamp(28px, 8vw, 48px); }
  .hero-sub { font-size: 16px; padding: 0 8px; }
  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 80%;
    max-width: 300px;
    text-align: center;
    display: block; object-fit: contain; object-position: center top;
    margin: 0 auto;
  }

  .section-title { font-size: clamp(24px, 6vw, 36px); }

  .visual-break { padding: 60px 20px; }
  .visual-break .container { grid-template-columns: 1fr; gap: 32px; direction: ltr !important; }
  .visual-break-text { max-width: 100%; }
  .visual-break-text p { font-size: 16px; }

  .footer-content { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
