/*
Theme Name: Kadiwaku Foundation
Theme URI: https://kadiwaku-drc.org
Author: Kadiwaku Foundation DRC
Author URI: https://kadiwaku-drc.org
Description: Thème officiel de la Kadiwaku Foundation - Inclusion sociale et économique des jeunes handicapés en RDC
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kadiwaku
Tags: accessibility-ready, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===========================
   VARIABLES & RESET
=========================== */
:root {
    --kf-blue: #29ABE2;
    --kf-red: #ED1C24;
    --kf-yellow: #FFC20E;
    --kf-dark: #1a1a2e;
    --kf-gray: #6c757d;
    --kf-light: #f8f9fa;
    --kf-white: #ffffff;
    --kf-blue-dark: #1a8ab5;
    --kf-red-dark: #c0151b;
    --font-primary: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--kf-dark);
    line-height: 1.7;
    background: var(--kf-white);
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--kf-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
a { color: var(--kf-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--kf-blue-dark); }

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

/* ===========================
   UTILITIES
=========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-white { color: var(--kf-white) !important; }
.text-blue { color: var(--kf-blue); }
.text-red { color: var(--kf-red); }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 120px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
    display: inline-block;
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 600px; margin: 0 auto; color: var(--kf-gray); font-size: 1.1rem; }

.divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--kf-blue), var(--kf-red));
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    border: none; cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(41,171,226,0.4);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(41,171,226,0.5);
    color: white;
}
.btn-danger {
    background: linear-gradient(135deg, var(--kf-red), var(--kf-red-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(237,28,36,0.4);
}
.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237,28,36,0.5);
    color: white;
}
.btn-outline {
    background: transparent;
    color: var(--kf-blue);
    border: 2px solid var(--kf-blue);
}
.btn-outline:hover { background: var(--kf-blue); color: white; }
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.btn-outline-white:hover { background: white; color: var(--kf-blue); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ===========================
   TOP BAR
=========================== */
.topbar {
    background: var(--kf-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.8); }
.topbar a:hover { color: var(--kf-yellow); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ===========================
   HEADER / NAVIGATION
=========================== */
.site-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 1000;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
}
.site-logo img { height: 60px; width: auto; }
.site-logo span {
    font-family: var(--font-primary);
    font-size: 1.4rem; font-weight: 800;
    color: var(--kf-dark);
}
.site-logo span em { color: var(--kf-blue); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    font-family: var(--font-primary);
    font-weight: 600; font-size: 0.9rem;
    color: var(--kf-dark);
    padding: 8px 14px; border-radius: 6px;
    position: relative;
}
.main-nav a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; right: 50%;
    height: 2px; background: var(--kf-blue);
    transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.current-menu-item::after { left: 14px; right: 14px; }
.main-nav a:hover { color: var(--kf-blue); }
.main-nav .btn-donate {
    background: linear-gradient(135deg, var(--kf-red), var(--kf-red-dark));
    color: white; padding: 10px 22px; border-radius: 50px;
    font-size: 0.88rem; margin-left: 8px;
}
.main-nav .btn-donate:hover { transform: translateY(-1px); color: white; }
.main-nav .btn-donate::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--kf-dark); border-radius: 2px; transition: var(--transition); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--kf-dark) 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 100px 0;
    overflow: hidden;
    min-height: 90vh;
    display: flex; align-items: center;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-shape {
    position: absolute; border-radius: 50%;
    opacity: 0.08;
}
.hero-shape-1 {
    width: 500px; height: 500px;
    background: var(--kf-blue);
    top: -150px; right: -100px;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    background: var(--kf-red);
    bottom: -80px; left: -80px;
}
.hero-shape-3 {
    width: 200px; height: 200px;
    background: var(--kf-yellow);
    top: 40%; right: 20%;
}
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white; font-size: 0.82rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 18px; border-radius: 50px;
    margin-bottom: 24px;
}
.hero-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--kf-yellow); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 24px; color: white; }
.hero h1 span { color: var(--kf-blue); }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 40px; max-width: 600px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }

