/* ═══════════════════════════════════════
   Jezus Christus is het Licht — Theme CSS
   ═══════════════════════════════════════ */

:root {
    --gold: #C8963E;
    --gold-light: #E8C674;
    --gold-pale: #F5E6C8;
    --gold-glow: rgba(200, 150, 62, 0.15);
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --dark: #0F0D0A;
    --dark-warm: #1A1612;
    --dark-mid: #2C241C;
    --text: #3D3226;
    --text-light: #7A6E60;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── NAV ─── */
nav#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.5s ease;
    background: transparent;
}
nav#navbar.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    padding: 0.8rem 2rem;
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700; font-size: 1.15rem;
    color: var(--white); text-decoration: none;
    letter-spacing: 0.02em; transition: color 0.5s ease;
}
nav#navbar.scrolled .nav-logo { color: var(--dark); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.85rem; font-weight: 400;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
nav#navbar.scrolled .nav-links a { color: var(--text); }

.hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; z-index: 200; background: none; border: none; padding: 4px;
}
.hamburger span {
    width: 24px; height: 2px; background: var(--white);
    transition: all 0.3s ease; display: block;
}
nav#navbar.scrolled .hamburger span { background: var(--dark); }

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative;
    background: var(--dark);
    overflow: hidden;
}

.hero-light {
    position: absolute;
    top: -10%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 120%;
    background: radial-gradient(ellipse 300px 600px at 50% 30%,
        rgba(232, 198, 116, 0.10) 0%,
        rgba(200, 150, 62, 0.05) 30%,
        transparent 65%);
    animation: lightBreath 6s ease-in-out infinite alternate;
}

.hero-light-rays {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 100%;
    background:
        linear-gradient(175deg, transparent 42%, rgba(200, 150, 62, 0.03) 48%, transparent 54%),
        linear-gradient(185deg, transparent 44%, rgba(200, 150, 62, 0.02) 49%, transparent 53%),
        linear-gradient(170deg, transparent 40%, rgba(200, 150, 62, 0.04) 47%, transparent 52%);
    animation: rayShift 10s ease-in-out infinite alternate;
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
    position: absolute; width: 3px; height: 3px;
    background: var(--gold-light); border-radius: 50%;
    opacity: 0; animation: particleFloat 8s ease-in-out infinite;
}
.particle:nth-child(1) { left: 20%; top: 60%; animation-delay: 0s; }
.particle:nth-child(2) { left: 70%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 45%; top: 75%; animation-delay: 4s; }
.particle:nth-child(4) { left: 30%; top: 30%; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(5) { left: 65%; top: 65%; animation-delay: 3s; width: 2px; height: 2px; }
.particle:nth-child(6) { left: 80%; top: 50%; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; top: 45%; animation-delay: 6s; width: 2px; height: 2px; }

@keyframes lightBreath {
    0% { opacity: 0.6; transform: translateX(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
@keyframes rayShift { 0% { opacity: 0.5; } 100% { opacity: 1; } }
@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20% { opacity: 0.5; }
    50% { opacity: 0.3; transform: translateY(-60px); }
    80% { opacity: 0.5; }
}

.hero-content {
    position: relative; z-index: 2;
    padding: 2rem; max-width: 820px;
}

.hero-question-wrapper {
    height: 2.8rem; overflow: hidden;
    margin-bottom: 2rem; opacity: 0;
    animation: fadeInDown 1s ease 0.3s forwards;
}
.hero-question-track { animation: questionRotate 16s ease-in-out infinite; }
.hero-question {
    height: 2.8rem;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-weight: 300;
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255,255,255,0.50); letter-spacing: 0.06em;
}

@keyframes questionRotate {
    0%, 20%    { transform: translateY(0); }
    25%, 45%   { transform: translateY(-2.8rem); }
    50%, 70%   { transform: translateY(-5.6rem); }
    75%, 95%   { transform: translateY(-8.4rem); }
    100%       { transform: translateY(-11.2rem); }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white); line-height: 1.1;
    margin-bottom: 0.6rem; opacity: 0;
    animation: fadeInUp 1.2s ease 0.6s forwards;
}
.hero h1 em {
    color: var(--gold-light); font-style: italic; position: relative;
}
.hero h1 em::after {
    content: ''; position: absolute; inset: -10px -20px;
    background: radial-gradient(ellipse, rgba(232, 198, 116, 0.14) 0%, transparent 70%);
    z-index: -1; border-radius: 50%;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    color: rgba(255,255,255,0.55); line-height: 1.6;
    max-width: 580px; margin: 1.5rem auto 2.5rem;
    opacity: 0; animation: fadeInUp 1.2s ease 0.9s forwards;
}

.hero-scripture {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 500;
    font-size: 1.1rem; color: var(--gold);
    margin-bottom: 3rem; opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-cta-group {
    display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: fadeInUp 1s ease 1.3s forwards;
}
.hero-btn {
    display: inline-block; padding: 1.05rem 2.8rem;
    background: var(--gold); color: var(--white);
    text-decoration: none; font-family: 'Outfit', sans-serif;
    font-weight: 500; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: all 0.4s ease;
}
.hero-btn:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 150, 62, 0.35);
    color: var(--white); text-decoration: none;
}
.hero-btn-ghost {
    display: inline-block; padding: 1.05rem 2.8rem;
    border: 1px solid rgba(200, 150, 62, 0.4);
    color: var(--gold-light); text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 400; font-size: 0.85rem;
    letter-spacing: 0.12em; text-transform: uppercase;
    transition: all 0.4s ease;
}
.hero-btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(200, 150, 62, 0.08);
    color: var(--gold-light); text-decoration: none;
}

