:root {
    --c1: #f5f9f0;
    --c2: #7dc142;
    --c3: #5a9e2f;
    --c4: #2d5a1b;
    --c5: #1a3a0f;
    --c6: #1c2b10;
    --accent: #d4f06b;
    --white: #ffffff;
    --text: #1c2b10;
    --text-light: #4a6035;
    --glass: rgba(255,255,255,0.7);
    --shadow: 0 8px 32px rgba(44,80,20,0.12);
    --shadow-lg: 0 20px 60px rgba(44,80,20,0.18);
}

@font-face {
    font-family: myFont;
    src: url(./font/Comfortaa-Regular.ttf);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: myFont; font-size: 1rem; }

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--c1);
    overflow-x: hidden;
}

/* ══════════════════════════════════════
   SPLASH SCREEN
══════════════════════════════════════ */
#splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(160deg, #eef7e5 0%, #f8fdf4 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#splash::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.2);
    animation: spin-slow 20s linear infinite;
}

#splash::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.12);
    animation: spin-slow 14s linear infinite reverse;
}

.splash_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: splash-logo-in 1s cubic-bezier(0.16,1,0.3,1) both;
    position: relative;
    z-index: 1;
}

.splash_logo img {
    width: 100px;
    filter: drop-shadow(0 10px 30px rgba(45,90,27,0.25));
    animation: logo-pulse 2.5s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

.splash_logo h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--c4);
    letter-spacing: 0.08em;
    animation: splash-logo-in 1s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.splash_tagline {
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: center;
    max-width: 400px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    animation: splash-logo-in 1s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

.splash_tagline span {
    color: var(--c3);
    font-weight: bold;
}

.splash_bar {
    width: 200px;
    height: 3px;
    background: rgba(125,193,66,0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    animation: splash-logo-in 1s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.splash_bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0; bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--c2), var(--accent));
    animation: bar-slide 2s 0.6s ease-in-out forwards;
}

@keyframes bar-slide {
    to { left: 100%; }
}

@keyframes splash-logo-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}


[class*="reveal-"] {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal_inverse { transform: translateY(-2.5rem); }
.reveal_visible  { opacity: 1 !important; transform: translateY(0) !important; }
.reveal-1 { transition-delay: 0.05s; }
.reveal-2 { transition-delay: 0.15s; }
.reveal-3 { transition-delay: 0.25s; }
.reveal-4 { transition-delay: 0.38s; }
.reveal-5 { transition-delay: 0.50s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.Hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* decorative circles */
.Hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.2);
    top: -120px; right: -120px;
    animation: spin-slow 30s linear infinite;
}
.Hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    border: 1.5px solid rgba(125,193,66,0.15);
    bottom: 80px; left: -80px;
    animation: spin-slow 20s linear infinite reverse;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── NAVBAR ── */
.header {
    position: fixed;
    top: 1rem; left: 50%;
    transform: translateX(-50%);
    width: 92%; height: 4rem;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(125,193,66,0.25);
    background: transparent;
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(44,80,20,0.08);
    transition: all 0.4s ease;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { width: 2rem; object-fit: cover; }
.logo h1 { font-size: 1.1rem; font-weight: bold; color: var(--c4); letter-spacing: 0.04em; }

.nav_links .links { display: flex; gap: 0.2rem; }
.nav_links a {
    text-decoration: none; padding: 0.4rem 0.9rem;
    border-radius: 2rem; color: var(--text-light);
    font-size: 0.9rem; transition: all 0.3s ease;
}
.nav_links a:hover { color: var(--c4); background: rgba(125,193,66,0.12); }

header .view {
    display: flex; align-items: center; gap: 0.4rem;
    text-decoration: none; padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--c3); border-radius: 2rem;
    color: var(--c3); font-size: 0.9rem; font-weight: bold;
    transition: all 0.3s ease; overflow: hidden; position: relative; z-index: 1;
}
header .view::before {
    content: ''; position: absolute; inset: 0;
    background: var(--c3); transform: scaleX(0);
    transform-origin: left; transition: transform 0.35s ease; z-index: -1;
}
header .view:hover::before { transform: scaleX(1); }
header .view:hover { color: var(--white); }
header .view svg { width: 1.2rem; height: 1.2rem; transition: transform 0.3s ease; }
header .view:hover svg { transform: rotate(45deg); }

