/* =========================================
   JCI Doetinchem - Benefietgala
   Stylesheet
   ========================================= */

/* Self-hosted Open Sans (variable font, alle weights 100-900) */
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/open-sans-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+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 100 900;
    font-stretch: 100%;
    font-display: swap;
    src: url('../fonts/open-sans-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;
}

:root {
    /* JCI Doetinchem huisstijl kleuren */
    --jci-blue: #00A8E1;
    --jci-blue-dark: #0089B7;
    --jci-blue-darker: #006B8F;
    --jci-blue-light: #4FC3F0;
    --jci-blue-pale: #E6F6FC;
    --jci-orange: #F38B25;
    --jci-orange-dark: #D67315;
    --jci-orange-light: #F5A04A;

    /* Legacy variabele-namen, hergebruikt met JCI-kleuren */
    --navy-900: var(--jci-blue);
    --navy-800: var(--jci-blue-dark);
    --navy-700: var(--jci-blue-light, var(--jci-blue));
    --navy-50: var(--jci-blue-pale);
    --gold: var(--jci-orange);
    --gold-light: var(--jci-orange-light);
    --gold-dark: var(--jci-orange-dark);

    --cream: #ffffff;
    --ink: #2c2c2c;
    --ink-soft: #555555;
    --line: #e1e5ea;
    --white: #ffffff;

    /* JCI gebruikt 1 sans-serif font (Open Sans-stijl) */
    --font-serif: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-sans: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --container: 1200px;
    --container-narrow: 760px;

    --shadow-soft: 0 4px 16px rgba(0, 168, 225, 0.08);
    --shadow-md: 0 8px 28px rgba(0, 90, 130, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 90, 130, 0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
/* Subtiel vaste gradient achter de hele pagina. Content scrollt eroverheen,
   geeft een gevoel van diepte zoals bij de hero. */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 18% 22%, rgba(0, 168, 225, 0.045) 0%, transparent 38%),
        radial-gradient(circle at 82% 78%, rgba(243, 139, 37, 0.035) 0%, transparent 42%),
        radial-gradient(circle at 50% 50%, rgba(0, 168, 225, 0.025) 0%, transparent 50%);
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.2;
    color: var(--jci-blue);
    letter-spacing: 0;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

.lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 400;
}

.eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.center { display: block; text-align: center; }

.accent { color: var(--jci-orange); }
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }

a { color: var(--navy-700); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-dark); }

/* Layout */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container.narrow { max-width: var(--container-narrow); }

.section {
    padding: 5rem 0;
}
.section-compact {
    padding: 3rem 0;
}
.section-alt {
    background: var(--white);
}
.section-head {
    margin-bottom: 3rem;
}
.section-head .lead {
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.section-dark {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--jci-blue-darker) 50%, var(--navy-800) 100%);
    background-attachment: fixed;
    color: var(--white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}
.section-dark .light, .section-dark p.light { color: rgba(255, 255, 255, 0.85); }
.section-dark p { color: rgba(255, 255, 255, 0.75); }

/* Header / Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 240, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy-900);
}
.logo:hover { color: var(--navy-900); }
.logo-mark {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-text {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.1;
}
.logo-text small {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding: 0.25rem 0;
}
.main-nav a.active,
.main-nav a:hover {
    color: var(--jci-blue);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 2px;
    background: var(--jci-blue);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--navy-900);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 2px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}
.btn-primary {
    background: var(--jci-orange);
    color: #ffffff;
    border-color: var(--jci-orange);
}
.btn-primary:hover {
    background: var(--jci-orange-dark);
    border-color: var(--jci-orange-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}
.btn-secondary {
    background: var(--navy-900);
    color: var(--cream);
    border-color: var(--navy-900);
}
.btn-secondary:hover {
    background: transparent;
    color: var(--navy-900);
    transform: translateY(-1px);
}
.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost:hover {
    background: var(--cream);
    color: var(--navy-900);
    border-color: var(--cream);
}
.btn-lg { padding: 1.05rem 2.5rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* Hero */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    background:
        linear-gradient(135deg, var(--jci-blue-darker) 0%, var(--jci-blue-dark) 60%, var(--jci-blue) 100%);
}
.hero-sub-page { min-height: 50vh; }

