/* Lionsclub Eindhoven Den Elzent, site styles */

/* Inter, self-hosted.
   Two files instead of Google's forty-two: this is the variable font, so one
   file covers every weight from 400 to 900, and the unicode-range still keeps a
   browser from fetching latin-ext unless a page needs it. Self-hosting also
   takes fonts.googleapis.com and fonts.gstatic.com off the critical path, which
   was two DNS lookups and two TLS handshakes before the first glyph appeared. */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    src: url('/assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}


:root {
    --lions-blue: #00338D;          /* Lions International primary blue */
    --lions-blue-deep: #001E62;
    --lions-blue-light: #003F87;
    --lions-gold: #FDB913;          /* Lions International primary gold */
    --lions-gold-light: #FFD24D;
    --lions-gold-dark: #E0A800;
    --dark: #0A0E27;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

:root { color-scheme: light; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: var(--gray-700); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
:focus-visible { outline: 3px solid var(--lions-gold); outline-offset: 2px; border-radius: 4px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.is-hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Navigation ---------- */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s ease; }
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.nav-logo-mark { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark img { width: 100%; height: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.nav-logo-text strong { font-size: 1rem; color: var(--lions-blue); font-weight: 800; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-logo-text span { font-size: 0.7rem; color: var(--gray-500); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--lions-blue); }
.nav-cta { background: var(--lions-gold); color: var(--lions-blue-deep) !important; white-space: nowrap; padding: 10px 22px; border-radius: 8px; font-weight: 700 !important; font-size: 0.88rem !important; transition: all 0.2s; }
.nav-cta:hover { background: var(--lions-gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--lions-blue); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ---------- Language switcher ---------- */
.lang-switch { display: flex; align-items: center; gap: 2px; background: var(--gray-100); border: 1px solid var(--gray-200); border-radius: 100px; padding: 3px; flex-shrink: 0; }
.lang-btn { display: flex; align-items: center; gap: 6px; padding: 5px 10px; border: none; background: none; border-radius: 100px; cursor: pointer; font-family: inherit; font-size: 0.78rem; font-weight: 700; color: var(--gray-500); letter-spacing: 0.4px; transition: all 0.2s; }
.lang-btn:hover { color: var(--lions-blue); }
.lang-btn .flag { width: 20px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.12); flex-shrink: 0; display: block; }
.lang-btn[aria-pressed="true"] { background: var(--white); color: var(--lions-blue); box-shadow: var(--shadow-sm); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.3s ease; text-align: center; justify-content: center; font-family: inherit; }
.btn-primary { background: var(--lions-gold); color: var(--lions-blue-deep); }
.btn-primary::after, .nav-cta::after, .form-submit::after { content: "\2192"; font-weight: 700; }
.nav-cta::after { margin-left: 6px; }
.form-submit::after { margin-left: 8px; }
.btn-primary:hover { background: var(--lions-gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(253,185,19,0.4); }
.btn-secondary { background: rgba(255,255,255,0.1); color: var(--white); border: 2px solid rgba(255,255,255,0.25); }
.btn-secondary:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--lions-blue); border: 2px solid var(--lions-blue); }
.btn-outline:hover { background: var(--lions-blue); color: var(--white); }

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; align-items: center; background: linear-gradient(135deg, #001E62 0%, #00338D 50%, #0056B3 100%); overflow: hidden; padding: 150px 0 90px; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(253,185,19,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(253,185,19,0.08) 0%, transparent 70%); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(253,185,19,0.15); border: 1px solid rgba(253,185,19,0.3); color: var(--lions-gold); padding: 8px 18px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--lions-gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 24px; letter-spacing: -1.5px; }
.hero h1 .highlight { color: var(--lions-gold); position: relative; display: inline-block; }
.hero h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px; background: var(--lions-gold); opacity: 0.3; border-radius: 2px; }
.hero p.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,0.82); margin-bottom: 36px; max-width: 560px; line-height: 1.7; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); flex-wrap: wrap; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 2.1rem; font-weight: 900; color: var(--lions-gold); line-height: 1; }
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; font-weight: 500; }
.hero-visual { position: relative; }
.hero-card { background: rgba(255,255,255,0.08); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 36px; color: var(--white); }
.hero-card-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 22px; color: var(--lions-gold); display: flex; align-items: center; gap: 10px; }
.hero-card-event { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 18px 20px; margin-bottom: 14px; border-left: 3px solid var(--lions-gold); transition: all 0.2s; }
.hero-card-event:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
.hero-card-event-date { font-size: 0.76rem; color: var(--lions-gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; }
.hero-card-event-title { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.hero-card-event-desc { font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.hero-card-cta { text-align: center; margin-top: 18px; font-size: 0.86rem; color: rgba(255,255,255,0.6); }
.hero-card-cta a { color: var(--lions-gold); font-weight: 600; }

/* ---------- Section scaffolding ---------- */
section { padding: 96px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-tag { display: inline-block; background: rgba(0,51,141,0.08); color: var(--lions-blue); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 8px 20px; border-radius: 100px; margin-bottom: 20px; }
.section-header h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; }

/* ---------- Impact bands (Lions NL + International) ---------- */
.impact { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 72px 0; }
.impact-band + .impact-band { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--gray-300); }
.impact-band-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.impact-band-head h3 { font-size: 1.15rem; font-weight: 800; color: var(--gray-600); letter-spacing: -0.2px; }
.impact-band-head .impact-source { font-size: 0.8rem; color: var(--gray-400); }
.impact-band-head .impact-source a { color: var(--gray-500); text-decoration: underline; text-decoration-color: var(--gray-300); }
.impact-band-head .impact-source a:hover { color: var(--lions-blue); }
.impact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.impact-stat { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 26px 22px; text-align: center; }
.impact-stat-num { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 900; color: var(--gray-600); line-height: 1.05; letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.impact-stat-label { font-size: 0.82rem; color: var(--gray-500); margin-top: 8px; font-weight: 500; line-height: 1.45; }
.impact-note { margin-top: 22px; font-size: 0.85rem; color: var(--gray-500); text-align: center; }
/* The international band keeps Lions blue so the two scales read differently. */
.impact-band--intl .impact-stat { background: var(--lions-blue-deep); border-color: var(--lions-blue-deep); }
.impact-band--intl .impact-stat-num { color: var(--lions-gold); }
.impact-band--intl .impact-stat-label { color: rgba(255,255,255,0.7); }

/* ---------- About ---------- */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.about-image { position: relative; border-radius: 24px; overflow: hidden; min-height: 420px; background: linear-gradient(135deg, var(--lions-blue-deep), var(--lions-blue-light)); display: flex; align-items: center; justify-content: center; }
.about-image-inner { text-align: center; color: rgba(255,255,255,0.9); padding: 40px; }
.about-image-inner .about-emblem { width: 240px; max-width: 72%; height: auto; margin: 0 auto 22px; }
.about-image-inner h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--lions-gold); }
.about-image-inner p { font-size: 0.98rem; color: rgba(255,255,255,0.7); }
.about-content { display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 800; color: var(--dark); letter-spacing: -1px; line-height: 1.2; margin-bottom: 24px; }
.about-content > p { font-size: 1.05rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: grid; gap: 20px; margin-top: 30px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(253,185,19,0.14); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.35rem; }
.about-feature-text h4 { font-size: 1.02rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.93rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- Activities ---------- */
.activities { background: var(--gray-50); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.activity-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 34px 28px; transition: all 0.3s ease; position: relative; overflow: hidden; }
.activity-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--lions-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.activity-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.activity-card:hover::before { transform: scaleX(1); }
.activity-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--lions-blue-deep), var(--lions-blue-light)); display: flex; align-items: center; justify-content: center; font-size: 1.55rem; margin-bottom: 22px; }
.activity-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.activity-card p { font-size: 0.96rem; color: var(--gray-500); line-height: 1.7; }