.menu, .exit_menu { display: none; cursor: pointer; }
.mob_nav_links { display: none; }

/* ── HERO LAYOUT (2 colonnes) ── */
.hero_container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  min-height: 100vh;
  position: relative;
  z-index: 1;
    background:
        radial-gradient(ellipse at 70% 10%, rgba(212,240,107,0.45) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(125,193,66,0.2) 0%, transparent 50%),
        linear-gradient(160deg, #eef7e5 0%, #f8fdf4 100%);
}

.hero_container .part1 {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* aligné à gauche quand à 2 colonnes */
  text-align: left;
  gap: 1.5rem;
}

.hero_container .part1 h1 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: bold;
    color: var(--text);
    line-height: 1.15;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: #2d5a1b;
}

.hero_container .part1 h1 span {
    font-size: inherit;
    position: relative;
}


.hero_container .part1 p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero_container .part1 .help {
    display: inline-flex; align-items: center; gap: 0.6rem;
    text-decoration: none; padding: 0.8rem 2rem;
    background: var(--c4); border-radius: 3rem;
    color: var(--white); font-weight: bold; font-size: 0.95rem;
    width: fit-content; transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(45,90,27,0.3);
}
.hero_container .part1 .help:hover {
    background: var(--c3);
    box-shadow: 0 12px 40px rgba(45,90,27,0.4);
    transform: translateY(-2px);
}
.hero_container .part1 .help svg { width: 1.3rem; height: 1.3rem; transition: transform 0.3s ease; }
.hero_container .part1 .help:hover svg { transform: rotate(45deg); }

/* ── PART 2 — CARD STACK ── */
/* ── CARD STACK CORRIGÉ ── */
.hero_container .part2 {
    flex-shrink: 0;
    width: 20rem;
    height: 380px;
    position: relative;
}

.card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.85) translateY(12px);
    animation: cardCycle 15s ease-in-out infinite;
    will-change: transform, opacity;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*
  Cycle de 10s pour 5 cartes → chaque carte visible ~2s (20%)
  Elle monte de derrière vers l'avant, reste, puis replonge
*/

@keyframes cardCycle {
    0%   { opacity: 0; transform: scale(0.82) translateY(16px); }
    8%   { opacity: 1; transform: scale(1)    translateY(0);    }
    20%  { opacity: 1; transform: scale(1)    translateY(0);    }
    30%  { opacity: 0; transform: scale(0.82) translateY(16px); }
    100% { opacity: 0; transform: scale(0.82) translateY(16px); }
}

/* Chaque carte décalée de 2s */
.card-1 { animation-delay:  0s;  }
.card-2 { animation-delay: -3s;  }
.card-3 { animation-delay: -6s;  }
.card-4 { animation-delay: -9s;  }
.card-5 { animation-delay: -12s;  }
/* ══════════════════════════════════════
   HERO2 — PARTNERS + MISSION
══════════════════════════════════════ */
.Hero2 {
    width: 100%;
    background: var(--white);
    padding: 0 0 4rem;
}

.Hero2 .part1 {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.Hero2 .part1 .layer {
    width: 100%; height: 38vh;
    object-fit: cover; opacity: 0.15;
}
.Hero2 .part1 span {
    position: absolute;
    display: flex; align-items: center; justify-content: center;
    gap: 3rem; flex-wrap: wrap; padding: 0 2rem;
}
.Hero2 .part1 span img {
    height: 1.8rem;
    filter: grayscale(1);
    opacity: 0.45;
    transition: all 0.3s ease;
}
.Hero2 .part1 span img:hover { filter: grayscale(0); opacity: 1; }

.Hero2 .part2 {
    display: flex; flex-direction: column;
    align-items: center; gap: 1.5rem;
    padding: 3rem 2rem 0;
}
.Hero2 .part2 h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    text-align: center; color: var(--text);
    max-width: 680px; line-height: 1.5;
}
.Hero2 .part2 p {
    font-size: 1.05rem; text-align: center; color: var(--c3); font-weight: bold;
}