/* Hero background slot. Vul hier per pagina een foto in (zie blok hieronder) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    pointer-events: none;
}
/* Mobiel ondersteunt background-attachment: fixed niet goed, dus overal uitschakelen. */
@media (max-width: 920px), (hover: none) {
    .hero-bg,
    .section-dark,
    .cta-band,
    .site-footer {
        background-attachment: scroll;
    }
}
/* === FOTO'S TOEVOEGEN ===
   Verwijder de comment-tekens en zet de juiste URL achter background-image.
   De donkere overlay zorgt automatisch voor leesbare tekst bovenop de foto. */
.hero-home .hero-bg {
    background-image: url('../images/JCI-hero-Vrienden-van-het-Slingeland.png');
    background-position: left center;
}
.hero-doel .hero-bg {
    background-image: url('../images/nieuwe ziekenhuis vooraanzicht.jpg');
}
.hero-tafels .hero-bg {
    /* background-image: url('../images/hero-tafels.jpg'); */
}
.hero-jci .hero-bg {
    /* background-image: url('../images/hero-jci.jpg'); */
}
.hero-sponsors .hero-bg {
    /* background-image: url('../images/hero-sponsors.jpg'); */
}
.hero-locatie .hero-bg {
    background-image: url('../images/kerk.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(0, 107, 143, 0.82) 0%, rgba(0, 137, 183, 0.62) 100%),
        radial-gradient(ellipse at 75% 30%, rgba(243, 139, 37, 0.15), transparent 55%);
    pointer-events: none;
}

/* Zwevende lichtbollen op donkere secties voor ambient beweging tijdens scrollen */
.hero::before,
.cta-band::after,
.section-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(243, 139, 37, 0.22) 0%, transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(79, 195, 240, 0.18) 0%, transparent 32%),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    pointer-events: none;
    z-index: 2;
    animation: ambientOrbs 22s ease-in-out infinite alternate;
}
.section-dark { position: relative; overflow: hidden; }
.section-dark > .container { position: relative; z-index: 3; }

@keyframes ambientOrbs {
    0% {
        transform: translate(-20px, -10px) scale(1);
        opacity: 0.85;
    }
    33% {
        transform: translate(15px, 8px) scale(1.08);
        opacity: 1;
    }
    66% {
        transform: translate(-10px, 18px) scale(0.95);
        opacity: 0.9;
    }
    100% {
        transform: translate(10px, -5px) scale(1.04);
        opacity: 0.95;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .cta-band::after,
    .section-dark::after {
        animation: none;
    }
}
.hero-sun {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 720px;
    height: 720px;
    pointer-events: none;
    opacity: 0.9;
    z-index: 2;
    animation: sunFloat 18s ease-in-out infinite;
}
@keyframes sunFloat {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(calc(-50% - 12px)) rotate(8deg); }
}

.save-the-date {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.65rem 1.4rem;
    border: 1px solid rgba(243, 139, 37, 0.65);
    border-radius: 2px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: var(--font-sans);
}
.std-day {
    font-size: 0.8rem;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.std-date {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.std-month {
    font-size: 1rem;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}
.std-year {
    font-size: 0.95rem;
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 760px;
}
.hero h1 { color: var(--cream); margin-bottom: 1.5rem; }
.hero .eyebrow { color: var(--gold-light); }
.hero-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.55;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cards / grid */
.grid {
    display: grid;
    gap: 1.5rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.card-bordered {
    background: transparent;
    border: 1px solid var(--line);
    box-shadow: none;
}
.card-bordered:hover {
    background: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}
.card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.info-cards .card {
    text-align: center;
}
.info-cards .card h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    font-family: var(--font-sans);
    font-weight: 600;
}
.info-cards .card p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy-900);
    line-height: 1.3;
}
.info-cards .card p small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 0.25rem;
}

/* Event highlights (homepage "Dit gaat er gebeuren") */
.event-highlights { gap: 1.5rem; }
.event-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 2rem 2rem 1.75rem;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.event-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.event-highlight-feature {
    background: var(--navy-900);
    color: var(--cream);
    border-left-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.event-highlight-feature h3 { color: var(--cream); }
.event-highlight-feature p { color: rgba(255, 255, 255, 0.82); }
.event-highlight-feature .event-num { color: var(--gold-light); }
.event-num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--gold-dark);
    line-height: 0.9;
    flex-shrink: 0;
    font-weight: 600;
    min-width: 60px;
}
.event-highlight-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.25;
}
.event-highlight-body p {
    margin: 0;
    font-size: 0.95rem;
}