/* ---------- Why join ---------- */
.why-join { background: linear-gradient(135deg, #001E62 0%, #00338D 100%); position: relative; overflow: hidden; }
.why-join::before { content: ''; position: absolute; top: 20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(253,185,19,0.1) 0%, transparent 70%); border-radius: 50%; }
.why-join .section-header h2 { color: var(--white); }
.why-join .section-header p { color: rgba(255,255,255,0.72); }
.why-join .section-tag { background: rgba(253,185,19,0.15); color: var(--lions-gold); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }
.benefit-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.benefit-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(253,185,19,0.3); transform: translateY(-4px); }
.benefit-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(253,185,19,0.15); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 20px; }
.benefit-card h3 { font-size: 1.12rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.benefit-card p { font-size: 0.89rem; color: rgba(255,255,255,0.62); line-height: 1.6; }

/* ---------- Agenda ---------- */
.agenda { background: var(--white); }
.events-list { display: grid; gap: 18px; }
.event-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 28px; align-items: center; background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px 30px; transition: all 0.3s ease; }
.event-item:hover { border-color: var(--lions-gold); box-shadow: var(--shadow-lg); }
.event-date { text-align: center; border-right: 2px solid var(--gray-200); padding-right: 22px; }
.event-date-day { font-size: 2.1rem; font-weight: 900; color: var(--lions-blue); line-height: 1; font-variant-numeric: tabular-nums; }
.event-date-month { font-size: 0.8rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.event-date-year { font-size: 0.72rem; color: var(--gray-400); margin-top: 2px; }
.event-info h3 { font-size: 1.14rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.event-info p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 4px; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px; }
.event-tag { display: inline-block; background: rgba(253,185,19,0.14); color: #9A6C00; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.4px; }
.event-tag--vergadering { background: rgba(0,51,141,0.08); color: var(--lions-blue); }
.event-tag--actie { background: rgba(16,132,74,0.1); color: #10844A; }
.event-tag--webinar { background: rgba(100,116,139,0.12); color: var(--gray-600); }
.event-tag--members { background: var(--gray-100); color: var(--gray-500); }
.event-time { font-size: 0.82rem; color: var(--gray-500); font-weight: 600; }
.event-cta { background: var(--lions-blue); color: var(--white); padding: 12px 22px; border-radius: 10px; font-size: 0.86rem; font-weight: 600; white-space: nowrap; transition: all 0.2s; }
.event-cta:hover { background: var(--lions-blue-light); }
.agenda-foot { text-align: center; margin-top: 34px; font-size: 0.9rem; color: var(--gray-500); }
.agenda-foot a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); }
.data-empty { text-align: center; padding: 40px 20px; color: var(--gray-500); background: var(--gray-50); border: 1px dashed var(--gray-300); border-radius: 16px; }

/* ---------- Instagram slider ---------- */
.social-feed { background: var(--gray-50); }
.slider { position: relative; }
.slider-viewport { overflow: hidden; border-radius: 24px; }
.slider-track { display: flex; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.slider-track.no-anim { transition: none; }
.slide { min-width: 100%; }
.slide-card { position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: center; padding: 56px 64px; color: var(--white); overflow: hidden; }
.slide-card--blue { background: linear-gradient(135deg, #00338D 0%, #0B4FA8 100%); }
.slide-card--night { background: linear-gradient(135deg, #12161f 0%, #2b323f 100%); }
.slide-card--gold { background: linear-gradient(135deg, var(--lions-gold) 0%, var(--lions-gold-dark) 100%); color: var(--lions-blue-deep); }
.slide-card--photo { background: var(--lions-blue-deep); padding: 0; display: grid; grid-template-columns: minmax(0, 460px) 1fr; align-items: stretch; min-height: 480px; }
.slide-photo { display: flex; align-items: center; justify-content: center; overflow: hidden; background: rgba(0,0,0,0.22); }
.slide-photo img { width: 100%; height: 440px; object-fit: cover; }
.slide-photo-body { display: flex; flex-direction: column; justify-content: center; padding: 48px 56px; }
.slide-quote-mark { font-family: Georgia, 'Times New Roman', serif; font-size: 5rem; line-height: 1; color: var(--lions-gold); opacity: 0.9; margin-bottom: 8px; }
.slide-card--gold .slide-quote-mark { color: var(--lions-blue-deep); opacity: 0.35; }
.slide-quote { font-size: clamp(1.1rem, 2.1vw, 1.5rem); font-weight: 600; line-height: 1.55; max-width: 42ch; }
.slide-caption { margin-top: 18px; font-size: 0.95rem; line-height: 1.65; color: rgba(255,255,255,0.72); max-width: 55ch; }
.slide-card--gold .slide-caption { color: rgba(0,30,98,0.75); }
.slide-author { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.slide-avatar { width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; color: var(--lions-gold); flex-shrink: 0; }
.slide-card--gold .slide-avatar { background: rgba(0,30,98,0.12); color: var(--lions-blue-deep); }
.slide-author-name { font-weight: 700; font-size: 1rem; }
.slide-author-meta { font-size: 0.82rem; opacity: 0.72; }
.slide-link { margin-top: 24px; align-self: flex-start; font-size: 0.9rem; font-weight: 700; color: var(--lions-gold); border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.slide-link:hover { border-color: var(--lions-gold); }
.slide-card--gold .slide-link { color: var(--lions-blue-deep); }
.slide-card--gold .slide-link:hover { border-color: var(--lions-blue-deep); }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: none; background: var(--white); box-shadow: var(--shadow-lg); color: var(--lions-blue); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; z-index: 2; }
.slider-btn:hover { background: var(--lions-gold); color: var(--lions-blue-deep); }
.slider-btn--prev { left: 18px; }
.slider-btn--next { right: 18px; }
.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--gray-300); cursor: pointer; padding: 0; transition: all 0.2s; }
.slider-dot:hover { background: var(--gray-400); }
.slider-dot[aria-current="true"] { background: var(--lions-blue); width: 28px; border-radius: 5px; }
.social-feed-foot { text-align: center; margin-top: 30px; }
.ig-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--lions-blue); font-size: 0.98rem; }
.ig-link:hover { color: var(--lions-gold-dark); }
.ig-link svg { width: 22px; height: 22px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 34px 28px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.testimonial-card::before { content: '\201C'; position: absolute; top: 10px; right: 24px; font-family: Georgia, serif; font-size: 4rem; font-weight: 700; color: var(--lions-gold); opacity: 0.22; line-height: 1; }
.testimonial-text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--lions-blue-deep), var(--lions-blue-light)); display: flex; align-items: center; justify-content: center; color: var(--lions-gold); font-weight: 700; font-size: 1.05rem; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.testimonial-author-info h4 { font-size: 0.97rem; font-weight: 700; color: var(--dark); }
.testimonial-author-info p { font-size: 0.81rem; color: var(--gray-500); }

/* ---------- Meedoen (flyer content) ---------- */
.meedoen { background: var(--gray-50); }
.meedoen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.meedoen-card { background: var(--white); border: 1px solid var(--gray-200); border-left: 4px solid var(--lions-gold); border-radius: 16px; padding: 30px 30px; }
.meedoen-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--lions-blue); text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 14px; }
.meedoen-card ul { list-style: none; display: grid; gap: 9px; }
.meedoen-card li { font-size: 0.97rem; color: var(--gray-600); line-height: 1.6; padding-left: 22px; position: relative; }
.meedoen-card li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--lions-gold); }
.meedoen-slogan { margin-top: 34px; text-align: center; font-size: clamp(1.2rem, 2.6vw, 1.6rem); font-weight: 800; color: var(--lions-blue); font-style: italic; letter-spacing: -0.3px; }

