/* Leer Jezus Kennen — Site Styles
   Design: Editorial & Bookish with Texture
   Fonts: Roboto Slab (headings), Lora (body)
   Accent: Navy #004979 */

/* ── Variables ── */
:root {
  --bg-main: #eae1db;
  --bg-dark: #545454;
  --bg-accent: #004979;
  --bg-accent-hover: #003c6c;
  --bg-noise-1: #eae1db;
  --bg-noise-2: #f4ece3;
  --text: #333333;
  --text-light: #545454;
  --text-white: #ffffff;
  --meta: #888888;
  --font-heading: 'Roboto Slab', serif;
  --font-body: 'Lora', serif;
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Noise Texture Overlay ── */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4.0' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.25;
  pointer-events: none;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  body::before {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  }
}

::selection {
  background: var(--bg-accent);
  color: #fff;
}

/* ── Progressive Blur ── */
.progressive-blur {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 25vh;
  z-index: 100;
  pointer-events: none;
}

.progressive-blur > div {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.blur-1 { backdrop-filter: blur(0.15625px); -webkit-backdrop-filter: blur(0.15625px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12.5%); }
.blur-2 { backdrop-filter: blur(0.3125px); -webkit-backdrop-filter: blur(0.3125px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 12.5%, rgba(0,0,0,1) 25%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 12.5%, rgba(0,0,0,1) 25%); }
.blur-3 { backdrop-filter: blur(0.625px); -webkit-backdrop-filter: blur(0.625px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 37.5%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 37.5%); }
.blur-4 { backdrop-filter: blur(1.25px); -webkit-backdrop-filter: blur(1.25px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 37.5%, rgba(0,0,0,1) 50%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 37.5%, rgba(0,0,0,1) 50%); }
.blur-5 { backdrop-filter: blur(2.5px); -webkit-backdrop-filter: blur(2.5px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 62.5%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 62.5%); }
.blur-6 { backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 62.5%, rgba(0,0,0,1) 75%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 62.5%, rgba(0,0,0,1) 75%); }
.blur-7 { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 87.5%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 87.5%); }
.blur-8 { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); mask-image: linear-gradient(to top, rgba(0,0,0,0) 87.5%, rgba(0,0,0,1) 100%); -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 87.5%, rgba(0,0,0,1) 100%); }

/* ── Navigation: Secondary (language) ── */
.nav-secondary {
  position: relative;
  z-index: 200;
  background-color: #141618;
  padding: 6px 25px;
  display: flex;
  justify-content: flex-end;
}

.nav-secondary a {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s var(--ease-out);
}

.nav-secondary a:hover { color: #fff; }

.nav-secondary .flag {
  width: 18px; height: 12px;
  border-radius: 1px;
  background: linear-gradient(180deg, #B22234 0% 30.77%, #fff 30.77% 38.46%, #B22234 38.46% 46.15%, #fff 46.15% 53.85%, #B22234 53.85% 61.54%, #fff 61.54% 69.23%, #B22234 69.23% 100%);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.nav-secondary .flag::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 53.85%;
  background: #3C3B6E;
}

.nav-secondary .flag-nl {
  width: 18px; height: 12px;
  border-radius: 1px;
  background: linear-gradient(180deg, #AE1C28 0% 33.33%, #FFF 33.33% 66.67%, #21468B 66.67% 100%);
  display: inline-block;
  flex-shrink: 0;
}

/* ── Navigation: Primary ── */
.nav-primary {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--bg-main);
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  transition: box-shadow 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}

.nav-primary.scrolled {
  background-color: rgba(234, 225, 219, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 24px rgba(0,0,0,0.06);
}

.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity 0.25s var(--ease-out);
}
.nav-logo img:hover { opacity: 0.75; }

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 25px 18px;
  position: relative;
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--bg-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease-out);
}

.nav-menu a:hover { color: var(--bg-accent); }
.nav-menu a:hover::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--bg-accent); }
.nav-menu a.active::after { transform: scaleX(1); }

.nav-menu .dropdown { position: relative; }

.nav-menu .dropdown-toggle::after {
  content: '\2039';
  display: inline-block;
  margin-left: 5px;
  transform: rotate(-90deg);
  font-size: 16px;
  transition: transform 0.3s var(--ease-out);
}