/* Voorzitter / Chairman section */
.chairman {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
}
.chairman-photo {
    width: 100%;
}
.chairman-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    display: block;
    box-shadow: var(--shadow-md);
}
.chairman-text .eyebrow {
    margin-bottom: 1rem;
}
.chairman-text h2 {
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.3;
    margin-bottom: 1.75rem;
    color: var(--navy-900);
    position: relative;
    padding-left: 1.5rem;
}
.chairman-text h2::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-size: 4rem;
    color: var(--gold);
    font-family: var(--font-serif);
    line-height: 1;
}
.chairman-body p {
    margin-bottom: 0.85rem;
    color: var(--ink);
}
.chairman-signoff {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.chairman-signoff strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy-900);
    font-weight: 600;
}
.chairman-signoff span {
    font-size: 0.85rem;
    color: var(--ink-soft);
    letter-spacing: 0.05em;
}

/* Page navigator cards (homepage) */
.page-cards { gap: 1.75rem; }
.page-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 2.5rem;
    color: var(--ink);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
.page-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}
.page-card > * { position: relative; z-index: 1; }
.page-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    color: var(--cream);
}
.page-card:hover::before { opacity: 1; }
.page-card:hover h3 { color: var(--cream); }
.page-card:hover p { color: rgba(255, 255, 255, 0.8); }
.page-card:hover .page-card-eyebrow { color: var(--gold-light); }
.page-card:hover .page-card-link { color: var(--gold-light); }

.page-card-featured {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--cream);
}
.page-card-featured h3 { color: var(--cream); }
.page-card-featured p { color: rgba(255, 255, 255, 0.8); }
.page-card-featured .page-card-eyebrow { color: var(--gold-light); }
.page-card-featured .page-card-link { color: var(--gold-light); }
.page-card-featured::before {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.page-card-featured:hover h3 { color: var(--navy-900); }
.page-card-featured:hover p { color: var(--navy-900); }
.page-card-featured:hover .page-card-eyebrow { color: var(--navy-900); }
.page-card-featured:hover .page-card-link { color: var(--navy-900); }

.page-card-eyebrow {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}
.page-card h3 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.page-card p {
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}
.page-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gold-dark);
    transition: color 0.3s ease, gap 0.3s ease;
}
.page-card:hover .page-card-link { gap: 0.85rem; }
.page-card .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}
.page-card:hover .arrow { transform: translateX(4px); }

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}
.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
    animation: scrollHint 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollHint {
    0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Split sections */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split-image .image-placeholder {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--navy-50), var(--line));
    border-radius: 6px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-style: italic;
    box-shadow: var(--shadow-soft);
}

/* Program */
.program {
    max-width: 720px;
    margin: 2.5rem auto 0;
}
.program-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}
.program-item:last-child { border-bottom: 0; }
.program-time {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--gold-dark);
    font-weight: 600;
}
.program-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--jci-blue-darker) 50%, var(--navy-800) 100%);
    background-attachment: fixed;
    color: var(--cream);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(243, 139, 37, 0.14), transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(243, 139, 37, 0.08), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.75rem; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

/* Tafels (table sales) */
.tafel-grid {
    align-items: stretch;
}
.tafel-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 4px solid var(--line);
}
.tafel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tafel-featured {
    border-top-color: var(--gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}
.tafel-featured:hover { transform: scale(1.03) translateY(-4px); }

.tafel-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink-soft);
    color: var(--white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.4rem 1rem;
    font-weight: 600;
    border-radius: 2px;
}
.tafel-badge-gold { background: var(--jci-orange); color: #ffffff; }
.tafel-badge-platinum {
    background: linear-gradient(135deg, var(--jci-orange), var(--jci-orange-dark));
    color: #ffffff;
}

.tafel-card h3 {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}
.tafel-price {
    text-align: center;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.5rem;
}
.price-amount {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--navy-900);
    line-height: 1.1;
}
.price-meta {
    display: block;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 0.25rem;
}
.tafel-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.tafel-features li {
    padding: 0.55rem 0 0.55rem 1.75rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--ink);
    border-bottom: 1px dashed var(--line);
}
.tafel-features li:last-child { border-bottom: 0; }
.tafel-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

