/* ===== GRONINGEN GEEFT — CORRECTED STYLESHEET ===== */
/* Fonts: Pilat Condensed (headings) + Roboto (body) */

/* Pilat Condensed — self-hosted */
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Thin.woff2') format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Book.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Regular.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-DemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Black.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Pilat Condensed'; src: url('../assets/fonts/PilatCondensed-Heavy.woff2') format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

/* Roboto — Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #2EAA2C;
    --primary-dark: #238B21;
    --primary-light: #5CBF5A;
    --primary-lighter: #D8F0D8;
    --dark: #1A1E12;
    --dark-light: #2A2E22;
    --bg-page: #F6F0EC;
    --bg-white: #FEFEFE;
    --bg-hero: #FEFEFE;
    --bg-green-light: #DEF6DE;
    --bg-dark: #1A1E12;
    --text: #1A1E12;
    --text-body: #4A4E44;
    --text-muted: #7A7E74;
    --text-white: #FFFFFF;
    --border: #E2E0DC;
    --border-light: #EDEBE8;
    --border-card: #E0DCD8;
    --shadow-sm: 0 1px 3px rgba(26,30,18,0.06);
    --shadow: 0 2px 12px rgba(26,30,18,0.08);
    --shadow-md: 0 8px 24px rgba(26,30,18,0.10);
    --shadow-lg: 0 16px 40px rgba(26,30,18,0.12);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Pilat Condensed', 'Arial Narrow', sans-serif;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg-page); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* --- Sections --- */
.section { padding: 80px 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 400; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--primary); margin-bottom: 14px;
    font-family: var(--font-display);
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--primary); }

.section-title {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900; /* Pilat Condensed Heavy for headings */
    color: #000000;
    line-height: 55px;
    margin-bottom: 14px;
}
.section-title .accent {
    font-style: normal;
    color: var(--primary);
    text-decoration: none;
}
.section-subtitle { font-family: var(--font-sans); font-weight: 400; font-size: 1rem; color: var(--text-body); max-width: 520px; line-height: 1.5; }
.section-subtitle--wide { max-width: 100%; }

/* Content h3 with green dot (reusable outside potje-card) */
.content-h3 { font-family: var(--font-display); font-size: 20px; font-weight: 900; line-height: 24px; color: #000; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.content-h3::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

/* Contact detail text */
.contact-text { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--text-body); line-height: 32px; }

