/* ==========================================================================
   Rotary Tennis & Padel — Main Stylesheet
   Based on design mockup
   ========================================================================== */

/* ---------- Custom Properties ---------- */
:root {
    /* Primaire kleuren */
    --color-navy:        #194696;
    --color-navy-dark:   #0f2d63;
    --color-lime:        #B4E150;
    --color-lime-hover:  #a0cc40;
    --color-lilac:       #D2B4FF;
    --color-lilac-light: #EDE0FF;
    --color-lilac-soft:  #F5EEFF;

    /* Logo-kleuren (Rotary branding) */
    --color-rotary-blue: #17458F;
    --color-rotary-gold: #F7A81B;

    /* Neutrale kleuren */
    --color-white:       #FFFFFF;
    --color-off-white:   #F8F6FF;
    --color-dark:        #1A1A2E;
    --color-gray:        #6B7280;
    --color-light-gray:  #E5E7EB;

    /* Functionele kleuren */
    --color-success:     #22C55E;
    --color-error:       #EF4444;
    --color-warning:     #F59E0B;

    /* Typografie */
    --font-main: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

ul, ol {
    list-style: none;
}

/* ---------- Screen Reader ---------- */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    background-color: var(--color-white);
    color: var(--color-dark);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    clip: auto;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- Section Headers ---------- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-lime-hover);
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--color-gray);
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-navy);
    color: white;
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(25, 70, 150, 0.3);
    border: none;
    cursor: pointer;
    min-height: 44px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(25, 70, 150, 0.4);
    color: white;
}

.btn-primary .arrow {
    transition: transform 0.3s;
}

.btn-primary:hover .arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--color-navy);
    padding: 1rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-main);
    border: 2px solid rgba(25, 70, 150, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
}

.btn-secondary:hover {
    border-color: var(--color-navy);
    background: rgba(25, 70, 150, 0.05);
    color: var(--color-navy);
}

.btn-ticket {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 44px;
}

.btn-ticket.primary {
    background: var(--color-navy);
    color: white;
}

.btn-ticket.primary:hover {
    background: var(--color-navy-dark);
}

.btn-ticket.outline {
    background: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-navy);
}

.btn-ticket.outline:hover {
    background: var(--color-navy);
    color: white;
}

/* ---------- Navigation — Glassmorphism sticky ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(25, 70, 150, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-logo img {
    height: 80px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    margin-top: 8px;
    /* Maak het navy logo wit voor de donkere nav achtergrond */
    filter: brightness(0) invert(1);
}

/* Footer logo — witte variant via filter voor donkere achtergrond */
.footer-logo-img {
    height: 90px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.nav-logo-text {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.nav-logo-text small {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.8rem;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a,
.nav-menu li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-lime);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-cta {
    background: var(--color-lime);
    color: var(--color-navy) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--color-navy) !important;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero — Diagonal split + floating elements ---------- */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-lilac) 0%, var(--color-lilac-light) 40%, var(--color-lime) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(25, 70, 150, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(180, 225, 80, 0.15) 0%, transparent 60%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 60%;
    height: 120%;
    background: var(--color-navy);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 10% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(25, 70, 150, 0.1);
    border: 1px solid rgba(25, 70, 150, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-lime);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.hero-text h1 .accent {
    background: linear-gradient(135deg, var(--color-lime), #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--color-navy);
    opacity: 0.8;
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Section scroll indicator */
.section-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 3rem auto 0;
    color: var(--color-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    width: fit-content;
}

.section-scroll-indicator:hover {
    opacity: 1;
    color: var(--color-navy);
}

.section-scroll-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-navy);
    font-size: 1.1rem;
    font-weight: 700;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* Hero right side — image composition */
.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-ball {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    box-shadow:
        inset -30px -30px 60px rgba(0, 0, 0, 0.15),
        inset 20px 20px 40px rgba(255, 255, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-ball img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating stats cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    animation: float 6s ease-in-out infinite;
    z-index: 4;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-card.card-1 { top: 5%; right: 0; animation-delay: 0s; }
.float-card.card-2 { bottom: 10%; left: -10%; animation-delay: 2s; }
.float-card.card-3 { bottom: 30%; right: -5%; animation-delay: 4s; }

.float-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.float-card .card-icon.tennis { background: rgba(180, 225, 80, 0.2); }
.float-card .card-icon.location { background: rgba(210, 180, 255, 0.3); }
.float-card .card-icon.charity { background: rgba(247, 168, 27, 0.2); }

.float-card .card-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--color-navy);
}

.float-card .card-label {
    font-size: 0.75rem;
    color: var(--color-gray);
}

/* ---------- Countdown Strip ---------- */
.countdown-strip {
    background: var(--color-navy);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.countdown-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent, transparent 100px,
        rgba(255, 255, 255, 0.03) 100px, rgba(255, 255, 255, 0.03) 200px
    );
}

.countdown-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-units {
    display: flex;
    gap: 1.5rem;
}

.countdown-unit {
    text-align: center;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-lime);
    line-height: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    min-width: 70px;
    display: block;
}

.countdown-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
}

/* ---------- Info Cards ---------- */
.info-section {
    padding: 6rem 2rem;
    background: var(--color-white);
    position: relative;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color-light-gray);
    transition: all 0.4s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(25, 70, 150, 0.1);
    border-color: transparent;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 20px 20px 0 0;
}