/* ---------- Bestuur & commissies ---------- */
.board { background: var(--white); }
.board-group + .board-group { margin-top: 48px; }
.board-group h3 { font-size: 1.05rem; font-weight: 800; color: var(--gray-600); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; }
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 22px; }
.board-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 18px; padding: 26px 20px; text-align: center; transition: all 0.25s ease; }
.board-card:hover { border-color: var(--lions-gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.board-photo { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; background: var(--gray-200); display: block; }
.board-initials { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--lions-blue-deep), var(--lions-blue-light)); color: var(--lions-gold); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; letter-spacing: -1px; }
.board-name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.board-role { font-size: 0.85rem; color: var(--gray-500); margin-top: 3px; }
.board-commissions { margin: 44px 0 0; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 18px; padding: 32px 36px; }
.board-commissions h3 { text-align: left; margin-bottom: 12px; }
.board-commissions p { font-size: 0.98rem; color: var(--gray-600); line-height: 1.75; }
.board-commissions p + p { margin-top: 12px; }
.board-source { text-align: center; margin-top: 26px; font-size: 0.84rem; color: var(--gray-400); }
.board-source a { color: var(--gray-500); text-decoration: underline; text-decoration-color: var(--gray-300); }

/* ---------- Join CTA + form ---------- */
.join-form-section { padding: 96px 0; background: var(--gray-50); }
.join-form-wrapper { max-width: 640px; margin: 0 auto; background: var(--white); border-radius: 24px; padding: 46px; box-shadow: var(--shadow-xl); }
.join-form-wrapper h2 { font-size: 1.9rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 8px; }
.join-form-wrapper > p { text-align: center; color: var(--gray-500); margin-bottom: 32px; font-size: 1.02rem; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 0.89rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200); border-radius: 12px; font-size: 1rem; font-family: inherit; color: var(--gray-700); background: var(--gray-50); transition: all 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--lions-gold); background: var(--white); box-shadow: 0 0 0 4px rgba(253,185,19,0.1); }
.form-group textarea { resize: vertical; min-height: 118px; }
.form-submit { width: 100%; background: var(--lions-blue); color: var(--white); padding: 18px; border-radius: 12px; font-size: 1.03rem; font-weight: 700; border: none; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.form-submit:hover:not(:disabled) { background: var(--lions-blue-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.form-submit:disabled { opacity: 0.65; cursor: progress; }
.form-note { margin-top: 16px; text-align: center; font-size: 0.85rem; color: var(--gray-500); }
.form-note a { color: var(--lions-blue); font-weight: 600; }
.form-feedback { display: none; text-align: center; padding: 36px; }
.form-feedback.show { display: block; }
.form-feedback-icon { width: 70px; height: 70px; border-radius: 50%; background: rgba(34,197,94,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 1.9rem; }
.form-feedback h3 { font-size: 1.45rem; color: var(--dark); margin-bottom: 8px; }
.form-feedback p { color: var(--gray-500); }

/* ---------- Footer ---------- */
footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand .footer-logo { width: 200px; height: auto; margin-bottom: 18px; }
.footer-brand h3 { color: var(--white); font-size: 1.22rem; font-weight: 800; margin-bottom: 12px; }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; max-width: 330px; }
.footer-col h4 { color: var(--white); font-size: 0.93rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--lions-gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: all 0.2s; }
.footer-social a:hover { background: var(--lions-gold); color: var(--lions-blue-deep); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Scroll reveal ---------- */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
    .fade-in { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 0.86rem; }
    .nav-logo-text strong { font-size: 0.92rem; }
    .nav-logo-text span { display: none; }
}
/* Below this the bar cannot hold everything on one line, so it becomes a menu. */
@media (max-width: 1060px) {
    .nav-inner { padding: 12px 20px; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 14px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
    .nav-links.show { display: flex; }
    .nav-links a { font-size: 1rem; }
    .nav-links .nav-cta { text-align: center; justify-content: center; }
    .nav-logo-text span { display: block; }
    .nav-toggle { display: flex; }
}
@media (max-width: 968px) {
    .hero { padding: 130px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .activities-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-grid { grid-template-columns: 1fr; }
    .meedoen-grid { grid-template-columns: 1fr; }
    .event-item { grid-template-columns: 76px 1fr; gap: 18px; }
    .event-cta { grid-column: 1 / -1; width: 100%; text-align: center; margin-top: 6px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 24px; }
    .hero-stat-num { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .join-form-wrapper { padding: 32px 24px; }
    .slide-card { padding: 42px 36px; min-height: 340px; }
    .slide-card--photo { grid-template-columns: 1fr; padding: 0; min-height: 0; }
    .slide-photo img { height: 280px; }
    .slide-photo-body { padding: 34px 36px 40px; }
    .slider-btn--prev { left: 8px; }
    .slider-btn--next { right: 8px; }
}
@media (max-width: 568px) {
    section { padding: 64px 0; }
    .hero { padding: 120px 0 56px; }
    .hero-stats { gap: 20px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .event-item { grid-template-columns: 66px 1fr; padding: 20px; }
    .event-date { padding-right: 14px; }
    .event-date-day { font-size: 1.7rem; }
    .impact { padding: 56px 0; }
    .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .slide-card { padding: 34px 26px; min-height: 320px; }
    .slide-quote-mark { font-size: 3.4rem; }
    .board-commissions { padding: 24px 22px; }
    .nav-logo-text span { display: none; }
    .nav-logo-mark { width: 38px; height: 38px; }
    .nav-logo-text strong { font-size: 0.84rem; }
    .nav-inner { padding: 10px 16px; gap: 10px; }
    .nav-right { gap: 10px; }
    .lang-btn { padding: 5px 7px; font-size: 0.72rem; gap: 4px; }
    .lang-btn .flag { width: 17px; height: 12px; }
    .nav-toggle { padding: 8px 0; }
}

/* ==========================================================================
   Conversion additions
   ========================================================================== */

.skip-link {
    position: absolute; left: 16px; top: -60px; z-index: 1100;
    background: var(--lions-blue); color: var(--white);
    padding: 12px 20px; border-radius: 0 0 8px 8px; font-weight: 600; font-size: 0.9rem;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Hero: honest date + proof line instead of ten figures ---------- */
.hero-nextdate {
    margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
    background: rgba(253,185,19,0.12); border: 1px solid rgba(253,185,19,0.32);
    color: var(--lions-gold); padding: 10px 18px; border-radius: 10px;
    font-size: 0.92rem; font-weight: 600;
}
.hero-proof {
    margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-proof p { font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.78); max-width: 52ch; }
.hero-proof strong { color: var(--lions-gold); font-weight: 800; }

/* ---------- Mid-page conversion block ---------- */
/* A full-width band rather than a card, so the heading sits on the same line as
   every other section's content. As a card its inner padding pushed the text
   48px further in than the cards and lists above and below it. */
.mid-cta { padding: 0; background: linear-gradient(135deg, var(--lions-gold) 0%, var(--lions-gold-dark) 100%); }
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px 40px; flex-wrap: wrap; padding: 58px 0; }
.mid-cta-copy { flex: 1 1 380px; min-width: 0; }
.mid-cta h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; letter-spacing: -0.6px; color: var(--lions-blue-deep); margin-bottom: 10px; }
.mid-cta p { font-size: 1.05rem; color: rgba(0,30,98,0.78); line-height: 1.65; max-width: 52ch; }
.mid-cta .btn-primary { flex-shrink: 0; background: var(--lions-blue-deep); color: var(--white); }
.mid-cta .btn-primary:hover { background: var(--dark); box-shadow: 0 10px 28px rgba(0,30,98,0.28); }

/* The story pages have no coloured bands around this, so there it stays a box. */
.cause-cta .mid-cta-inner {
    background: linear-gradient(135deg, #001E62 0%, #00338D 100%);
    border-radius: 24px; padding: 44px 48px; color: var(--white);
}
.cause-cta .mid-cta-inner p { color: rgba(255,255,255,0.78); }
.cause-cta .btn-primary { background: var(--lions-gold); color: var(--lions-blue-deep); }

/* ---------- Activities: three cards plus a prose line ---------- */
.activities-grid { grid-template-columns: repeat(3, 1fr); }
.activities-note {
    margin: 34px auto 0; max-width: 70ch; text-align: center;
    font-size: 1.02rem; color: var(--gray-500); line-height: 1.75;
}

/* ---------- Friends mailing list ---------- */
.friends {
    margin-top: 34px; background: var(--white); border: 1px solid var(--gray-200);
    border-top: 4px solid var(--lions-gold); border-radius: 20px; padding: 34px 36px;
    box-shadow: var(--shadow-md);
}
.friends-copy h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.friends-copy p { font-size: 1rem; color: var(--gray-600); line-height: 1.7; max-width: 62ch; }
.friends-form { margin-top: 22px; }
.friends-fields { display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; align-items: end; }
.friends-fields .form-group { margin-bottom: 0; }
.friends-submit { white-space: nowrap; padding: 14px 26px; }
.form-privacy { margin-top: 14px; font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* ---------- Agenda: guest-first labelling ---------- */
.event-item--internal { opacity: 0.92; background: var(--gray-50); }
.event-item--internal:hover { border-color: var(--gray-300); box-shadow: none; }
.event-tag--guests { background: rgba(16,132,74,0.1); color: #0E7A48; }
.event-location { font-weight: 600; color: var(--gray-600) !important; }
.agenda-actions {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    flex-wrap: wrap; margin-top: 32px;
}
.agenda-internal-toggle {
    background: none; border: none; font-family: inherit; font-size: 0.9rem;
    color: var(--gray-500); cursor: pointer; text-decoration: underline;
    text-decoration-color: var(--gray-300); text-underline-offset: 3px; padding: 8px 4px;
}
.agenda-internal-toggle:hover { color: var(--lions-blue); }
.agenda-internal { margin-top: 26px; }
.agenda-internal-note {
    font-size: 0.88rem; color: var(--gray-500); margin-bottom: 16px; text-align: center;
}
.agenda-internal .events-list { gap: 12px; }
.agenda-updated { margin-top: 26px; font-size: 0.86rem; color: var(--gray-500); text-align: center; }
.agenda-updated a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); }

.faq-more { max-width: 820px; margin: 26px auto 0; text-align: center; font-size: 0.98rem; color: var(--gray-500); line-height: 1.7; }
.faq-more a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; }
.faq-more a:hover { text-decoration-color: var(--lions-blue); }
.activities-note a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: 14px; background: var(--gray-50); overflow: hidden; }
.faq-item[open] { background: var(--white); border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.faq-item summary {
    cursor: pointer; padding: 20px 54px 20px 24px; font-size: 1.04rem; font-weight: 700;
    color: var(--dark); list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
    font-size: 1.5rem; font-weight: 400; color: var(--lions-blue); line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item summary:hover { color: var(--lions-blue); }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; max-width: 68ch; }

/* ---------- Sign-up form: visible choices, reassurance, authority ---------- */
.join-form-wrapper { max-width: 720px; }
.join-form-lead { text-align: center; color: var(--gray-500); margin-bottom: 32px; font-size: 1.04rem; }
.choice-set { border: none; padding: 0; margin: 0 0 26px; }
.choice-set legend {
    font-size: 0.9rem; font-weight: 600; color: var(--gray-700); margin-bottom: 12px; padding: 0;
}
.choice-grid { display: grid; gap: 12px; }
.choice {
    display: flex; gap: 14px; align-items: flex-start; cursor: pointer;
    border: 2px solid var(--gray-200); border-radius: 14px; padding: 16px 18px;
    background: var(--gray-50); transition: all 0.18s ease;
}
.choice:hover { border-color: var(--gray-300); background: var(--white); }
.choice input { margin: 3px 0 0; width: 20px; height: 20px; accent-color: var(--lions-blue); flex-shrink: 0; }
.choice:has(input:checked) { border-color: var(--lions-blue); background: var(--white); box-shadow: 0 0 0 3px rgba(0,51,141,0.08); }
.choice:has(input:focus-visible) { outline: 3px solid var(--lions-gold); outline-offset: 2px; }
.choice-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.choice-title { font-weight: 700; color: var(--dark); font-size: 1rem; }
.choice-note { font-size: 0.9rem; color: var(--gray-500); line-height: 1.55; }
.form-optional { font-weight: 400; color: var(--gray-400); }
.form-reassure { list-style: none; margin: 22px 0 0; display: grid; gap: 9px; }
.form-reassure li {
    position: relative; padding-left: 26px; font-size: 0.89rem; color: var(--gray-600); line-height: 1.6;
}
.form-reassure li::before {
    content: '✓'; position: absolute; left: 0; top: -1px;
    color: #0E7A48; font-weight: 700; font-size: 0.95rem;
}
.form-authority {
    margin-top: 20px; padding: 14px 18px; background: var(--gray-50);
    border-left: 3px solid var(--lions-blue); border-radius: 0 8px 8px 0;
    font-size: 0.86rem; color: var(--gray-600); line-height: 1.6;
}
.form-feedback-icon--error { background: rgba(239,68,68,0.1) !important; }

@media (max-width: 968px) {
    .mid-cta-inner { padding: 40px 0; }
    .cause-cta .mid-cta-inner { padding: 32px 26px; }
    .friends { padding: 26px 24px; }
    .friends-fields { grid-template-columns: 1fr; }
    .friends-submit { width: 100%; }
    .activities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 568px) {
    .faq-item summary { padding: 16px 46px 16px 18px; font-size: 0.98rem; }
    .faq-answer { padding: 0 18px 18px; }
    .hero-proof p { font-size: 0.95rem; }
}

/* ==========================================================================
   Goede doelen: generated story pages (scripts/build-causes.mjs)
   ========================================================================== */

/* Story pages have no scroll-spy nav, so the bar does not need to be fixed. */
.navbar--static { position: static; }
.navbar--static .nav-inner { padding: 14px 24px; }

.cause-page { background: var(--white); }
.cause-article { max-width: 780px; padding-top: 48px; padding-bottom: 24px; }
.cause-crumbs { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 28px; }
.cause-crumbs a { color: var(--gray-500); text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; }
.cause-crumbs a:hover { color: var(--lions-blue); }
.cause-crumbs span[aria-hidden] { margin: 0 4px; color: var(--gray-300); }

.cause-head { border-bottom: 1px solid var(--gray-200); padding-bottom: 30px; margin-bottom: 32px; }
.cause-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--lions-blue); margin-bottom: 14px; }
.cause-head h1 { font-size: clamp(1.9rem, 4.6vw, 2.7rem); font-weight: 900; color: var(--dark); letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; text-wrap: balance; }
.cause-summary { font-size: 1.15rem; color: var(--gray-600); line-height: 1.7; max-width: 62ch; }

.cause-facts { display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 26px; }
.cause-fact dt { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px; }
.cause-fact dd { font-size: 1.05rem; font-weight: 700; color: var(--lions-blue); margin: 0; }

.cause-image { width: 100%; height: auto; border-radius: 18px; margin-bottom: 32px; }
.cause-body p { font-size: 1.06rem; color: var(--gray-700); line-height: 1.85; margin-bottom: 20px; max-width: 68ch; }

.cause-links { margin-top: 36px; padding: 24px 28px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 16px; }
.cause-links h2 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-bottom: 12px; }
.cause-links ul { list-style: none; display: grid; gap: 9px; }
.cause-links a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; }
.cause-links a:hover { text-decoration-color: var(--lions-blue); }

/* The article above is 780px wide, so the call to action matches it instead of
   spanning the full container and hanging out on both sides. */
.cause-cta { padding: 84px 0 96px; }
.cause-cta .container { max-width: 780px; }
.cause-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }

/* Overview grid, reused for the homepage teaser. */
.cause-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.cause-card { display: flex; flex-direction: column; gap: 8px; background: var(--white); border: 1px solid var(--gray-200); border-top: 4px solid var(--lions-gold); border-radius: 16px; padding: 26px 24px; transition: all 0.25s ease; }
.cause-card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cause-card-meta { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--gray-400); }
.cause-card h2, .cause-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.cause-card p { font-size: 0.96rem; color: var(--gray-500); line-height: 1.65; flex-grow: 1; }
.cause-card-amount { font-size: 0.9rem; font-weight: 700; color: var(--lions-blue); margin-top: 4px; }

