/*
Theme Name: Lions Clubs
Description: One-page thema voor Lions Clubs website
Author: tOmputor
Author URI: https://www.tomputor.be
Version: 4.6
*/

:root {
    --lions-blue: #003366;
    --lions-gold: #FFCC00;
    --white: #ffffff;
    --light-grey: #f4f7f6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background: #070B12;
}

.site-wrapper {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 80%;
    max-width: 1600px;
    margin: 0 auto 7vh auto;
    height: 82vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('https://lionsblank.wpenginepowered.com/wp-content/uploads/2026/02/Lions-Blankenberge-achtergrond.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, transparent 70%, rgba(7, 11, 18, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 450px;
    padding-left: 10vh;
}

.hero-title {
    color: white;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    color: white;
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 30px 0;
    opacity: 0.9;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 28px;
    min-height: 48px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 250ms ease;
    letter-spacing: 0.3px;
}

.hero-cta-primary {
    background: var(--lions-gold);
    color: var(--lions-blue);
    border: none;
    width: 100%;
}

.hero-cta-secondary {
    flex: 1;
    min-width: 0;
}

.hero-cta-primary:hover {
    background: #e6b800;
    box-shadow: 0 4px 12px rgba(242, 183, 5, 0.4);
    transform: translateY(-2px);
}

.hero-cta-primary:focus,
.hero-cta-secondary:focus {
    outline: 3px solid var(--lions-gold);
    outline-offset: 4px;
}

.hero-cta-secondary {
    background: white;
    color: var(--lions-blue);
    border: none;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Hero Divider */
.hero-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.hero-divider svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Sections */
section { padding: 100px 10%; }
section#fundraising {
    position: relative;
    padding-top: 20px;
}
section#socialewerken {
    padding: 30px 10% 10% 10%;
    background-image: url('https://lionsblank.wpenginepowered.com/wp-content/uploads/2026/02/Lions-club-blankenberge-sociale-werken.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#socialewerken h2 {
    text-align: left;
}

#socialewerken h2::after {
    margin: 0;
}

#socialewerken p {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: none !important;
}
h2 { color: var(--lions-blue); font-size: 3.5rem; text-align: center; margin-bottom: 50px; }
h2::after { content: ''; display: block; width: 20%; height: 4px; background: var(--lions-gold); margin: 0px auto; }
.title-onze {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-style: italic;
    font-weight: 400;
    color: var(--lions-blue);
    font-size: 5.5rem;
    margin-right: 10px;
}



/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 5% auto;
    padding: 0 10%;
}

.section-divider-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.section-divider-image img {
    max-width: 1600px;
    width: auto;
    height: auto;
    display: block;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--lions-blue), transparent);
}

.divider-icon {
    flex-shrink: 0;
}

/* Fundraising Cards on Homepage */
.fundraising-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.fundraising-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.fundraising-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fundraising-card-link:hover .fundraising-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.fundraising-thumbnail {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.fundraising-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fundraising-date-banner {
    background: var(--lions-gold);
    color: var(--lions-blue);
    padding: 12px 20px;
    font-weight: bold;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fundraising-card-content {
    padding: 25px;
    background: white;
    box-shadow: none;
    margin: 0;
    box-sizing: border-box;
}

.fundraising-card-content h3 {
    color: var(--lions-blue);
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.fundraising-card-content .fundraising-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0 0 15px;
    font-style: italic;
    font-weight: 600;
}

.fundraising-card-content .fundraising-home-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 20px;
}

.fundraising-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--lions-blue);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.fundraising-card-link:hover .fundraising-button {
    background: #004d99;
}