/* Small document card text */
.doc-card-title { font-family: var(--font-display); font-size: 18px; font-weight: 900; color: #000; margin-bottom: 6px; }
.doc-card-meta { font-family: 'Roboto', sans-serif; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.doc-card-link { font-size: 12px; font-weight: 600; color: var(--primary); }

/* Caption text */
.caption-text { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--text-muted); text-align: center; }

.section-header { margin-bottom: 40px; }
.section-header.with-illustration { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.section-illustration { width: 170px; height: 166px; flex-shrink: 0; color: var(--primary); object-fit: contain; }

/* Dark variant */
.section--dark { background: var(--bg-dark); }
.section--dark .section-label { color: var(--primary); }
.section--dark .section-title { color: var(--text-white); }
.section--dark .section-title .accent { color: var(--text-white); font-style: normal; }
.section--dark .section-subtitle { color: rgba(255,255,255,0.55); }
.section--dark .section-illustration { color: rgba(255,255,255,0.12); }

/* --- Buttons --- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px; font-family: var(--font-sans); font-size: 0.8rem;
    font-weight: 600; border-radius: var(--radius-full); border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--text-white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(46,170,44,0.3); }
.btn-outline { background: white; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary-lighter); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--text-white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-icon { width: 16px; height: 16px; }

/* --- Navbar --- */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--bg-page); border-bottom: 1px solid var(--border-light); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 64px; position: relative; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 800; color: var(--dark); z-index: 1; }
.logo-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 28px; z-index: 1; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--text-body); padding: 8px 14px; border-radius: var(--radius); transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--dark); background: rgba(0,0,0,0.04); }
.nav-cta { padding: 9px 22px !important; background: var(--dark) !important; color: var(--text-white) !important; border-radius: var(--radius-full) !important; font-weight: 600 !important; }
.nav-cta:hover { background: #333 !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

/* --- Hero --- */
.hero { padding: 56px 0 72px; background: var(--bg-hero); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content { max-width: 500px; }
.hero-title {
    font-family: var(--font-display); font-size: 60px;
    font-weight: 900; color: #000000; line-height: 55px; margin-bottom: 36px; letter-spacing: -0.02em;
}
.hero-title .city-name { color: var(--primary); }
.hero-subtitle { font-family: 'Roboto', sans-serif; font-weight: 400; font-size: 14px; color: #000000; line-height: 24px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust { display: flex; flex-direction: column; gap: 5px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text-body); }
.trust-check { width: 20px; height: 20px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-check svg { width: 12px; height: 12px; color: white; }
.hero-images {
    position: relative; width: 500px; height: 500px; margin: 0 auto;
}
.hero-images::before {
    content: ''; position: absolute; top: 50%; left: 50%; width: 320px; height: 320px;
    transform: translate(-50%, -50%); border: 2px solid var(--primary); border-radius: 50%;
    pointer-events: none;
}
.hero-img-main, .hero-img-secondary {
    position: absolute; border-radius: 16px; overflow: hidden; background: var(--border-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hero-img-main { width: 240px; height: 180px; top: 20px; left: -10px; }
.hero-img-secondary:nth-child(2) { width: 240px; height: 180px; top: 20px; right: -10px; left: auto; }
.hero-img-secondary:nth-child(3) { width: 240px; height: 180px; bottom: 20px; left: 50%; transform: translateX(-50%); }
.hero-img-main img, .hero-img-secondary img { width: 100%; height: 100%; object-fit: cover; }

/* Rotate-in animation on page load */
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-30deg) scale(0.7); }
    to { opacity: 1; transform: rotate(0deg) scale(1); }
}
@keyframes rotateInCenter {
    from { opacity: 0; transform: translateX(-50%) rotate(30deg) scale(0.7); }
    to { opacity: 1; transform: translateX(-50%) rotate(0deg) scale(1); }
}
.hero-img-main { animation: rotateIn 1s ease-out forwards; }
.hero-img-secondary:nth-child(2) { animation: rotateIn 1s ease-out 0.2s forwards; opacity: 0; }
.hero-img-secondary:nth-child(3) { animation: rotateIn 1s ease-out 0.4s forwards; opacity: 0; }

/* --- Campaigns --- */
.campaigns-section { padding: 72px 0 40px; background: var(--bg-page); }
.campaigns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.campaign-card { background: var(--bg-white); border: 1px solid #000; border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.campaign-card:hover { transform: translateY(-4px); box-shadow: 0 0 16px rgba(46,170,44,0.4); }
.campaign-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--border-light); }
.campaign-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.campaign-card:hover .campaign-img img { transform: scale(1.04); }
.campaign-body { padding: 18px; }
.campaign-body h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.campaign-body p { font-size: 0.82rem; color: var(--text-body); line-height: 1.5; margin-bottom: 14px; }
.progress-bar { height: 5px; background: var(--border-light); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 3px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 14px; }
.progress-meta strong { color: var(--dark); font-weight: 700; }
.campaign-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; color: var(--primary); transition: gap var(--transition); }
.campaign-link:hover { gap: 12px; }

/* --- Stats Bar --- */
.stats-section { padding: 32px 0 48px; background: var(--bg-page); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: var(--primary); border-radius: var(--radius-lg); overflow: hidden; }
.stat-pill { padding: 28px 24px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 60px; font-weight: 900; color: var(--text-white); line-height: 1.1; margin-bottom: 2px; }
.stat-label { font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.7); }