.hero-scroll-hint {
    position: absolute; bottom: 2.5rem;
    left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    opacity: 0; animation: fadeInUp 1s ease 2s forwards;
}
.hero-scroll-hint span {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}
.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(200, 150, 62, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ─── BRIDGE ─── */
.bridge {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-warm) 30%, var(--cream) 100%);
    text-align: center;
}
.bridge-inner { max-width: 700px; margin: 0 auto; }
.bridge-verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 500;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--gold-light); line-height: 1.6; margin-bottom: 1rem;
}
.bridge-ref {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(200, 150, 62, 0.5); margin-bottom: 3rem;
}
.bridge-text {
    font-size: 1.1rem; color: var(--text-light); line-height: 1.9;
    max-width: 600px; margin: 0 auto;
}
.bridge-text strong { color: var(--text); font-weight: 500; }

/* ─── SECTIONS ─── */
section { padding: 6rem 2rem; }
.section-inner { max-width: 900px; margin: 0 auto; }
.section-label {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 1rem;
}
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem;
}
.section-text {
    font-size: 1.05rem; color: var(--text-light);
    max-width: 650px; line-height: 1.8;
}

/* ─── WELKOM ─── */
.welkom { background: var(--white); }
.welkom-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem; margin-top: 3.5rem;
}
.welkom-card {
    padding: 2.2rem 1.8rem; background: var(--cream);
    border-radius: 2px; transition: all 0.4s ease; position: relative;
}
.welkom-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 40px; height: 2px; background: var(--gold);
}
.welkom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.welkom-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.35rem;
    color: var(--dark); margin-bottom: 0.8rem;
}
.welkom-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ─── GETUIGENIS ─── */
.getuigenis {
    background: var(--dark-warm); padding: 6rem 2rem;
    position: relative; overflow: hidden;
}
.getuigenis::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 500px 400px at 50% 50%, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
}
.getuigenis-inner {
    max-width: 750px; margin: 0 auto;
    text-align: center; position: relative; z-index: 2;
}
.getuigenis-quote { position: relative; }
.getuigenis-quote::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem; color: rgba(200, 150, 62, 0.12);
    position: absolute; top: -3.5rem; left: 50%; transform: translateX(-50%);
    line-height: 1;
}
.getuigenis-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-weight: 400;
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 2rem;
}
.getuigenis-divider {
    width: 40px; height: 1.5px; background: var(--gold);
    margin: 0 auto 1.5rem; opacity: 0.6;
}
.getuigenis-author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold);
}