.Hero2 .part2 .multi_icons {
    display: flex; justify-content: center;
    align-items: center; gap: 0.8rem; flex-wrap: wrap;
    width: 100%; margin-bottom: 1rem;
}
.Hero2 .part2 .multi_icons [class*="icons"] { display: flex; gap: 0.8rem; }
.Hero2 .part2 .multi_icons span {
    padding: 0.9rem;
    border-radius: 1rem;
    background: var(--c1);
    border: 1px solid rgba(125,193,66,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.Hero2 .part2 .multi_icons span:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(125,193,66,0.2);
}
.Hero2 .part2 .multi_icons svg { width: 1.8rem; height: 1.8rem; }

/* ══════════════════════════════════════
   HERO3 — WHAT WE DO
══════════════════════════════════════ */
.Hero3 {
    width: 100%;
    padding: 5rem 5%;
    background: var(--c1);
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
}

.Hero3 .part3_1 { width: 100%; display: flex; justify-content: center; }
.Hero3 .part3_1 span {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.5rem 2.5rem;
    border: 1.5px solid var(--c3); border-radius: 3rem;
    background: rgba(125,193,66,0.08);
}
.Hero3 .part3_1 span h2 {
    color: var(--c3); font-size: 0.9rem;
    letter-spacing: 0.15em; text-transform: uppercase;
}

.Hero3 .part3_2 {
    width: 100%; display: flex;
    justify-content: center; gap: 2rem; flex-wrap: wrap;
}

.Hero3 .part3_2 span {
    width: 280px;
    background: var(--white);
    border: 1px solid rgba(125,193,66,0.15);
    border-radius: 1.5rem; overflow: hidden;
    display: flex; flex-direction: column; gap: 0.8rem;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.Hero3 .part3_2 span:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--c2);
}
.Hero3 .part3_2 span img {
    width: 100%; height: 160px; object-fit: cover;
    transition: transform 0.5s ease;
}
.Hero3 .part3_2 span:hover img { transform: scale(1.05); }
.Hero3 .part3_2 span h2 { color: var(--text); font-size: 1.05rem; padding: 0 1rem; }
.Hero3 .part3_2 span p { color: var(--text-light); font-size: 0.85rem; padding: 0 1rem; line-height: 1.6; }
.Hero3 .part3_2 span a {
    margin: 0 1rem 1rem;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border: 1px solid var(--c3); border-radius: 2rem;
    color: var(--c3); font-size: 0.85rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all 0.3s ease;
}
.Hero3 .part3_2 span a:hover { background: var(--c3); color: var(--white); }
.Hero3 .part3_2 span a svg { width: 1rem; height: 1rem; transition: transform 0.3s; }
.Hero3 .part3_2 span a:hover svg { transform: rotate(45deg); }

/* ══════════════════════════════════════
   HERO4 — IMPACT
══════════════════════════════════════ */
.Hero4 {
    width: 100%; padding: 2rem 1%;
    background: var(--white);
    display: flex; flex-direction: column; align-items: center;
}

.Hero4 .part1 {
    width: 98%; border-radius: 2rem;
    background: linear-gradient(135deg, var(--c4) 0%, var(--c5) 100%);
    padding: 4rem 2rem;
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
    position: relative; overflow: hidden;
}
.Hero4 .part1::before {
    content: '';
    position: absolute;
    width: 450px; height: 450px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,240,107,0.1), transparent 70%);
    top: -150px; right: -100px;
}

.Hero4 h1 { font-size: 2rem; color: var(--accent); letter-spacing: 0.05em; position: relative; z-index: 1; }