/* Form */
.form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    background: var(--cream);
    border-radius: 3px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
}
.form-field textarea {
    resize: vertical;
    min-height: 110px;
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.form-check input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--gold);
}
.form-check label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* Sponsors */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.sponsor-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.sponsor-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2rem 1rem;
    aspect-ratio: 3 / 2;
    display: grid;
    place-items: center;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sponsor-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
.sponsor-card-large {
    aspect-ratio: 2 / 1;
}
.logo-placeholder {
    color: var(--ink-soft);
    font-size: 0.85rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.friends-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.friend-name {
    background: var(--white);
    padding: 0.65rem 1.25rem;
    border-radius: 30px;
    border: 1px solid var(--line);
    font-size: 0.9rem;
    color: var(--ink);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--jci-blue-darker) 100%);
    background-attachment: fixed;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 4rem;
    margin-top: 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.site-footer h4 {
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}
.site-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.25rem 0;
    font-size: 0.95rem;
}
.site-footer a:hover { color: var(--gold-light); }
.site-footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Privacy / content-pagina lijsten */
.content-list {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0 1.25rem;
}
.content-list li {
    margin-bottom: 0.4rem;
    color: var(--ink);
}
.content-meta {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    color: var(--ink-soft);
    font-style: italic;
}

/* Location interior photo (locatie page split section) */
.location-interior-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: var(--shadow-md);
    display: block;
}

/* Pricing showcase (tafels page). Een eenvoudige prijs-presentatie. */
.pricing-showcase {
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--jci-orange);
}
.pricing-amount-block {
    background: linear-gradient(135deg, var(--jci-blue-darker) 0%, var(--jci-blue-dark) 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pricing-amount {
    display: block;
    font-family: var(--font-sans);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--jci-orange);
    line-height: 1;
    letter-spacing: -0.02em;
}
.pricing-meta {
    display: block;
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}
.pricing-details {
    padding: 2.25rem 2.5rem;
}
.pricing-details h3 {
    margin-bottom: 1rem;
    color: var(--jci-blue-darker);
    font-size: 1.15rem;
}
.pricing-details .tafel-features {
    margin-bottom: 1.5rem;
}
.pricing-details .btn {
    width: 100%;
}
@media (max-width: 720px) {
    .pricing-showcase { grid-template-columns: 1fr; }
    .pricing-amount-block { padding: 2.25rem 1.5rem; }
    .pricing-amount { font-size: 2.75rem; }
    .pricing-details { padding: 1.75rem 1.5rem; }
}

/* Speeltoestel gallery (doelpagina) */
.speeltoestel-gallery {
    max-width: 920px;
    margin: 0 auto;
    gap: 1.5rem;
}
.speeltoestel-photo {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    background: var(--white);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.speeltoestel-photo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.speeltoestel-photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.speeltoestel-photo figcaption {
    padding: 0.6rem 1rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Slingeland quote (pull-quote stijl) */
.slingeland-quote {
    margin: 2.5rem 0 0;
    padding: 1.75rem 2rem;
    border-left: 4px solid var(--jci-orange);
    background: var(--jci-blue-pale);
    border-radius: 0 6px 6px 0;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
}
.slingeland-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--jci-blue-dark);
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Project cards (Vrienden van Slingeland) */
.project-grid { gap: 1.75rem; }
.project-card {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.project-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.project-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, var(--jci-blue-pale), var(--line));
}
.project-photo .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    aspect-ratio: auto;
}
.project-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.project-body {
    padding: 1.5rem 1.75rem 1.75rem;
}
.project-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}
.project-body p {
    margin: 0;
    font-size: 0.95rem;
}