.info-card:nth-child(1)::before,
.info-card.color-lime::before { background: linear-gradient(90deg, var(--color-lime), #8BC34A); }
.info-card:nth-child(2)::before,
.info-card.color-lilac::before { background: linear-gradient(90deg, var(--color-lilac), #a78bfa); }
.info-card:nth-child(3)::before,
.info-card.color-gold::before { background: linear-gradient(90deg, var(--color-rotary-gold), #f59e0b); }
.info-card.color-lime::before,
.info-card.color-lilac::before,
.info-card.color-gold::before { z-index: 1; }

.card-emoji {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-card:nth-child(1) .card-emoji,
.info-card.color-lime .card-emoji { background: rgba(180, 225, 80, 0.15); }
.info-card:nth-child(2) .card-emoji,
.info-card.color-lilac .card-emoji { background: rgba(210, 180, 255, 0.2); }
.info-card:nth-child(3) .card-emoji,
.info-card.color-gold .card-emoji { background: rgba(247, 168, 27, 0.15); }

.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.info-card p {
    color: var(--color-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ---------- Program — Timeline ---------- */
.program-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-lilac-soft) 0%, var(--color-off-white) 100%);
    position: relative;
}

.program-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, white, transparent);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 60px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--color-lime), var(--color-lilac), var(--color-navy));
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 1.8rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-lime);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--color-lime);
}

.timeline-time {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-lime-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* ---------- Tickets / Bestellen ---------- */
.tickets-section {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.tickets-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ticket-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--color-light-gray);
    transition: all 0.4s ease;
    position: relative;
}

.ticket-card:hover {
    border-color: var(--color-navy);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(25, 70, 150, 0.12);
}

.ticket-card.featured {
    border-color: var(--color-navy);
    box-shadow: 0 10px 40px rgba(25, 70, 150, 0.15);
}

.ticket-card.featured::after {
    content: 'Populair';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-lime);
    color: var(--color-navy);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.ticket-image {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.ticket-image.tennis {
    background: linear-gradient(135deg, var(--color-lime), #8BC34A);
}

.ticket-image.padel {
    background: linear-gradient(135deg, var(--color-lilac), #a78bfa);
}

.ticket-image.toeschouwer {
    background: linear-gradient(135deg, var(--color-rotary-gold), #fbbf24);
}

.ticket-image .ticket-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    opacity: 0.3;
}

.ticket-image .ticket-sport-label {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ticket-body {
    padding: 1.75rem;
}

.ticket-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.ticket-body p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ticket-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.ticket-includes li {
    font-size: 0.85rem;
    color: var(--color-dark);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ticket-includes li::before {
    content: '\2713';
    color: var(--color-lime-hover);
    font-weight: 700;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}

.ticket-price .amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-navy);
}

.ticket-price .per {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* ---------- Impact / Goed Doel ---------- */
.impact-section {
    padding: 6rem 2rem;
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(180, 225, 80, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(210, 180, 255, 0.1) 0%, transparent 50%);
}

.impact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.impact-text .section-tag {
    color: var(--color-lime);
}

.impact-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.impact-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.impact-stat .stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-lime);
    display: block;
}

.impact-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.impact-image {
    position: relative;
    background: linear-gradient(135deg, var(--color-lilac), var(--color-lime));
    border-radius: 24px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-image-text {
    text-align: center;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.impact-image-text .heart {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.impact-image-text span {
    font-size: 1.3rem;
    font-weight: 700;
    display: block;
}

/* ---------- Sponsors ---------- */
.sponsors-section {
    padding: 5rem 2rem;
    background: var(--color-off-white);
}

.sponsors-grid {
    max-width: 1000px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.sponsor-logo {
    width: 140px;
    height: 70px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    color: var(--color-light-gray);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--color-light-gray);
    transition: all 0.3s;
}

.sponsor-logo:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sponsor-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.sponsors-placeholder {
    text-align: center;
    color: var(--color-gray);
    font-style: italic;
    width: 100%;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--color-lilac) 0%, var(--color-lime) 100%);
    text-align: center;
    position: relative;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--color-navy);
    opacity: 0.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand .nav-logo {
    margin-bottom: 0;
    margin-top: -1.25rem;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    padding: 0.3rem 0;
}

.footer ul a {
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer ul a:hover {
    color: var(--color-lime);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social a:hover {
    background: var(--color-lime);
    color: var(--color-navy);
}

/* ---------- Page Templates ---------- */
.page-header {
    background-color: var(--color-navy);
    color: white;
    padding: 8rem 2rem 3rem;
    text-align: center;
}

.page-header .page-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.page-content {
    padding: 4rem 2rem;
}

.page-content .container {
    max-width: 800px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.entry-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.5rem; }

.entry-content img {
    border-radius: 16px;
    margin: 2rem 0;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-lime);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: var(--color-off-white);
    border-radius: 0 12px 12px 0;
}

/* Page Info Template */
.page-info-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1100px;
}

.page-info-layout .entry-content {
    min-width: 0;
}

.sidebar-cta {
    background: var(--color-off-white);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 6rem;
}

.sidebar-cta h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

/* ---------- 404 Page ---------- */
.error-404 {
    text-align: center;
    padding: 6rem 0;
}

.error-404-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-lilac);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404 h1 {
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--color-gray);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Forms ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-main);
    font-size: 1rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 12px;
    background: var(--color-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-navy);
    box-shadow: 0 0 0 3px rgba(25, 70, 150, 0.15);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Prevent scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Post meta */
.post-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-thumbnail {
    margin-bottom: 2rem;
}

.post-thumbnail img {
    border-radius: 16px;
    width: 100%;
}