@media (max-width: 1100px) {
    .site-wrapper {
        width: 90%;
    }

    .fundraising-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile menu button - hidden by default on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Mobile menu and backdrop - hidden by default on desktop */
.mobile-menu {
    display: none;
}

.mobile-menu-backdrop {
    display: none;
}

/* Fundraising Template - base styles */
.fundraising-content {
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 10%;
    background: white;
    box-sizing: border-box;
}

/* Page Hero */
.page-hero {
    margin-bottom: 40px;
}

.page-hero h1 {
    color: var(--lions-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 20px;
    position: relative;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    max-width: 200px;
    height: 6px;
    background: var(--lions-gold);
}

@media (max-width: 1024px) {
    .site-header-main {
        width: 90%;
    }

    .header-inner {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 20px;
    }

    .site-logo-main {
        height: 80px;
        top: 12px;
    }

    .site-header-main.scrolled .site-logo-main {
        height: 70px;
        top: 3px;
    }

    .hero-section {
        padding: 0;
        height: 82vh;
        margin-bottom: 7vh;
    }

    .hero-content {
        padding-left: 7vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        gap: 12px;
    }

    .hero-cta-primary {
        padding: 12px 28px;
        font-size: 15px;
        width: 100%;
    }

    .hero-cta-secondary {
        padding: 12px 28px;
        font-size: 15px;
        flex: 1;
        min-width: 0;
    }

    .header-inner {
        padding: 0;
    }

    .header-right {
        padding-right: 7vh;
    }

    .title-onze {
        display: none;
    }

}

@media (min-width: 1150px) {
    .site-header-main {
        width: 80% !important;
    }
}


@media (max-width: 1700px) {
    .header-left {
        display: block !important;
        gap: 5px !important;
    }

    .site-title-main {
        text-align: left !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .main-navigation {
        display: flex !important;
    }
}

@media (max-width: 1150px) {

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0px;
        box-sizing: border-box;
        box-shadow: none;
        overflow-x: hidden;
    }

    #onzeclub .text-section-content {
        display: none !important;
    }

    .fundraising-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 10% !important;
        box-shadow: none !important;
        box-sizing: border-box !important;
    }

    .fundraising-grid {
        grid-template-columns: 1fr;
    }

    .site-header-main {
        height: auto;
        min-height: 70px;
        width: 100vw;
        max-width: 100%;
        top: 0;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .site-header-main.scrolled {
        top: 0;
    }

    .header-inner {
        width: 100%;
        max-width: 100%;
        padding: 15px 10%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .header-left {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0px !important;
        padding-left: 10% !important;
        flex-shrink: 1;
        min-width: 0;
    }

    .header-right {
        position: static;
        display: flex;
        align-items: center;
        gap: 0;
        padding-right: 0;
        flex-shrink: 0;
    }

    .site-title-main {
        display: block !important;
        font-size: 16px !important;
        text-align: left;
    }

    .mobile-menu-toggle {
        align-self: flex-start;
    }

    .main-navigation {
        display: none !important;
    }

    /* Mobile menu button */
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        flex-shrink: 0;
    }

    /* Mobile menu overlay */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--lions-blue);
        z-index: 1000;
        transition: left 0.3s ease;
        padding: 80px 10% 40px;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        align-items: flex-start;
    }

    .mobile-menu .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
    }

    .mobile-menu .nav-menu a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        color: white;
        text-align: left;
        width: 100%;
    }

    /* Mobile menu backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        display: none;
    }

    .mobile-menu-backdrop.active {
        display: block;
    }

    .site-logo-main {
        height: 60px !important;
        width: auto;
        top: 0 !important;
        max-width: none;
        position: relative !important;
        flex-shrink: 0;
    }

    .site-header-main.scrolled .site-title-main {
        font-size: 16px;
    }

    .site-header-main.scrolled .site-logo-main {
        height: 55px !important;
        top: 0 !important;
    }

    .hero-section {
        width: 100%;
        height: 82vh;
        margin: 0 auto 7vh auto;
        padding: 0 10%;
        box-sizing: border-box;
        box-shadow: none;
    }

    .hero-content {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-cta-primary {
        width: 100%;
        max-width: 225px;
        padding: 0px;
        font-size: 15px;
    }

    .hero-cta-secondary {
        width: 100%;
        max-width: 225px;
        padding: 0px;
        font-size: 15px;
    }
}

/* Single Post - uses fundraising-content from line 362 for layout */
.event-meta { margin-bottom: 20px; font-size: 1.2rem; color: var(--lions-blue); }
.post-thumbnail { margin-bottom: 30px; }
.post-thumbnail img { width: 100%; height: auto; border-radius: 8px; }
.post-content { font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; }

/* Booking Section */
.booking-section { margin: 40px -20px; padding: 30px 0; background: var(--light-grey); width: -webkit-fill-available; }
.booking-section h3 { color: var(--lions-blue); font-size: 1.8rem; margin-bottom: 20px; text-align: center; }
.booking-iframe-container { position: relative; width: -webkit-fill-available; height: -webkit-fill-available; min-height: 800px; overflow: hidden; background: white; }
.booking-iframe-container iframe { position: absolute; top: 0; left: 0; width: -webkit-fill-available; height: -webkit-fill-available; min-height: 800px; border: none; }
.booking-closed { text-align: center; padding: 30px; background: white; margin: 0 20px; border-radius: 8px; }
.booking-closed p { font-size: 1.2rem; color: var(--lions-blue); font-weight: bold; margin: 0; }

