/* =============================================
   Information Autonomy — Website
   Kleurpalet gebaseerd op boekcover
   ============================================= */

:root {
  --navy:       #0d1b2e;
  --navy-mid:   #162338;
  --navy-light: #1e3254;
  --blue:       #4a9edd;
  --blue-light: #7bbef0;
  --white:      #ffffff;
  --white-dim:  rgba(255,255,255,0.75);
  --white-faint:rgba(255,255,255,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- RIBBON ---- */
.ribbon {
  position: fixed;
  top: 52px;
  left: -52px;
  width: 220px;
  background: #cc2200;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px 0;
  transform: rotate(-45deg);
  z-index: 9999;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  white-space: nowrap;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero .container {
  max-width: 1100px;
}

.hero-cover {
  margin: 48px auto;
  width: 340px;
}

.hero-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.author-name {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.book-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--blue-light);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 0;
  line-height: 1.6;
}

.voorwoord {
  background: var(--blue-dark);
  padding: 48px 0 16px;
}
.hero-quote cite a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-quote cite a:hover {
  opacity: 0.75;
}

.voorwoord-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 32px;
}

.hero-quote {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: left;
  font-style: italic;
  color: var(--white-dim);
  background: var(--white-faint);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}

.hero-quote-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--blue);
  flex-shrink: 0;
  filter: grayscale(15%);
}

.hero-quote-body {
  flex: 1;
}

.hero-quote-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.hero-quote cite {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-style: normal;
}

.hero-quote cite strong {
  color: var(--white);
  font-size: 0.95rem;
}

.hero-quote cite span {
  color: var(--blue-light);
  font-size: 0.82rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-large {
  font-size: 1.1rem;
  padding: 18px 44px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--blue-light);
  border: 2px solid var(--blue);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}

.btn-secondary:hover {
  background: var(--blue);
  color: var(--white);
}

.order-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* ---- SECTIONS ---- */
section {
  padding: 48px 0;
}

section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ---- ARGUMENT ---- */
.argument {
  background: var(--navy-mid);
  text-align: center;
}

.argument .container {
  max-width: 1100px;
}

.argument .lead {
  font-size: 1.15rem;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.argument p {
  color: var(--white-dim);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.argument strong {
  color: var(--blue-light);
}

.thinkers-list {
  color: var(--blue-light);
  font-size: 1.05rem;
  line-height: 2;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}
.thinkers-list a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.thinkers-list a:hover {
  opacity: 0.75;
}

.argument-statement {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 0 auto 40px;
  letter-spacing: -0.01em;
}

.argument-epigram {
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--white) !important;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--white-faint);
}

.argument-lees-meer {
  margin-top: 24px;
  text-align: center;
}
.argument-lees-meer a {
  color: var(--blue-light);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.argument-lees-meer a:hover {
  text-decoration: underline;
}

/* ---- ENDORSEMENTS ---- */
.endorsements {
  background: var(--navy);
}

.endorsements .container {
  max-width: 1200px;
}

.endorsements h2 {
  text-align: center;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.quote-card {
  background: var(--navy-mid);
  border: 1px solid var(--white-faint);
  border-left: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--blue);
  flex-shrink: 0;
  filter: grayscale(15%);
}

.quote-text {
  font-style: italic;
  color: var(--white-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--white-faint);
}

.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.quote-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin: 0;
}

.quote-role {
  font-size: 0.82rem;
  color: var(--blue-light);
  margin: 0;
  line-height: 1.4;
}

/* ---- ABOUT ---- */
.about {
  background: var(--navy-light);
}

.about-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.about-photo {
  flex: 0 0 220px;
}

.about-photo img {
  width: 100%;
  border-radius: 8px;
  filter: grayscale(100%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.about-stat {
  background: var(--white-faint);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.about-stat-number {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--blue-light);
  text-align: right;
}

.about-text {
  flex: 1;
}

.about-countries {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--white-faint);
}

.about-countries-label {
  font-size: 0.8rem;
  color: var(--blue-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.about-flag {
  font-size: 1.6rem;
  line-height: 1;
}

.about-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 20px !important;
  letter-spacing: 0.01em;
}

.about p {
  color: var(--white-dim);
  margin-bottom: 16px;
}

.about p a {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about p a:hover {
  color: var(--white);
}

.foreword-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--white-faint);
  border-radius: 8px;
  font-size: 0.95rem;
}

.foreword-note strong {
  color: var(--white);
}

/* ---- ORDER ---- */
.order {
  background: var(--navy-light);
}

.order-inner {
  display: flex;
  gap: 72px;
  align-items: center;
}

.order-cover {
  flex: 0 0 220px;
}

.order-cover img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.order-content {
  flex: 1;
}

.order-content h2 {
  text-align: left;
}

.order p {
  color: var(--white-dim);
  margin-bottom: 32px;
}

.order-links {
  margin-top: 20px;
  font-size: 0.95rem;
}

.order-links a {
  color: var(--blue-light);
  text-decoration: none;
  transition: color 0.2s;
}

.order-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .order-inner { flex-direction: column; gap: 40px; text-align: center; }
  .order-cover { flex: 0 0 auto; width: 180px; }
  .order-content h2 { text-align: center; }
}

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  border-top: 1px solid var(--white-faint);
}

footer a {
  color: var(--blue-light);
  text-decoration: none;
}

/* ---- COMING SOON TALEN ---- */
.coming-soon-langs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lang-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--white-faint);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-cover { flex: 0 0 auto; width: 220px; max-width: 100%; }
  .hero-quote { flex-direction: column; gap: 16px; }
  .about-inner { flex-direction: column; }
  .about-photo { flex: 0 0 auto; width: 180px; margin: 0 auto; }
  .quotes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .book-title { font-size: clamp(1.6rem, 6vw, 3.2rem); }
  .hero-quote { padding: 16px 18px; }
  .order-buttons { flex-direction: column; align-items: stretch; }
  section { padding: 56px 0; }
  section h2 { font-size: 1.6rem; }
}