/* --- Potjes (with SVG line icons) --- */
.potjes-section { padding: 72px 0; background: var(--bg-page); }
.potjes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.potje-card { background: var(--bg-white); border: 1px solid #000; border-radius: var(--radius-lg); padding: 24px 20px; transition: all var(--transition); text-align: center; }
.potje-card:hover { transform: translateY(-3px); box-shadow: 0 0 16px rgba(46,170,44,0.4); }
.potje-card.highlighted { border: 2px solid var(--primary); box-shadow: 0 4px 16px rgba(46,170,44,0.12); }
.potje-icon-svg { width: 60px; height: 60px; margin: 0 auto 14px; display: block; color: var(--primary); }
.potje-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: #000; margin-bottom: 6px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.potje-card h3::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.potje-card p { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--text-body); line-height: 24px; margin-bottom: 12px; }
.potje-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.potje-link:hover { gap: 8px; }

/* --- Impact (DARK bg, WHITE cards) --- */
.impact-section { padding: 80px 0; background: var(--bg-dark); }
.impact-description { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 480px; margin-bottom: 6px; line-height: 1.6; }
.impact-slider-row { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.impact-amount-display {
    display: inline-flex; align-items: center;
    background: var(--primary); color: var(--text-white);
    font-family: var(--font-display); font-size: 2rem; font-weight: 900;
    padding: 16px 48px; border-radius: var(--radius-lg); flex-shrink: 0;
}
.impact-slider {
    flex: 1; max-width: 100%; height: 5px;
    -webkit-appearance: none; appearance: none;
    background: rgba(255,255,255,0.15); border-radius: 3px; outline: none; cursor: pointer;
}
.impact-slider::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
    background: var(--primary); cursor: pointer; border: 3px solid var(--bg-dark); box-shadow: 0 0 0 2px var(--primary);
}
/* Impact cards on dark bg */
.impact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.impact-card {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg); padding: 24px 16px; text-align: center;
    transition: all var(--transition);
}
.impact-card:hover { transform: translateY(-2px); box-shadow: 0 0 16px rgba(46,170,44,0.3); border-color: var(--primary); }
.impact-card-number { font-family: var(--font-display); font-size: 40px; font-weight: 900; color: white; margin-bottom: 4px; }
.impact-card-text { font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); }

/* --- Stories (LIGHT bg, not dark) --- */
.stories-section { padding: 80px 0; background: var(--bg-white); }
.stories-bento { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 18px; margin-bottom: 40px; }
.story-card { background: var(--bg-page); border: 1px solid #000; border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.story-card:hover { transform: translateY(-4px); box-shadow: 0 0 16px rgba(46,170,44,0.4); }
.story-card.large { grid-row: span 2; }
.story-img { width: 100%; overflow: hidden; position: relative; }
.story-card.large .story-img { height: 280px; }
.story-card:not(.large) .story-img { height: 170px; }
.story-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.story-card:hover .story-img img { transform: scale(1.04); }
.story-img-tag { position: absolute; top: 12px; left: 12px; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: var(--radius-full); background: var(--primary); color: var(--text-white); }
.story-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: var(--radius-full); background: var(--primary); color: var(--text-white); margin-bottom: 8px; }
.story-body { padding: 18px; }
.story-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: #000; margin-bottom: 6px; }
.story-body p { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--text-body); line-height: 24px; margin-bottom: 10px; }
.story-link { font-size: 0.78rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.story-link:hover { gap: 8px; }
.stories-cta { text-align: center; }

/* --- About --- */
.about-section { padding: 96px 0; background: var(--bg-green-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: center; }
.about-illustration { display: flex; align-items: center; justify-content: center; color: var(--primary); order: 0; }
.about-illustration svg, .about-illustration img { width: 280px; height: 280px; object-fit: contain; transform: scaleX(-1); }
.about-content { order: 1; }
.about-content .section-title { margin-bottom: 18px; }
.about-content p { font-family: 'Roboto', sans-serif; font-size: 14px; color: var(--text-body); line-height: 24px; margin-bottom: 24px; }
.about-content .btn-outline { color: var(--primary); border-color: var(--primary); }

/* --- Page Header (for subpages) --- */
.page-header { background: var(--bg-hero); padding: 48px 0; border-bottom: 1px solid var(--border-light); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.6rem); color: var(--dark); margin-bottom: 10px; }
.page-header h1 .accent { color: var(--primary); }
.page-header p { font-size: 1rem; color: var(--text-body); max-width: 540px; line-height: 1.5; }

/* --- Donation Form --- */
.donation-page { padding: 48px 0 80px; background: var(--bg-page); }
.donation-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: start; }
.donation-form-card { background: var(--bg-white); border: 1px solid var(--border-card); border-radius: var(--radius-xl); padding: 32px; }
.donation-form-card h2 { font-family: var(--font-display); font-size: 1.3rem; color: var(--dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
    width: 100%; padding: 12px 16px; font-family: var(--font-sans); font-size: 0.88rem;
    color: var(--text); background: var(--bg-page); border: 2px solid var(--border);
    border-radius: var(--radius); transition: all var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(46,170,44,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }
.donation-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.amount-btn {
    padding: 12px; text-align: center; font-family: var(--font-sans); font-size: 0.95rem;
    font-weight: 700; background: var(--bg-page); border: 2px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: all var(--transition); color: var(--dark);
}
.amount-btn:hover { border-color: var(--primary); background: var(--primary-lighter); }
.amount-btn.active { border-color: var(--primary); background: var(--primary); color: var(--text-white); }
.donation-info h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--dark); margin-bottom: 16px; }
.donation-info p { color: var(--text-body); line-height: 1.7; margin-bottom: 16px; }