@media (max-width: 768px) {
    .booking-section { margin: 40px -20px; }
}

/* Main Header */
.site-header-main {
    background: #0D2E57;
    height: 110px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 250ms ease-in-out;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.site-header-main.scrolled {
    height: 75px;
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding-bottom: 15px;
    padding-top: 15px;
}

.header-inner {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 10%;
}

.header-right {
    padding-right: 10%;
}

.site-title-main {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
    transition: font-size 250ms ease-in-out;
}

.site-title-main a {
    color: white;
    text-decoration: none;
    transition: color 200ms ease;
}

.site-title-main a:hover,
.site-title-main a:visited,
.site-title-main a:active,
.site-title-main a:focus {
    color: white;
    text-decoration: none;
}

.site-title-main a:hover {
    color: var(--lions-gold);
}

.site-header-main.scrolled .site-title-main {
    font-size: 20px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 4px;
    transition: all 200ms ease;
}

.site-header-main.scrolled .nav-menu a {
    font-size: 20px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--lions-gold);
    transition: width 200ms ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-right {
    position: relative;
}

.site-logo-main {
    height: 125px;
    width: auto;
    position: relative;
    top: 30px;
    transition: all 250ms ease-in-out;
}

.site-header-main.scrolled .site-logo-main {
    height: 85px;
    top: 5px;
}

/* Tekst Secties */
.text-section {
    padding: 80px 10%;
}

#club.text-section {
    padding: 0 10% 80px 10%;
    margin-top: 0;
}

.text-section-container {
    max-width: 900px;
    margin: 0 auto;
}

#club .text-section-container {
    padding-top: 0;
}

.lions-banner {
    background: linear-gradient(135deg, #5E7FB5 0%, #6E90C3 40%, #7FA1CF 100%);
    padding: 50px 10% !important;
    text-align: center;
    margin: 0 !important;
}

.lions-banner-content h1 {
    color: white;
    font-size: clamp(16px, 6vw, 32px)
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.lions-banner-content h3 {
    color: var(--lions-blue);
    font-size: clamp(14px, 4vw, 24px)
    font-weight: 600;
    margin: 0;
}

#onzeclub {
    padding-top: 25px !important;
    padding-bottom: 0px !important;
    margin-top: 0px;
    background: #F6F4EF;
}

.text-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

#onzeclub h2 {
    text-align: left;
}

#onzeclub h2::after {
    margin: 0;
}

.text-section-content {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    text-align: left;
    color: #333;
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border-left: none;
    position: relative;
    overflow: hidden;
}

.text-section-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 6px;
    height: 60%;
    background: #F2C200;
    border-radius: 4px;
    z-index: 2;
}

#onzeclub .text-section-content::after {
    content: "1974";
    position: absolute;
    font-size: 20rem;
    font-weight: 900;
    color: rgba(0, 51, 102, 0.08);
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 0;
}

#onzeclub .text-section-content > * {
    position: relative;
    z-index: 1;
}

.lions-club-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--lions-gold);
    color: var(--lions-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lions-club-button:hover {
    background: #e0b000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 194, 0, 0.3);
}

.lions-footer-image {
    max-width: 1600px;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: right;
    background: #F6F4EF;
}

.lions-footer-image img {
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
    margin-left: auto;
    object-fit: contain;
}

.initiatieven-box {
    margin-top: 40px;
    width: 50%;
    background: rgba(0, 0, 0, 0.03);
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.initiatieven-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    width: 6px;
    height: 60%;
    background: var(--lions-blue);
    border-radius: 4px;
}

.initiatief-link {
    color: var(--lions-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.initiatief-link:hover {
    color: #e0b000;
    text-decoration: underline;
}

/* Lions International sectie met blauwe achtergrond */
.intl-bg {
    background: var(--lions-blue);
    color: white;
    padding-bottom: 7%;
}

.intl-bg h2 {
    color: var(--lions-gold);
}

.intl-bg .text-section-content {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

/* Facebook Follow */
#contact {
    background: var(--lions-blue);
    padding: 60px 10%;
}

.facebook-follow {
    text-align: center;
}

.facebook-follow p {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding:0 10%;
}

.facebook-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877f2;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.facebook-button:hover {
    background: #145dbf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.facebook-button i {
    font-size: 1.69rem;
    color: white;
}

/* Goede Doelen - Tijdlijn */
.goede-doelen-list {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 0;
}

.goede-doelen-list::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--lions-gold);
    border-radius: 3px;
}

.goed-doel-link {
    text-decoration: none;
    color: inherit;
    display: block;
    margin-bottom: 30px;
}

.goed-doel-item {
    background: rgb(255 255 255 / 39%);
    border: none;
    border-radius: 8px;
    padding: 15px 25px;
    position: relative;
    margin-left: 80px;
    margin-bottom: 30px;
}

.goed-doel-item::before {
    content: '';
    position: absolute;
    left: -71px;
    top: 15px;
    width: 20px;
    height: 20px;
    background: white;
    border: 5px solid var(--lions-gold);
    border-radius: 50%;
    z-index: 2;
}

.goed-doel-website-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--lions-blue);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 500;
}