.hero-stats {
    display: flex; flex-wrap: wrap; gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .number {
    font-family: var(--font-primary);
    font-size: 2.5rem; font-weight: 800;
    color: var(--kf-yellow); line-height: 1;
}
.hero-stat .label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

/* ===========================
   MISSION BAND
=========================== */
.mission-band {
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    color: white; padding: 60px 0;
}
.mission-band .container {
    display: grid; grid-template-columns: 1fr 3px 1fr;
    gap: 40px; align-items: center;
}
.mission-divider { background: rgba(255,255,255,0.3); height: 80px; }
.mission-item h3 { color: white; margin-bottom: 12px; font-size: 1.5rem; }
.mission-item p { opacity: 0.9; margin: 0; }

/* ===========================
   ABOUT SECTION
=========================== */
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; height: 450px; object-fit: cover; }
.about-badge-float {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--kf-red), var(--kf-red-dark));
    color: white; padding: 20px 28px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); text-align: center;
}
.about-badge-float .big { font-size: 2.2rem; font-weight: 800; font-family: var(--font-primary); line-height: 1; }
.about-badge-float .small { font-size: 0.78rem; opacity: 0.9; margin-top: 4px; }

.about-content .label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: #555; margin-bottom: 20px; }
.about-values { list-style: none; margin: 24px 0; }
.about-values li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 500;
}
.about-values li:last-child { border-bottom: none; }
.about-values .icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}

/* ===========================
   PROGRAMS SECTION
=========================== */
.programs-section { background: var(--kf-light); }
.programs-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.program-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.program-card-image {
    position: relative; height: 220px; overflow: hidden;
}
.program-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-card-image img { transform: scale(1.08); }
.program-card-icon {
    position: absolute; top: 16px; left: 16px;
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9);
}
.program-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.program-card-body h3 { margin-bottom: 12px; font-size: 1.2rem; }
.program-card-body p { color: #666; flex: 1; margin-bottom: 20px; font-size: 0.95rem; }
.program-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid #eee;
    font-size: 0.85rem; color: var(--kf-gray);
}
.program-tag {
    background: #e8f4fd; color: var(--kf-blue);
    padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

/* ===========================
   IMPACT SECTION
=========================== */
.impact-section {
    background: linear-gradient(135deg, var(--kf-dark), #16213e);
    color: white; position: relative; overflow: hidden;
}
.impact-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(41,171,226,0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(237,28,36,0.1) 0%, transparent 60%);
}
.impact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; position: relative; z-index: 1;
}
.impact-item { text-align: center; }
.impact-number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800; color: var(--kf-yellow); line-height: 1;
}
.impact-number sup { font-size: 0.5em; }
.impact-label {
    margin-top: 8px; opacity: 0.85;
    font-size: 0.95rem; max-width: 180px; margin-left: auto; margin-right: auto;
}
.impact-icon { font-size: 2.5rem; margin-bottom: 12px; }