/* --- Contact Form --- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius); background: var(--primary-lighter); color: var(--primary); flex-shrink: 0; }
.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 2px; color: var(--dark); }
.contact-info-text p { font-size: 0.85rem; color: var(--text-body); }

/* --- Footer --- */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 56px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand .nav-logo span:not(.logo-dot) { color: var(--text-white); }
.footer-brand > p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-badges { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.anbi-badge { background: rgba(46,170,44,0.12); color: var(--primary-light); font-size: 0.62rem; font-weight: 700; padding: 3px 10px; border-radius: var(--radius-full); letter-spacing: 0.08em; border: 1px solid rgba(46,170,44,0.25); }
.footer-links h4 { color: var(--text-white); font-size: 0.82rem; font-weight: 700; margin-bottom: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-donate-btn { background: var(--primary); color: var(--text-white); padding: 9px 22px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; border: none; cursor: pointer; transition: all var(--transition); }
.footer-donate-btn:hover { background: var(--primary-dark); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .campaigns-grid { grid-template-columns: 1fr 1fr; }
    .potjes-grid { grid-template-columns: 1fr 1fr; }
    .impact-cards { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stories-bento { grid-template-columns: 1fr 1fr; }
    .story-card.large { grid-row: span 1; }
    .donation-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 60px 0; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-page); padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 999; }
    .campaigns-grid, .potjes-grid, .stories-bento { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .impact-cards { grid-template-columns: 1fr 1fr; }
    .impact-slider-row { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section-header.with-illustration { flex-direction: column; }
    .donation-amounts { grid-template-columns: repeat(2, 1fr); }
}

/* --- FAQ --- */
.faq-item { background: var(--bg-page); border: 1px solid var(--border-card); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--dark); line-height: 1.5; gap: 16px; transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--bg-page); display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: 1.1rem; color: var(--primary); font-weight: 400; }
.faq-item.open .faq-icon { background: var(--primary); color: var(--text-white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease; padding: 0 20px; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 20px 20px; }
.faq-answer p { font-size: 1rem; color: var(--text-body); line-height: 1.5; }

/* --- Theme Toggle Button --- */
.theme-toggle {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-full);
    padding: 6px 12px; font-size: 0.78rem; font-weight: 600; cursor: pointer;
    color: var(--text-body); transition: all var(--transition); font-family: var(--font-sans);
    white-space: nowrap; display: inline-flex; align-items: center; gap: 4px;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }

/* --- Language Mount --- */
#langMount { display: inline-flex; align-items: center; }
#langMount .lang-select,
#langMount .lang-selector {
    background: none; border: 1px solid var(--border); border-radius: var(--radius-full);
    padding: 6px 12px; font-size: 0.78rem; font-weight: 600; cursor: pointer;
    color: var(--text-body); font-family: var(--font-sans); transition: all var(--transition);
    appearance: none; -webkit-appearance: none; padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%237A7E74'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 8px center;
}
#langMount .lang-select:hover,
#langMount .lang-selector:hover { border-color: var(--primary); color: var(--primary); }