.nav-menu .dropdown:hover .dropdown-toggle::after,
.nav-menu .dropdown.open .dropdown-toggle::after { transform: rotate(90deg); }

/* Prevent underline pseudo-element on dropdown toggle links */
.nav-menu .dropdown > a::after {
  display: none;
}

.nav-menu .drop-menu {
  position: absolute;
  top: 100%; left: 0;
  background: rgba(244, 236, 227, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 1px 0 rgba(0,0,0,0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  border-radius: 6px;
  overflow: hidden;
  z-index: 300;
}

.nav-menu .dropdown:hover .drop-menu,
.nav-menu .dropdown.open .drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .drop-menu a {
  display: block;
  padding: 13px 22px;
  font-size: 12.5px;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out), padding-left 0.25s var(--ease-out);
}
.nav-menu .drop-menu a::after { display: none; }

.nav-menu .drop-menu a:last-child { border-bottom: none; }
.nav-menu .drop-menu a:hover {
  background: rgba(0, 73, 121, 0.06);
  color: var(--bg-accent);
  padding-left: 28px;
}

.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn-cta {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-accent);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 73, 121, 0.25);
}

.nav-cta .btn-cta:hover {
  background: var(--bg-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 73, 121, 0.35);
}

.nav-cta .social-icon {
  color: var(--text-light);
  font-size: 16px;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  display: flex;
  align-items: center;
}

.nav-cta .social-icon:hover {
  color: var(--bg-accent);
  transform: translateY(-2px);
}

/* ── Mobile Menu Button ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 250;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out), width 0.35s var(--ease-out);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(20, 22, 24, 0.55);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--bg-main);
  z-index: 410;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 30px 28px 40px;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}

.mobile-menu-panel.active {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 8px;
  margin-bottom: 20px;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.mobile-menu-close:hover {
  color: var(--bg-accent);
  transform: rotate(90deg);
}

.mobile-menu-close svg { width: 22px; height: 22px; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-light);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color 0.25s var(--ease-out), padding-left 0.25s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-links a:hover {
  color: var(--bg-accent);
  padding-left: 6px;
}

.mobile-nav-links .mobile-sub {
  padding-left: 14px;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav-cta {
  margin-top: 28px;
}

.mobile-nav-cta .btn-cta {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-accent);
  padding: 14px 22px;
  border-radius: 50px;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0, 73, 121, 0.25);
}

.mobile-nav-cta .btn-cta:hover {
  background: var(--bg-accent-hover);
  box-shadow: 0 6px 20px rgba(0, 73, 121, 0.35);
}

@media (max-width: 960px) {
  .nav-menu, .nav-cta .social-icon, .nav-secondary { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-cta .btn-cta { display: none; }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-main);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 80px 25px 50px;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.22em;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 1s var(--ease-out) 0.2s forwards;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  color: var(--text-light);
  line-height: 1.0;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(-30px);
  animation: slideDown 1s var(--ease-out) 0.4s forwards;
}

.hero-body {
  max-width: 65%;
  text-align: left;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s var(--ease-out) 0.5s forwards;
}

.hero-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1em;
}

.hero-body .dropcap {
  float: left;
  font-size: 3.4em;
  line-height: 1.0em;
  padding-right: 0.1em;
  font-weight: 700;
  font-family: var(--font-body);
}

.hero-body .bold-text { font-weight: 700; }

.hero-cta {
  display: block;
  width: 100%;
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 0.7s forwards;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg-accent);
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  box-shadow: 0 2px 12px rgba(0, 73, 121, 0.25);
}

.hero-cta a:hover {
  background: var(--bg-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 73, 121, 0.35);
}

.hero-cta a .arrow {
  transition: transform 0.35s var(--ease-out);
}

.hero-cta a:hover .arrow { transform: translateX(5px); }

.hero-scroll {
  margin-top: 48px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2.2s forwards;
}

.hero-scroll svg {
  width: 28px; height: 28px;
  fill: var(--text-light);
  animation: bounce 2s infinite 3s;
}

@media (max-width: 768px) {
  .hero-body { max-width: 100%; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 70px 20px 40px; }
}

/* ── Section: Cards ── */
.section-cards {
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
  padding: 80px 25px;
}