/* ===========================
   APPROACH SECTION
=========================== */
.approach-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.approach-card {
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 2px solid #eee;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.approach-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    transition: var(--transition);
}
.approach-card:nth-child(1)::before { background: var(--kf-blue); }
.approach-card:nth-child(2)::before { background: var(--kf-red); }
.approach-card:nth-child(3)::before { background: var(--kf-yellow); }
.approach-card:nth-child(4)::before { background: linear-gradient(90deg, var(--kf-blue), var(--kf-red)); }
.approach-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-lg); }
.approach-num {
    font-family: var(--font-primary); font-size: 3rem;
    font-weight: 800; opacity: 0.08; position: absolute;
    top: 10px; right: 20px; line-height: 1;
}
.approach-icon {
    width: 60px; height: 60px; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.approach-card:nth-child(1) .approach-icon { background: #e8f4fd; }
.approach-card:nth-child(2) .approach-icon { background: #fde8e9; }
.approach-card:nth-child(3) .approach-icon { background: #fff8e1; }
.approach-card:nth-child(4) .approach-icon { background: #e8f8f0; }
.approach-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.approach-card p { color: #666; font-size: 0.95rem; margin: 0; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--kf-light); }
.testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: white; padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 16px; right: 24px;
    font-size: 5rem; color: var(--kf-blue); opacity: 0.15;
    font-family: Georgia, serif; line-height: 1;
}
.testimonial-stars { color: var(--kf-yellow); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text { color: #555; font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; margin-bottom: 2px; font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--kf-gray); }

/* ===========================
   GET INVOLVED
=========================== */
.involved-section {
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    color: white; text-align: center;
}
.involved-section h2 { color: white; margin-bottom: 16px; }
.involved-section p { opacity: 0.9; font-size: 1.15rem; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.involved-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px; margin-bottom: 48px;
}
.involved-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 32px 24px; border-radius: var(--radius-lg);
    text-align: center; transition: var(--transition);
}
.involved-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.involved-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.involved-card h4 { color: white; margin-bottom: 10px; }
.involved-card p { opacity: 0.85; font-size: 0.9rem; margin: 0; }

/* ===========================
   PARTNERS
=========================== */
.partners-section { background: var(--kf-light); padding: 60px 0; }
.partners-grid {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px;
    opacity: 0.65; filter: grayscale(100%);
    transition: var(--transition);
}
.partners-grid:hover { opacity: 1; filter: none; }
.partner-logo {
    background: white; padding: 16px 28px; border-radius: var(--radius);
    box-shadow: var(--shadow); font-weight: 700; color: var(--kf-gray);
    font-family: var(--font-primary); font-size: 0.85rem;
    letter-spacing: 1px; text-transform: uppercase;
}

/* ===========================
   NEWS / BLOG
=========================== */
.news-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.news-card {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-image { height: 220px; overflow: hidden; }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-image img { transform: scale(1.06); }
.news-card-body { padding: 28px; }
.news-meta {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; font-size: 0.82rem; color: var(--kf-gray);
}
.news-category {
    background: #e8f4fd; color: var(--kf-blue);
    padding: 3px 10px; border-radius: 50px; font-weight: 600;
}
.news-card-body h3 { font-size: 1.15rem; margin-bottom: 12px; line-height: 1.4; }
.news-card-body h3 a { color: var(--kf-dark); }
.news-card-body h3 a:hover { color: var(--kf-blue); }
.news-card-body p { color: #666; font-size: 0.9rem; margin-bottom: 20px; }
.news-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px; border-top: 1px solid #eee;
}
.read-more { color: var(--kf-blue); font-weight: 600; font-size: 0.88rem; }
.read-more:hover { color: var(--kf-blue-dark); }

/* ===========================
   NEWSLETTER
=========================== */
.newsletter-section {
    background: var(--kf-dark); color: white; text-align: center; padding: 80px 0;
}
.newsletter-section h2 { color: white; margin-bottom: 12px; }
.newsletter-section p { opacity: 0.8; margin-bottom: 32px; font-size: 1.05rem; }
.newsletter-form {
    display: flex; max-width: 500px; margin: 0 auto; gap: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 8px 8px 20px; border-radius: 50px;
}
.newsletter-form input {
    flex: 1; background: none; border: none; outline: none;
    color: white; font-family: var(--font-body); font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #0d1117; color: rgba(255,255,255,0.75);
}
.footer-main {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding: 80px 0 60px;
}
.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); transition: var(--transition);
    font-size: 1rem;
}
.social-btn:hover { background: var(--kf-blue); color: white; }

.footer-col h4 {
    color: white; font-size: 1rem; margin-bottom: 20px;
    padding-bottom: 10px; border-bottom: 2px solid var(--kf-blue);
    display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--kf-blue); padding-left: 4px; }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { color: var(--kf-blue); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.85rem; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: var(--kf-blue); }

/* ===========================
   PAGE TEMPLATES
=========================== */
.page-hero {
    background: linear-gradient(135deg, var(--kf-dark), #16213e);
    color: white; padding: 80px 0 60px; text-align: center;
}
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { opacity: 0.8; font-size: 1.1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.85rem; opacity: 0.6; }
.breadcrumb a { color: white; }
.breadcrumb span { color: var(--kf-yellow); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { background: white; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 0.9rem; }
.form-control {
    width: 100%; padding: 12px 16px; border: 2px solid #eee;
    border-radius: var(--radius); font-family: var(--font-body);
    font-size: 0.95rem; transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--kf-blue); box-shadow: 0 0 0 3px rgba(41,171,226,0.15); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===========================
   DONATE PAGE
=========================== */
.donate-section { background: var(--kf-light); }
.donate-amounts { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.amount-btn {
    padding: 12px 24px; border: 2px solid #ddd;
    border-radius: 50px; cursor: pointer;
    font-family: var(--font-primary); font-weight: 700; font-size: 1rem;
    transition: var(--transition); background: white;
}
.amount-btn.active, .amount-btn:hover {
    border-color: var(--kf-blue); background: var(--kf-blue); color: white;
}
.donate-card {
    background: white; padding: 50px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .mission-band .container { grid-template-columns: 1fr; }
    .mission-divider { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .topbar { display: none; }
    .main-nav { display: none; position: fixed; inset: 0; top: 80px; background: white; flex-direction: column; padding: 30px; gap: 0; z-index: 999; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 0; border-bottom: 1px solid #eee; border-radius: 0; font-size: 1rem; }
    .main-nav .btn-donate { margin: 20px 0 0; border-radius: 50px; text-align: center; }
    .hamburger { display: flex; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero-stats { gap: 20px; }
    .footer-main { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .programs-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge-float { position: static; margin-top: 20px; display: inline-block; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .newsletter-form { flex-direction: column; padding: 16px; border-radius: var(--radius-lg); }
    .newsletter-form input { text-align: center; }
}

/* ===========================
   CONTEXT SECTION (ajouté)
=========================== */
.context-section { background: var(--kf-light); }
.context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}
.context-stat-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--kf-blue);
    transition: var(--transition);
    text-align: center;
}
.context-stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.context-stat-card--red { border-top-color: var(--kf-red); }
.context-stat-card--yellow { border-top-color: var(--kf-yellow); }
.context-stat-card--green { border-top-color: #00b894; }

.context-icon { font-size: 2.2rem; margin-bottom: 14px; }
.context-number {
    font-family: var(--font-primary);
    font-size: 3rem; font-weight: 800;
    color: var(--kf-dark); line-height: 1;
    margin-bottom: 10px;
}
.context-stat-card--red .context-number { color: var(--kf-red); }
.context-stat-card--yellow .context-number { color: #e6ab00; }
.context-stat-card--green .context-number { color: #00b894; }
.context-number sup { font-size: 0.5em; }
.context-stat-card h4 {
    font-size: 1rem; margin-bottom: 10px;
    color: var(--kf-dark);
}
.context-stat-card p {
    font-size: 0.88rem; color: var(--kf-gray);
    line-height: 1.65; margin: 0;
}
.context-cta {
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 680px;
    margin: 0 auto;
}
.context-cta p {
    font-size: 1.1rem;
    color: var(--kf-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

/* ===========================
   FOUNDER SECTION (ajouté)
=========================== */
.founder-section { background: white; }
.founder-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: center;
}
.founder-photo-wrap {
    position: relative;
}
.founder-photo-wrap img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 480px;
}
.founder-placeholder {
    background: linear-gradient(135deg, var(--kf-blue), var(--kf-blue-dark));
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: white; text-align: center;
}
.founder-initials {
    font-family: var(--font-primary);
    font-size: 5rem; font-weight: 800; line-height: 1;
    margin-bottom: 16px;
}
.founder-placeholder p { opacity: 0.85; font-size: 1rem; }
.founder-quote-bubble {
    position: absolute;
    bottom: -20px; right: -24px;
    background: linear-gradient(135deg, var(--kf-red), var(--kf-red-dark));
    color: white;
    padding: 18px 22px;
    border-radius: 16px 16px 4px 16px;
    max-width: 220px;
    font-size: 0.88rem;
    font-style: italic;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    line-height: 1.5;
}
.founder-content .label { margin-bottom: 12px; }
.founder-content h2 { margin-bottom: 6px; }
.founder-title {
    color: var(--kf-blue);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 24px !important;
}
.founder-content p { color: #555; margin-bottom: 16px; line-height: 1.8; }
.founder-content em { color: var(--kf-blue); font-style: normal; font-weight: 600; }
.founder-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ===========================
   NEWSLETTER ENRICHIE (ajouté)
=========================== */
.newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

/* ===========================
   RESPONSIVE — nouvelles sections
=========================== */
@media (max-width: 992px) {
    .founder-grid { grid-template-columns: 1fr; gap: 50px; }
    .founder-photo-wrap img,
    .founder-placeholder { height: 340px; }
    .founder-quote-bubble { position: static; margin-top: 16px; border-radius: 12px; max-width: 100%; }
}
@media (max-width: 600px) {
    .context-grid { grid-template-columns: 1fr; }
    .context-stat-card { padding: 28px 20px; }
}