.goed-doel-website-link:hover {
    color: var(--lions-gold);
}

.goed-doel-image {
    display: none;
}

.goed-doel-title {
    padding: 0;
}

.goed-doel-title h3 {
    color: var(--lions-blue) !important;
    font-size: 1.3rem !important;
    margin: 0 !important;
    line-height: 1.1;
    text-align: left;
}

.goed-doel-title-heading {
    color: var(--lions-blue);
    font-size: 1.3rem;
    margin: 0 0 3px 0;
    line-height: 1.1;
}

.goed-doel-description {
    margin: 0 0 10px 0;
    color: #666;
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid rgb(0 51 102 / 50%);
}

footer { background: #1a1a1a; color: white; text-align: center; padding: 50px; font-size: 32px; }

/* Fundraising Template */
.fundraising-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.fundraising-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fundraising-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fundraising-header h1 {
    color: var(--lions-blue);
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.2;
}

.fundraising-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin: 0;
    font-weight: 300;
}

.fundraising-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #333;
}

.meta-item .icon {
    font-size: 1.3rem;
}

.fundraising-cta {
    margin-top: 20px;
}

.order-button {
    display: inline-block;
    padding: 18px 50px;
    background: var(--lions-gold);
    color: var(--lions-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-button:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

.fundraising-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.fundraising-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Downloads Sectie */
.fundraising-downloads {
    margin: 50px 0 40px;
    padding: 30px;
    background: var(--light-grey);
    border-radius: 12px;
}

.fundraising-downloads h2 {
    color: var(--lions-blue);
    font-size: 2rem;
    margin: 0 0 25px;
}

.download-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.download-item {
    margin-bottom: 15px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.download-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.download-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-name {
    color: var(--lions-blue);
    font-weight: 600;
    font-size: 1.1rem;
}

.download-meta {
    color: #666;
    font-size: 0.9rem;
}

.download-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.download-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.download-button.view-button {
    background: white;
    color: var(--lions-blue);
    border-color: var(--lions-blue);
}

.download-button.view-button:hover {
    background: var(--lions-blue);
    color: white;
}

.download-button:not(.view-button) {
    background: var(--lions-gold);
    color: var(--lions-blue);
    border-color: var(--lions-gold);
}

.download-button:not(.view-button):hover {
    background: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 204, 0, 0.3);
}

.download-button .button-icon {
    font-size: 1.2rem;
}

.download-button .button-text {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .fundraising-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fundraising-header h1 {
        font-size: 2rem;
    }

    .fundraising-subtitle {
        font-size: 1.2rem;
    }

    .order-button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 18px 20px;
    }

    .download-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .download-actions {
        width: 100%;
        flex-direction: column;
    }

    .download-button {
        width: 100%;
        justify-content: center;
    }

    /* Fundraising template mobile readability */
    .fundraising-content {
        padding: 20px 10%;
    }

    .fundraising-hero-pro h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .fundraising-hero-meta {
        font-size: 0.95rem;
    }

    .meta-item-pro {
        font-size: 0.95rem;
    }

    .fundraising-text-section {
        font-size: 1rem;
        line-height: 1.6;
    }

    .fundraising-text-full {
        font-size: 1rem;
        line-height: 1.6;
        padding: 20px 10%;
    }

    .fundraising-featured-text {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 20px 10%;
    }

    .fundraising-order-button {
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        font-size: 1rem;
    }

    .download-list-pro {
        padding: 0 5%;
    }

    .download-name-pro {
        font-size: 0.95rem;
    }

    .download-actions-pro {
        flex-direction: row !important;
        gap: 15px;
        justify-content: flex-start;
    }

    .download-btn-pro {
        width: auto !important;
        min-width: auto !important;
    }

    .back-button-pro {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Goede Doelen hover effect */
.goed-doel-link:hover .goed-doel-item {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}