/* --- Dark Mode Theme --- */
[data-theme="dark"] {
    --bg-page: #1a1a1a;
    --bg-white: #2d2d2d;
    --bg-hero: #1a1a1a;
    --bg-green-light: #1e2e1e;
    --bg-dark: #111111;
    --dark: #f0f0f0;
    --dark-light: #e0e0e0;
    --text: #f0f0f0;
    --text-body: #b0b0b0;
    --text-muted: #888888;
    --text-white: #FFFFFF;
    --border: #3d3d3d;
    --border-light: #333333;
    --border-card: #3d3d3d;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
    --shadow: 0 2px 12px rgba(0,0,0,0.25);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.35);
}

[data-theme="dark"] .navbar {
    background: #1a1a1a;
    border-bottom-color: #333333;
}

[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a.active {
    background: rgba(255,255,255,0.08);
    color: #f0f0f0;
}

[data-theme="dark"] .nav-toggle span {
    background: #f0f0f0;
}

[data-theme="dark"] .nav-links.open {
    background: #1a1a1a;
    border-bottom-color: #333333;
}

[data-theme="dark"] .hero { background: #1a1a1a; }

[data-theme="dark"] .page-header {
    background: #1a1a1a;
    border-bottom-color: #333333;
}

[data-theme="dark"] .campaign-card {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .potje-card {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .potje-card.highlighted {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(46,170,44,0.2);
}

[data-theme="dark"] .story-card {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .impact-section {
    background: #111111;
}

[data-theme="dark"] .impact-card {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .impact-card-number {
    color: #f0f0f0;
}

[data-theme="dark"] .stat-pill {
    background: var(--primary);
}

[data-theme="dark"] .donation-form-card {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea,
[data-theme="dark"] .form-select {
    background: #1a1a1a;
    border-color: #3d3d3d;
    color: #f0f0f0;
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
    color: #666666;
}

[data-theme="dark"] .amount-btn {
    background: #1a1a1a;
    border-color: #3d3d3d;
    color: #f0f0f0;
}

[data-theme="dark"] .amount-btn:hover {
    border-color: var(--primary);
    background: #1e2e1e;
}

[data-theme="dark"] .amount-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

[data-theme="dark"] .faq-item {
    background: #2d2d2d;
    border-color: #3d3d3d;
}

[data-theme="dark"] .faq-question {
    color: #f0f0f0;
}

[data-theme="dark"] .faq-icon {
    background: #1a1a1a;
}

[data-theme="dark"] .footer {
    background: #111111;
}

[data-theme="dark"] .about-section {
    background: #1e2e1e;
}

[data-theme="dark"] .stories-section {
    background: #1a1a1a;
}

[data-theme="dark"] .campaigns-section {
    background: #1a1a1a;
}

[data-theme="dark"] .potjes-section {
    background: #1a1a1a;
}

[data-theme="dark"] .stats-section {
    background: #1a1a1a;
}

[data-theme="dark"] .donation-page {
    background: #1a1a1a;
}

[data-theme="dark"] .contact-info-icon {
    background: #1e2e1e;
}

[data-theme="dark"] .btn-outline {
    background: #2d2d2d;
    border-color: #3d3d3d;
    color: #f0f0f0;
}

[data-theme="dark"] .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] .btn-dark {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #f0f0f0;
}

[data-theme="dark"] .theme-toggle {
    border-color: #3d3d3d;
    color: #b0b0b0;
}

[data-theme="dark"] .theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

[data-theme="dark"] #langMount .lang-select,
[data-theme="dark"] #langMount .lang-selector {
    border-color: #3d3d3d;
    color: #b0b0b0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888888'/%3E%3C/svg%3E");
}

[data-theme="dark"] #langMount .lang-select:hover,
[data-theme="dark"] #langMount .lang-selector:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Simple Footer (wireframe style) --- */
.footer-simple { background: var(--bg-dark); color: rgba(255,255,255,0.6); padding: 28px 0 20px; }
.footer-simple-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-simple-left .btn { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.footer-simple-left .btn:hover { border-color: var(--primary); color: var(--primary); }
.footer-simple-nav { display: flex; align-items: center; gap: 24px; }
.footer-simple-nav a { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-simple-nav a:hover { color: var(--primary-light); }
.footer-simple-nav .nav-cta { padding: 9px 22px; background: var(--dark-light); color: var(--text-white); border-radius: var(--radius-full); font-weight: 600; font-size: 0.85rem; }
.footer-simple-nav .nav-cta:hover { background: var(--primary); }
.footer-simple-bottom { text-align: center; padding-top: 16px; margin-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); font-size: 0.75rem; color: rgba(255,255,255,0.25); }
[data-theme="dark"] .footer-simple { background: #111111; }

@media (max-width: 768px) {
    .footer-simple-inner { flex-direction: column; text-align: center; }
    .footer-simple-nav { flex-wrap: wrap; justify-content: center; }
}

/* --- Responsive story grid for projecten page --- */
@media (max-width: 1024px) {
    .cases-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 768px) {
    .cases-grid { grid-template-columns: 1fr !important; }
}

/* --- Dark Mode: Comprehensive text/icon fixes --- */
[data-theme="dark"] .section-title { color: #f0f0f0; }
[data-theme="dark"] .section-title .accent { color: var(--primary-light, #5CBF5A); }
[data-theme="dark"] .hero-title { color: #f0f0f0; }
[data-theme="dark"] .hero-title .city-name { color: var(--primary-light, #5CBF5A); }
[data-theme="dark"] .hero-subtitle { color: #b0b0b0; }
[data-theme="dark"] .section-label { color: var(--primary-light, #5CBF5A); }
[data-theme="dark"] .section-label::before { background: var(--primary-light, #5CBF5A); }
[data-theme="dark"] .section-subtitle { color: #a0a0a0; }
[data-theme="dark"] .potje-card h3 { color: #f0f0f0; }
[data-theme="dark"] .potje-card p { color: #a0a0a0; }
[data-theme="dark"] .campaign-body h3 { color: #f0f0f0; }
[data-theme="dark"] .campaign-body p { color: #a0a0a0; }
[data-theme="dark"] .story-body h3 { color: #f0f0f0; }
[data-theme="dark"] .story-body p { color: #a0a0a0; }
[data-theme="dark"] .about-content p { color: #a0a0a0; }
[data-theme="dark"] .about-content .section-title { color: #f0f0f0; }
[data-theme="dark"] .section-illustration { filter: brightness(0) invert(1); opacity: 0.85; }
[data-theme="dark"] .about-illustration img { filter: brightness(0) invert(1); opacity: 0.85; }
[data-theme="dark"] .trust-item { color: #b0b0b0; }
[data-theme="dark"] .progress-meta { color: #888888; }
[data-theme="dark"] .progress-meta strong { color: #f0f0f0; }
[data-theme="dark"] .content-h3 { color: #f0f0f0; }
[data-theme="dark"] .content-h3::before { background: var(--primary-light, #5CBF5A); }
[data-theme="dark"] .caption-text { color: #888888; }
[data-theme="dark"] .contact-text { color: #a0a0a0; }
[data-theme="dark"] .contact-info-text h4 { color: #f0f0f0; }
[data-theme="dark"] .contact-info-text p { color: #a0a0a0; }
[data-theme="dark"] .doc-card-title { color: #f0f0f0; }
[data-theme="dark"] .doc-card-meta { color: #888888; }
[data-theme="dark"] .donation-info h3 { color: #f0f0f0; }
[data-theme="dark"] .donation-info p { color: #a0a0a0; }
[data-theme="dark"] .nav-cta { background: #f0f0f0 !important; color: #1a1a1a !important; }
[data-theme="dark"] .nav-logo span:not(.logo-dot) { color: #f0f0f0; }
[data-theme="dark"] .footer-simple { background: #111111; }
[data-theme="dark"] .footer-simple-left .btn { border-color: #3d3d3d; color: #a0a0a0; }
[data-theme="dark"] .footer-simple-nav a { color: #888888; }
[data-theme="dark"] .footer-simple-nav .nav-cta { background: #2d2d2d; color: #f0f0f0; }
[data-theme="dark"] .footer-simple-bottom { color: #555555; border-top-color: #2d2d2d; }
[data-theme="dark"] .potje-icon-svg { filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(85deg); }
[data-theme="dark"] .page-header h1 { color: #f0f0f0; }
[data-theme="dark"] .page-header p { color: #a0a0a0; }
[data-theme="dark"] .faq-answer p { color: #a0a0a0; }

/* Google Translate cleanup */
.skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }
