:root{
  /* Zwart/goud thema (aansluitend bij je Golden Order DNS logo) */
  --bg: #000000;
  --panel: rgba(255, 215, 128, 0.06); /* zachte gouden waas */
  --panel2: rgba(255, 255, 255, 0.06);

  --ink: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);

  --gold: #ffd27a;
  --gold2:#ffb84d;
  --line: rgba(255, 210, 122, 0.22);

  --shadow: 0 18px 50px rgba(0,0,0,0.65);
  --radius: 18px;

  /* Leesbaarheid */
  --maxw: 78ch;
}

*{ box-sizing: border-box; }
html, body { height: 100%; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  line-height: 1.75;
}

.hero {
  width: 100%;
  height: 100vh;          /* volledige schermhoogte */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero__image {
  height: 100%;
  width: auto;            /* verhouding behouden */
  max-height: 100vh;
  object-fit: contain;    /* geen crop */
}

/* Container voor het verhaal */
.page{
  width: 100%;
  display: block;
  padding: 2.25rem 1.25rem 3.5rem;
}

.story{
  width: min(var(--maxw), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius);
  background:
    radial-gradient(1200px 420px at 50% -120px, rgba(255, 210, 122, 0.14), transparent 60%),
    radial-gradient(900px 360px at 50% 0px, rgba(255, 255, 255, 0.07), transparent 55%),
    linear-gradient(180deg, var(--panel), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 210, 122, 0.14);
}

/* Titelblok */
.story__header{
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.story__title{
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: rgba(255, 210, 122, 0.98);
  text-shadow: 0 0 18px rgba(255, 184, 77, 0.12);
}

.story__subtitle{
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Paragrafen */
.story__body p{
  margin: 0 0 1rem;
  font-size: 1.06rem;
}

.story__body p:last-child{
  margin-bottom: 0;
}

/* Quotes / fluister-achtige regels */
.story__quote{
  margin: 1.25rem 0;
  padding: 0.9rem 1.05rem;
  border-left: 3px solid rgba(255, 210, 122, 0.52);
  background: rgba(0,0,0,0.22);
  border-radius: 12px;
  color: rgba(255, 240, 214, 0.92);
  font-style: italic;
}

/* Footer */
.story__footer{
  margin-top: 1.75rem;
  padding-top: 1.25rem;
}

.rule{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 122, 0.45), transparent);
  margin: 0 0 1rem;
}

.fineprint{
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.58);
}

/* Responsiveness */
@media (max-width: 520px){
  .page{ padding: 1.5rem 0.9rem 2.5rem; }
  .story{ padding: 1.6rem 1.15rem; }
  .story__body p{ font-size: 1.02rem; }
}

/* Print: wit papier, zwarte tekst, geen zware achtergronden */
@media print{
  body{ background: #fff; color: #000; }
  .hero{ background: #fff; }
  .story{
    background: transparent;
    box-shadow: none;
    border: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .story__title{ color: #000; text-shadow: none; }
  .story__subtitle, .fineprint{ color: #222; }
  .story__quote{
    background: transparent;
    border-left-color: #000;
    color: #000;
  }
  .rule{ background: #000; }
}