/* Member cards (JCI page "Dit zijn wij") */
.member-grid { gap: 1.5rem; }
.member-card {
    text-align: center;
    padding: 1.5rem 1rem;
}
.member-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: var(--shadow-soft);
    background: linear-gradient(135deg, var(--jci-blue-pale), var(--line));
}
.member-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--ink);
}
.member-role {
    font-size: 0.85rem;
    color: var(--jci-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin: 0;
}

/* === HIP FEATURES === */

/* Countdown */
.countdown-wrapper {
    margin: 1.5rem 0 2.25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
}
.countdown-label-top {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}
.countdown {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}
.countdown-block {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(243, 139, 37, 0.4);
    padding: 0.85rem 1.05rem;
    text-align: center;
    border-radius: 4px;
    min-width: 80px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.countdown-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.4rem;
}

/* Add to calendar link */
.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.5rem;
    color: var(--gold-light);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-bottom: 1px solid rgba(226, 201, 122, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.calendar-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}
.calendar-link svg {
    width: 14px;
    height: 14px;
}

/* Tafel availability */
.tafel-availability-banner {
    background: var(--white);
    border: 1px solid rgba(243, 139, 37, 0.55);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-soft);
}
.tafel-availability-banner strong {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold-dark);
    font-weight: 600;
}
.live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #27ae60;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.55);
    animation: livePulse 2s infinite;
    flex-shrink: 0;
}
@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(39, 174, 96, 0); }
    100% { box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
}
.tafel-status {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 2;
}
.tafel-status-available {
    background: rgba(39, 174, 96, 0.12);
    color: #1d7a47;
}
.tafel-status-available .status-dot { background: #27ae60; }
.tafel-status-limited {
    background: rgba(230, 126, 34, 0.13);
    color: #b85a13;
}
.tafel-status-limited .status-dot { background: #e67e22; }
.tafel-status-soldout {
    background: rgba(150, 150, 150, 0.15);
    color: #888;
}
.tafel-status-soldout .status-dot { background: #999; }
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.btn-disabled {
    background: var(--line) !important;
    color: var(--ink-soft) !important;
    border-color: var(--line) !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Animated counter */
[data-counter] {
    font-variant-numeric: tabular-nums;
}

/* Sponsor marquee */
.sponsor-marquee {
    overflow: hidden;
    width: 100%;
    margin: 1.5rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.sponsor-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: marquee 45s linear infinite;
}
.sponsor-marquee:hover .sponsor-marquee-track {
    animation-play-state: paused;
}
.sponsor-marquee-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    width: 180px;
    height: 110px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: border-color 0.2s ease;
}
.sponsor-marquee-item:hover {
    border-color: var(--gold);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 1.25rem)); }
}

/* Zonnehuisje SVG line art */
.zonnehuisje-svg {
    width: 100%;
    max-width: 340px;
    display: block;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
}
.zonnehuisje-svg .draw {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2.6s ease-out;
}
.zonnehuisje-svg.drawn .draw {
    stroke-dashoffset: 0;
}
.zonnehuisje-svg .draw-late {
    transition-delay: 0.5s;
}
.zonnehuisje-svg .draw-rays {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 1.8s ease-out 1.2s;
    stroke-width: 1.2;
    opacity: 0.7;
}
.zonnehuisje-svg.drawn .draw-rays {
    stroke-dashoffset: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .page-card { padding: 2rem; }
    .page-card h3 { font-size: 1.5rem; }
    .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
    .event-highlight { padding: 1.5rem; gap: 1rem; }
    .event-num { font-size: 2rem; min-width: 48px; }
    .chairman { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .chairman-photo { max-width: 220px; margin: 0 auto; }
    .chairman-text h2 { padding-left: 0; }
    .chairman-text h2::before { display: none; }
    .chairman-signoff { text-align: center; }
    .hero-sun { width: 500px; height: 500px; right: -150px; opacity: 0.6; }
    .sponsor-grid-large { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .tafel-featured { transform: none; }
    .tafel-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 720px) {
    .section { padding: 3.5rem 0; }
    .hero-content { padding-top: 3rem; padding-bottom: 3rem; }
    .hero { min-height: 70vh; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .main-nav.is-open {
        max-height: 400px;
        padding: 1rem 1.5rem 1.5rem;
    }
    .main-nav a {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        width: 100%;
    }
    .main-nav a:last-child { border-bottom: 0; }
    .main-nav a.active::after { display: none; }

    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .hero-scroll-hint { display: none; }
    .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
    .countdown { gap: 0.4rem; }
    .countdown-block { padding: 0.65rem 0.6rem; min-width: 64px; }
    .countdown-num { font-size: 1.5rem; }
    .countdown-label { font-size: 0.6rem; }
    .tafel-availability-banner { flex-direction: column; gap: 0.5rem; padding: 1rem; }
    .sponsor-marquee-item { width: 140px; height: 90px; }
    .sponsor-marquee-track { gap: 1.5rem; }
    .form { padding: 1.75rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .program-item { grid-template-columns: 80px 1fr; gap: 1rem; }
    .program-time { font-size: 1.4rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
    .sponsor-grid { grid-template-columns: 1fr 1fr; }
    .sponsor-grid-large { grid-template-columns: 1fr; }
}