.causes-teaser { background: var(--gray-50); }
.causes-teaser-more { text-align: center; margin-top: 32px; }
.causes-teaser-more a { color: var(--lions-blue); font-weight: 700; font-size: 1rem; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 4px; }

.footer-bottom--simple { flex-direction: column; gap: 10px; text-align: center; }
.footer-bottom--simple a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.footer-bottom--simple a:hover { color: var(--lions-gold); }

@media (max-width: 568px) {
    .cause-article { padding-top: 32px; }
    .cause-links { padding: 20px 20px; }
}

/* ==========================================================================
   Standalone pages: 404 and the post-sign-up thank you.
   Kept here rather than inline so both pages stay CSP-clean and the shared
   tokens and buttons are reused instead of restated.
   ========================================================================== */

/* --- 404 --- */
.oops { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #001E62 0%, #00338D 55%, #0056B3 100%); padding: 72px 0; position: relative; overflow: hidden; }
.oops::before { content: ''; position: absolute; top: -40%; right: -15%; width: 720px; height: 720px; background: radial-gradient(circle, rgba(253,185,19,0.16) 0%, transparent 70%); border-radius: 50%; }
.oops-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; color: var(--white); }
.oops-logo { width: 232px; max-width: 66%; height: auto; margin-bottom: 30px; }
.oops-code { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--lions-gold); background: rgba(253,185,19,0.14); border: 1px solid rgba(253,185,19,0.3); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.oops-inner h1 { font-size: clamp(2rem, 5.2vw, 3rem); font-weight: 900; letter-spacing: -1.4px; line-height: 1.08; margin-bottom: 18px; }
.oops-inner h1 span { color: var(--lions-gold); }
.oops-lead { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 50ch; }
.oops-offer { margin-top: 32px; padding: 26px 28px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-left: 3px solid var(--lions-gold); border-radius: 16px; }
.oops-offer h2 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.oops-offer p { font-size: 1rem; color: rgba(255,255,255,0.78); line-height: 1.65; max-width: 52ch; }
.oops-next { margin-top: 14px; font-size: 0.95rem; font-weight: 600; color: var(--lions-gold); }
.oops-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.oops-links { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.16); font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.9; }
.oops-links a { color: var(--lions-gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.oops-en { margin-top: 22px; font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.6; }
.oops-en a { color: rgba(255,255,255,0.7); text-decoration: underline; }
@media (max-width: 568px) { .oops-offer { padding: 22px 20px; } }

/* --- bedankt --- */
.thanks { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #001E62 0%, #00338D 55%, #0056B3 100%); padding: 80px 0; }
.thanks-card { max-width: 660px; margin: 0 auto; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; padding: 48px 44px; color: var(--white); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.thanks-logo { width: 240px; max-width: 70%; height: auto; margin-bottom: 28px; }
.thanks-card h1 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); font-weight: 900; letter-spacing: -1px; line-height: 1.12; margin-bottom: 16px; }
.thanks-card h1 .highlight { color: var(--lions-gold); }
.thanks-card > p { font-size: 1.08rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 12px; }
.thanks-next { margin: 30px 0 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.15); }
.thanks-next h2 { font-size: 1.05rem; font-weight: 700; color: var(--lions-gold); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.thanks-next ul { list-style: none; display: grid; gap: 12px; }
.thanks-next li { position: relative; padding-left: 26px; font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.thanks-next li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 50%; background: var(--lions-gold); }
.thanks-next a { color: var(--lions-gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.thanks-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.thanks-en { margin-top: 28px; font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (max-width: 568px) { .thanks-card { padding: 32px 24px; } }

/* ==========================================================================
   The five Lions causes, and the click-to-play video
   ========================================================================== */

/* A strip rather than another card grid: the page already has enough of those,
   and these are five labels, not five stories. */
.themes { margin-top: 44px; padding: 32px 34px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 18px; }
.themes h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.themes-lead { font-size: 0.98rem; color: var(--gray-500); line-height: 1.7; max-width: 68ch; }
.themes-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-top: 24px; }
.theme { display: flex; gap: 12px; align-items: flex-start; }
.theme-icon { font-size: 1.5rem; line-height: 1.2; flex-shrink: 0; }
.theme-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.theme-name { font-weight: 700; color: var(--dark); font-size: 0.98rem; }
.theme-link { font-size: 0.86rem; color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; line-height: 1.45; }
.theme-link:hover { text-decoration-color: var(--lions-blue); }
.themes-source { margin-top: 22px; font-size: 0.82rem; color: var(--gray-400); }
.themes-source a { color: var(--gray-500); text-decoration: underline; text-decoration-color: var(--gray-300); }

.video-section { background: var(--white); }
.video-wrap { max-width: 900px; margin: 0 auto; }
.video-facade {
    position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
    border-radius: 20px; overflow: hidden; cursor: pointer;
    background: var(--lions-blue-deep); border: 0; padding: 0;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, filter 0.3s ease; }
.video-facade:hover img { transform: scale(1.03); filter: brightness(0.9); }
.video-facade:focus-visible { outline: 3px solid var(--lions-gold); outline-offset: 3px; }
.video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 84px; height: 84px; border-radius: 50%; background: var(--lions-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); transition: transform 0.25s ease, background 0.2s;
}
/* A triangle drawn with borders, so no extra asset is needed. */
.video-play::after {
    content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%);
    border-style: solid; border-width: 15px 0 15px 24px;
    border-color: transparent transparent transparent var(--lions-blue-deep);
}
.video-facade:hover .video-play { transform: translate(-50%, -50%) scale(1.08); background: var(--lions-gold-light); }
.video-caption {
    position: absolute; inset: auto 0 0 0; padding: 46px 26px 20px;
    background: linear-gradient(transparent, rgba(0,12,40,0.85));
    color: var(--white); font-size: 0.98rem; font-weight: 600; text-align: left;
}
.video-facade.is-playing { cursor: default; aspect-ratio: 16 / 9; }
.video-frame { width: 100%; height: 100%; border: 0; display: block; }
.video-note { margin-top: 16px; text-align: center; font-size: 0.85rem; color: var(--gray-500); }

@media (max-width: 568px) {
    .themes { padding: 24px 22px; }
    .video-play { width: 64px; height: 64px; }
    .video-play::after { border-width: 12px 0 12px 19px; }
    .video-caption { padding: 36px 18px 16px; font-size: 0.9rem; }
}

/* The quickest route to a real person, made scannable in the footer. Kept here
   rather than as a floating button: a fixed bubble covers content on a phone
   and competes with the one thing the page is actually asking for. */
.contact-wa { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-weight: 600; }
.contact-icon { width: 17px; height: 17px; flex-shrink: 0; }
.contact-wa:hover { color: var(--lions-gold); }

/* ---------- Steun ons werk ---------- */
.support-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin: 30px 0 8px; }
.support-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 18px; padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; }
.support-card--primary { background: var(--white); border-color: var(--lions-gold); border-top: 4px solid var(--lions-gold); }
.support-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); }
.support-card--primary .support-kicker { color: var(--lions-gold-dark); }
.support-card h2 { font-size: 1.22rem; font-weight: 800; color: var(--dark); letter-spacing: -0.3px; }
.support-card p { font-size: 0.98rem; color: var(--gray-600); line-height: 1.7; flex-grow: 1; }
.support-card .btn { align-self: flex-start; margin-top: 6px; }
.support-transparency { margin-top: 40px; }
.support-list { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.support-list li { padding-left: 22px; position: relative; }
.support-list li::before { content: ''; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--lions-gold); }
.support-list a { color: var(--lions-blue); font-weight: 600; text-decoration: underline; text-decoration-color: var(--gray-300); text-underline-offset: 3px; }
.support-list a:hover { text-decoration-color: var(--lions-blue); }
.cta-secondary { margin-top: 12px; font-size: 0.92rem; }
.cta-secondary a { color: var(--lions-gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.support-note { font-size: 0.86rem; color: var(--gray-500); line-height: 1.6; margin-top: 10px; }