.Hero4 .part4_1 {
    display: flex; gap: 2rem; flex-wrap: wrap;
    justify-content: center; position: relative; z-index: 1;
}
.Hero4 .part4_1 span {
    width: 220px; padding: 2rem 1rem;
    border-radius: 1.5rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,240,107,0.2);
    display: flex; flex-direction: column;
    align-items: center; gap: 0.8rem;
    transition: all 0.4s ease;
}
.Hero4 .part4_1 span:hover {
    background: rgba(212,240,107,0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}
.Hero4 .part4_1 span h2 { font-size: 1.8rem; color: var(--accent); }
.Hero4 .part4_1 span p { color: rgba(255,255,255,0.75); text-align: center; font-size: 0.9rem; }

/* ══════════════════════════════════════
   HERO6 — DONATE
══════════════════════════════════════ */
.bg_fixed {
    position: fixed; z-index: -10;
    top: 0; bottom: 0; height: 100vh; width: 100%;
}
.bg_fixed img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) saturate(0.7); }

.Hero6 {
    height: 100vh; width: 100%;
    display: flex; justify-content: center; align-items: center;
}

.donate {
    width: 500px; padding: 3.5rem 2.5rem;
    border-radius: 2rem;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(125,193,66,0.3);
    display: flex; flex-direction: column;
    align-items: center; gap: 1.5rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.donate h1 { color: var(--text); font-size: 2rem; text-align: center; }
.donate p { color: var(--text-light); text-align: center; line-height: 1.6; }
.donate span { display: flex; gap: 1rem; }
.donate span a {
    text-decoration: none; padding: 0.7rem 2rem;
    border-radius: 3rem; font-size: 0.95rem; font-weight: bold;
    transition: all 0.35s ease;
}
.donate span a:first-child {
    background: transparent; border: 1.5px solid var(--c3); color: var(--c3);
}
.donate span a:first-child:hover { background: var(--c3); color: var(--white); }
.donate span a:last-child {
    background: var(--c4); color: var(--white); border: 1.5px solid var(--c4);
}
.donate span a:last-child:hover { background: var(--c3); border-color: var(--c3); }

/* ══════════════════════════════════════
   HERO7 — SOCIAL
══════════════════════════════════════ */
.Hero7 {
    width: 100%; padding: 5rem 2rem;
    background: var(--c1);
    display: flex; flex-direction: column;
    align-items: center; gap: 3rem;
}
.Hero7 h1 { font-size: 1.8rem; color: var(--text); font-weight: bold; }
.Hero7 .social { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.Hero7 .social a {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.8rem;
    width: 100px; padding: 1rem 1rem;
    border-radius: 1rem;
    background: var(--white);
    border: 1px solid rgba(125,193,66,0.2);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
}
.Hero7 .social a:hover {
    background: var(--c1);
    border-color: var(--c2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.Hero7 .social a img { width: 2.5rem; }
.Hero7 .social a p { color: var(--text-light); font-size: 0.85rem; font-weight: bold; }

/* READ MORE BUTTON */
.read_more {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border: 1.5px solid var(--c3);
    border-radius: 3rem;
    color: var(--c3);
    font-weight: bold;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.read_more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--c3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: -1;
}
.read_more:hover::before { transform: scaleX(1); }
.read_more:hover { color: var(--white); }
.read_more svg { width: 1.2rem; height: 1.2rem; transition: transform 0.3s ease; }
.read_more:hover svg { transform: rotate(45deg); }

/* STORY SECTION */
.story_section {
    width: 100%;
    background: var(--white);
    padding: 5rem 6%;
    display: flex;
    justify-content: center;
}
.story_content {
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}
.story_content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--c4);
    font-weight: bold;
    position: relative;
    padding-bottom: 0.8rem;
}
.story_content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: var(--c2);
    border-radius: 2px;
}
.story_content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}
.story_content p strong { color: var(--c4); }
.story_content p em {
    display: block;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--c2);
    background: rgba(125,193,66,0.06);
    border-radius: 0 0.8rem 0.8rem 0;
    color: var(--c4);
    font-style: italic;
    text-align: left;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
    width: 100%;
    background: var(--c5);
    border-top: 3px solid var(--c2);
}
.footer_container {
    display: flex; justify-content: space-evenly;
    padding: 3rem 2rem; flex-wrap: wrap; gap: 2rem;
}
.footer_container [class*="part"] {
    min-width: 200px; flex: 1;
    display: flex; flex-direction: column; gap: 1rem;
}
.footer_container h1 {
    color: var(--accent); font-size: 1rem;
    letter-spacing: 0.08em; text-transform: uppercase;
}
footer p, footer a, footer li { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer_container .part1 form { display: flex; flex-direction: column; gap: 0.5rem; }
.footer_container .part1 form label { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer_container .part1 form span { display: flex; gap: 0.5rem; }
.footer_container .part1 form input {
    flex: 1; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: 2rem;
    padding: 0.5rem 1rem; color: var(--white); outline: none; transition: border-color 0.3s;
}
.footer_container .part1 form input:focus { border-color: var(--accent); }
.footer_container .part1 form button {
    background: var(--c2); border: none; padding: 0.5rem 1.2rem;
    border-radius: 2rem; color: var(--c6); font-weight: bold; cursor: pointer; transition: background 0.3s;
}
.footer_container .part1 form button:hover { background: var(--accent); }

.footer_container .part2 ul { list-style: none; }
.footer_container .part2 li { margin-bottom: 0.3rem; }
.footer_container .part2 a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.3s; }
.footer_container .part2 a:hover { color: var(--accent); }

.footer_container .part3 { align-items: flex-start; }
.footer_container .part3 span:first-child { display: flex; gap: 1rem; }
.footer_container .part3 span:first-child a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer_container .part3 span:first-child a:hover { color: var(--accent); }
.footer_container .part3 span:first-child svg { width: 1.3rem; height: 1.3rem; }
.footer_container .part3 .logo { display: flex; align-items: center; gap: 0.5rem; }
.footer_container .part3 .logo img { width: 1.8rem; }
.footer_container .part3 .logo h1 { font-size: 1rem; }

footer .legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1rem 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
footer .legal p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media screen and (max-width: 60rem) { .nav_links { width: 20rem; } }
@media screen and (max-width: 55rem) { header .view, .nav_links a { font-size: 0.8rem; } }

@media screen and (max-width: 37rem) {
    .Hero {min-height: 80vh;}
    .header { height: 3.5rem; padding: 0 1rem; }
    .nav_links, header .view { display: none; }
    .menu { display: block; color: var(--c4); }
    .exit_menu { color: var(--c4); }
    .mob_nav_links {
        display: flex; position: fixed; top: 5rem; right: -100%; z-index: 1000; transition: right 0.4s ease;
    }
    .mob_nav_links .mob_links {
        padding: 1rem 0.8rem; width: 55vw; border-radius: 1rem;
        display: flex; flex-direction: column; gap: 0.4rem;
        background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
        border: 1px solid rgba(125,193,66,0.3); box-shadow: 0 20px 50px rgba(44,80,20,0.2);
    }
    .mob_links a {
        color: var(--text-light); padding: 0.5rem 1rem;
        border-radius: 0.5rem; text-decoration: none; transition: all 0.3s ease; font-size: 0.9rem;
    }
    .mob_links a:hover { background: rgba(125,193,66,0.1); color: var(--c4); }
    .hero_container { flex-direction: column; padding: 7rem 5% 3rem; text-align: center; }
    .hero_container .part1 h1{display: flex;flex-direction: column; font-size: 1.8rem;}
    .hero_container .part1 p {text-align: center;}
    .hero_container .part1 { max-width: 100%; align-items: center; }
    .hero_container .part2 { width: 80%; }
    .Hero3 .part3_2 span { width: 100%; max-width: 320px; }
    .donate { width: 90%; padding: 2.5rem 1.5rem; }
    .donate span { flex-direction: column; width: 100%; }
    .donate span a { text-align: center; }
    .footer_container { flex-direction: column; padding: 2rem 1.5rem; }
    .footer_container [class*="part"] { min-width: unset; width: 100%; }
    footer .legal { flex-direction: column; text-align: center; }
}
