/* ============================================
   JEZUS CHRISTUS IS HET LICHT — Design System
   Gedeelde stijlen voor alle WordPress-pagina's
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* === CSS VARIABLES === */
:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #8B6914;
  --ink:        #1A1814;
  --ink-soft:   #2D2923;
  --paper:      #FAF7F2;
  --paper-dark: #F0EBE1;
  --white:      #FFFFFF;
  --text-muted: #6B6358;
  --text-body:  #3D3830;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1100px;
  --radius: 2px;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-body);
  background: var(--paper);
  line-height: 1.8;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 24, 20, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 213, 163, 0.7);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--ink) !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  border-radius: var(--radius);
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold-light);
  transition: var(--transition);
}

/* === PAGE WRAPPER === */
.page-wrap { padding-top: 70px; }

/* === SECTION LAYOUTS === */
.section {
  padding: 100px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: 100px 40px;
}
.section-center { text-align: center; }

/* === TYPOGRAPHY === */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '— ';
  opacity: 0.6;
}
.eyebrow::after {
  content: ' —';
  opacity: 0.6;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
}
.display-title {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.display-title em {
  font-style: italic;
  color: var(--gold-dark);
}
h2.section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 20px;
}
h2.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
h3.card-title {
  font-size: 24px;
  margin-bottom: 12px;
}
.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
}
.body-text {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 680px;
}
.scripture {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1.6;
}
.scripture-ref {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--ink);
}
.btn-arrow::after {
  content: '→';
  font-size: 16px;
}

/* === DIVIDERS === */
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 32px 0;
}
.divider-center { margin: 32px auto; }

/* === CARDS === */
.card {
  background: var(--white);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius);
  padding: 40px;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* === DARK SECTION === */
.dark-section {
  background: var(--ink);
  color: var(--paper);
}
.dark-section .eyebrow { color: var(--gold); }
.dark-section h2.section-title { color: var(--paper); }
.dark-section .body-text,
.dark-section .lead { color: rgba(240,235,225,0.7); }
.dark-section .divider { background: var(--gold); }
.dark-section .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201, 169, 110, 0.2);
}
.dark-section .card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.dark-section .card-title,
.dark-section h3 { color: var(--gold-light); }

/* === QUOTE / TESTIMONIAL === */
.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 32px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.quote-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === INFO BLOCK === */
.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
}
.info-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.info-value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(240, 235, 225, 0.6);
  padding: 80px 40px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(240, 235, 225, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-iban {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-fade-up {
  animation: fadeUp 0.8s ease forwards;
}
.anim-delay-1 { animation-delay: 0.1s; opacity: 0; }
.anim-delay-2 { animation-delay: 0.25s; opacity: 0; }
.anim-delay-3 { animation-delay: 0.4s; opacity: 0; }
.anim-delay-4 { animation-delay: 0.55s; opacity: 0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .section { padding: 70px 24px; }
  .section-full { padding: 70px 24px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 600px) {
  .display-title { font-size: 44px; }
  .section { padding: 60px 20px; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1A1814;
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { 
  display: flex !important; 
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(201,169,110,0.15);
	text-align: right;
}

/* WordPress specifiek - verwijder standaard marges */
.entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}
.entry-content > * {
  max-width: 100% !important;
}
body.page { background: var(--paper); }