.section-cards .section-bg {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}

.section-cards .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-cards h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-light);
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 960px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; } }

.card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 2/3;
  background: var(--bg-accent);
  display: block;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 73, 121, 0.25);
}

.card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.card-svg-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: transform 0.7s var(--ease-out);
}

.card-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, var(--bg-accent) 0%, rgba(0,73,121,0.55) 50%, rgba(0,73,121,0.35) 100%);
  transition: opacity 0.45s var(--ease-out);
}

.card:hover .card-overlay { opacity: 0.7; }
.card:hover .card-img { transform: scale(1.06); }
.card:hover .card-svg-bg { transform: scale(1.06); }

.card-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  text-align: left;
  transform: translateY(0);
  transition: transform 0.45s var(--ease-out);
}

.card:hover .card-text { transform: translateY(-4px); }

.card-text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

/* ── Section: Videos ── */
.section-videos {
  position: relative;
  background-color: var(--bg-dark);
  overflow: hidden;
  padding: 80px 25px;
}

.section-videos .section-bg {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  z-index: 0;
  will-change: transform;
}

.section-videos .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-videos h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-videos .section-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.video-carousel {
  position: relative;
  overflow: hidden;
}

.video-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease-out);
}

.video-slide {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  transition: box-shadow 0.4s var(--ease-out);
}

.video-slide:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.video-slide iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
}

.video-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.video-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  border: none;
  padding: 0;
}

.video-dot.active {
  background: rgba(255,255,255,0.9);
  width: 24px;
  border-radius: 4px;
}

.video-dot:hover { background: rgba(255,255,255,0.6); }

/* ── Section: Contact ── */
.section-contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-main);
  overflow: hidden;
  padding: 80px 25px;
}

.section-contact .section-bg {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}

.contact-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.2);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
}

.contact-card-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-accent);
  z-index: 0;
}

.contact-card-inner {
  position: relative;
  z-index: 1;
  padding: 56px;
  max-width: 80%;
  margin: 0 auto;
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.contact-card .lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row-inline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form-row-inline { grid-template-columns: 1fr; }
  .contact-card-inner { padding: 36px 22px; max-width: 100%; }
  .contact-card { border-radius: 0; }
  .contact-card:hover { transform: none; }
  .section-contact { padding: 60px 0; }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: rgba(255,255,255,0.85);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 30px;
}

.contact-form .btn-submit {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-accent);
  background: var(--bg-main);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-form .btn-submit:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ── Section: Ontdek meer (subpages) ── */
.section-discover {
  position: relative;
  background-color: var(--bg-main);
  overflow: hidden;
  padding: 80px 25px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.section-discover .section-bg {
  position: absolute;
  top: -10%; left: 0;
  width: 100%; height: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 0;
  opacity: 0.5;
  will-change: transform;
}

.section-discover .section-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-discover h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-light);
  margin-bottom: 44px;
  letter-spacing: -0.01em;
}

/* ── Article Page (subpages) ── */
.article-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-accent);
  overflow: hidden;
}

.article-hero .hero-bg {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}

.article-hero .hero-bg--pattern {
  background-image: url('/sites/leer-jezus-kennen/assets/pattern-icons.svg');
  background-size: 180px 180px;
  background-repeat: repeat;
  opacity: 0.12;
}

.article-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,30,55,0.5) 0%, rgba(0,50,80,0.3) 100%);
  z-index: 1;
}

.article-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 25px 50px;
  max-width: 900px;
}

.article-hero-content h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.article-content {
  max-width: 72ch;
  margin: 0 auto;
  padding: 64px 25px 100px;
  position: relative;
}

.article-content::before {
  content: "";
  position: absolute;
  top: 0; left: -40%; right: -40%; bottom: 0;
  background-image: url('/sites/leer-jezus-kennen/assets/pattern-icons.svg');
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

.article-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--text-light);
  margin: 2.2em 0 0.8em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  margin: 2em 0 0.7em;
  line-height: 1.3;
}

.article-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.3em;
}

.article-content a {
  color: var(--bg-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease-out);
}

.article-content a:hover { color: var(--bg-accent-hover); }