/* ─── OVER ONS ─── */
.over-ons { background: var(--cream); }
.over-ons-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: start; margin-top: 3rem;
}
.promise-item {
    display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start;
}
.promise-icon {
    flex-shrink: 0; width: 36px; height: 36px;
    background: var(--gold-glow); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 0.9rem; margin-top: 2px;
}
.promise-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.15rem; color: var(--dark);
    margin-bottom: 0.3rem;
}
.promise-item p { font-size: 0.9rem; color: var(--text-light); }

.over-ons-right {
    background: var(--dark-warm); padding: 3rem; color: var(--white); position: relative;
}
.over-ons-right::before {
    content: '\201C'; position: absolute; top: 1rem; left: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem; color: rgba(200, 150, 62, 0.2); line-height: 1;
}
.over-ons-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.5rem; margin-bottom: 1.2rem;
    color: var(--gold-light);
}
.over-ons-right p {
    font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.75);
}

/* ─── DIENSTEN BANNER ─── */
.diensten-banner {
    background: var(--dark); padding: 5rem 2rem;
    text-align: center; position: relative; overflow: hidden;
}
.diensten-banner::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
}
.diensten-banner .section-inner { position: relative; z-index: 2; }
.diensten-banner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white); margin-bottom: 1rem;
}
.diensten-banner h2 em { color: var(--gold-light); font-style: italic; }
.diensten-details {
    display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem;
}
.diensten-detail { text-align: center; }
.diensten-detail .label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.4rem;
}
.diensten-detail .value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; color: var(--white);
}
.diensten-cta { margin-top: 2.5rem; }

/* ─── CONTACT ─── */
.contact { background: var(--white); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; margin-top: 3rem;
}
.contact-item { margin-bottom: 2rem; }
.contact-item .label {
    font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 0.5rem;
}
.contact-item p, .contact-item a {
    font-size: 1.05rem; color: var(--text); text-decoration: none; line-height: 1.7;
}
.contact-item a:hover { color: var(--gold); }
.contact-right { background: var(--cream); padding: 2.5rem; }
.contact-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; font-size: 1.5rem; color: var(--dark); margin-bottom: 1rem;
}
.contact-right p {
    font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem;
}
.contact-bank {
    padding: 1.2rem; background: var(--white); border-left: 3px solid var(--gold);
}
.contact-bank .label {
    font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 0.3rem;
}
.contact-bank p { font-size: 0.95rem; color: var(--text); margin-bottom: 0; font-weight: 400; }

/* ─── FOOTER ─── */
.site-footer {
    background: var(--dark); padding: 3rem 2rem; text-align: center;
}
.site-footer p { font-size: 0.8rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.site-footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-divider {
    width: 40px; height: 1px; background: var(--gold);
    margin: 0 auto 1.5rem; opacity: 0.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .nav-links {
        display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15, 13, 10, 0.97);
        flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    }
    .nav-links.open { display: flex; }
    .nav-links.open a { color: var(--white) !important; font-size: 1.1rem; }
    .hamburger { display: flex; }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--white) !important; }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--white) !important; }
    .welkom-grid { grid-template-columns: 1fr; }
    .over-ons-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    section { padding: 4rem 1.5rem; }
    .bridge { padding: 4rem 1.5rem; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .hero-question-wrapper { height: 2.4rem; }
    .hero-question { height: 2.4rem; }
    @keyframes questionRotate {
        0%, 20%    { transform: translateY(0); }
        25%, 45%   { transform: translateY(-2.4rem); }
        50%, 70%   { transform: translateY(-4.8rem); }
        75%, 95%   { transform: translateY(-7.2rem); }
        100%       { transform: translateY(-9.6rem); }
    }
}