.article-content blockquote {
  border-left: 3px solid var(--bg-accent);
  padding: 4px 0 4px 1.5rem;
  margin: 1.8em 0;
  font-style: italic;
  color: rgba(84, 84, 84, 0.85);
}

.article-content .bible-ref {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bg-accent);
}

.article-content ul,
.article-content ol {
  margin: 0 0 1.3em 1.5rem;
}

.article-content li {
  margin-bottom: 0.5em;
  line-height: 1.85;
}

.article-content hr {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.1);
  margin: 2.5em 0;
}

/* Church listing (leer-met-anderen) */
/* ── Church listing (legacy inline, kept for backwards compat) ── */
.church-listing { margin: 2em 0; }
.church-item { padding: 24px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.church-item:last-child { border-bottom: none; }
.church-item h3 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--text-light); margin: 0 0 6px; }
.church-item p { margin: 0 0 4px; font-size: 0.95rem; }
.church-item a { color: var(--bg-accent); text-decoration: underline; text-underline-offset: 3px; font-size: 0.95rem; transition: color 0.2s var(--ease-out); }
.church-item a:hover { color: var(--bg-accent-hover); }

/* ── Church card section ── */
.section-churches {
  position: relative;
  padding: 80px 25px;
  overflow: hidden;
}

.section-churches .section-bg {
  position: absolute;
  top: -10%; left: 0; right: 0; bottom: -10%;
  height: 120%;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  will-change: transform;
}

.section-churches .section-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.churches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.church-card {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.church-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.church-card__body {
  padding: 28px 28px 20px;
  flex: 1;
}

.church-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-accent);
  margin: 0 0 4px;
  line-height: 1.3;
}

.church-card__city {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--meta);
  margin: 0 0 14px;
}

.church-card__address {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.5;
}

.church-card__meta {
  font-size: 0.875rem;
  color: var(--text);
  margin: 0 0 6px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.church-card__meta--time::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23a07a6a'%3E%3Cpath d='M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm64-88a8,8,0,0,1-8,8H128a8,8,0,0,1-8-8V72a8,8,0,0,1,16,0v48h48A8,8,0,0,1,192,128Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.church-card__description {
  font-size: 0.875rem;
  color: var(--meta);
  margin: 10px 0 0;
  line-height: 1.55;
}

.church-card__link {
  display: block;
  margin: 0 28px 24px;
  padding: 11px 20px;
  background: var(--bg-accent);
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  align-self: flex-start;
  width: calc(100% - 56px);
  box-shadow: 0 2px 8px rgba(0, 73, 121, 0.2);
}

.church-card__link:hover {
  background: var(--bg-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 73, 121, 0.3);
}

@media (max-width: 640px) {
  .section-churches { padding: 56px 16px; }
  .churches-grid { grid-template-columns: 1fr; gap: 16px; }
  .church-card__body { padding: 22px 22px 16px; }
  .church-card__link { margin: 0 22px 20px; width: calc(100% - 44px); }
}

@media (max-width: 768px) {
  .article-content { max-width: 100%; }
}

/* ── Footer ── */
.site-footer {
  background-color: var(--bg-main);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 48px 25px 28px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo { margin-bottom: 22px; }
.footer-logo img { height: 50px; width: auto; opacity: 0.65; margin: 0 auto; transition: opacity 0.25s var(--ease-out); }
.footer-logo img:hover { opacity: 1; }

.footer-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.55;
  letter-spacing: 0.01em;
}

.footer-text a {
  color: var(--text-light);
  transition: opacity 0.25s var(--ease-out);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-text a:hover { opacity: 1; }

/* ── Scroll to Top ── */
.scroll-top-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }

.scroll-top-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.scroll-top-btn svg { width: 18px; height: 18px; }

/* ── Animations ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }

.anim-fade-down {
  opacity: 0;
  transform: translateY(-28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.anim-fade-down.visible { opacity: 1; transform: translateY(0); }

.anim-fade {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out);
}
.anim-fade.visible { opacity: 1; }

.anim-zoom {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.anim-zoom.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }

[data-parallax] { will-change: transform; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--bg-accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  font-size: 14px;
}

.skip-link:focus { top: 0; }

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-title, .hero-subtitle, .hero-body, .hero-cta {
    opacity: 1;
    transform: none;
  }
}
