/* ========================================
   Battle4Life Foundation — nonprofit-specific styles
   Layered on top of the shared style.css (same tokens/palette).
   ======================================== */

/* The logo is a circular badge on a black tile — clip to a circle so it
   reads cleanly on the dark nav/footer instead of as a black square. */
.logo-img,
.footer-logo {
    border-radius: 50%;
}
.nav-logo .brand-word {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
}
.nav-logo .brand-word span { color: var(--primary); }

/* Hero badge variant — show the logo big on the home hero */
.hero-badge {
    width: clamp(150px, 22vw, 230px);
    height: auto;
    border-radius: 50%;
    margin-bottom: 8px;
    box-shadow: 0 0 60px rgba(228, 21, 27, 0.25);
}
.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(20px, 3.4vw, 34px);
    letter-spacing: 0.06em;
    color: var(--gray-light);
    margin-top: 4px;
}
.hero-tagline span { color: var(--primary); }

/* ========================================
   Impact stat band — full-width red strip
   ======================================== */
.impact-band {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 64px 0;
}
.impact-band .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.impact-stat .num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
    color: var(--white);
}
.impact-stat .lbl {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 768px) {
    .impact-band .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

/* ========================================
   Mission split (intro on home / about)
   ======================================== */
.lead {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--light);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.55;
}
.lead strong { color: var(--primary); font-weight: 600; }

/* ========================================
   Ways to give / get-involved cards
   ======================================== */
.give-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.give-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}
.give-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.give-card.featured {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(228, 21, 27, 0.12) 100%);
    border-color: var(--primary);
}
.give-amount {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.give-card h3 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.give-card p { color: var(--gray-light); font-size: 15px; margin-bottom: 24px; flex: 1; }
@media (max-width: 1024px) { .give-grid { grid-template-columns: 1fr; } }

/* Suggested one-time amounts row (placeholder donate) */
.amount-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 8px 0 28px;
}
.amount-chip {
    min-width: 96px;
    padding: 16px 20px;
    background: var(--dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.amount-chip:hover, .amount-chip.active {
    border-color: var(--primary);
    background: rgba(228, 21, 27, 0.1);
}
.amount-chip .a { font-family: var(--font-display); font-size: 30px; color: var(--white); line-height: 1; }
.amount-chip .d { display: block; font-size: 11px; color: var(--gray-light); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

.donate-note {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    line-height: 1.7;
}
.coming-soon-pill {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-radius: 999px;
}

/* ========================================
   Story / testimonial cards
   ======================================== */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.story-card {
    background: var(--dark);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 32px;
}
.story-card .quote {
    font-size: 18px;
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 20px;
}
.story-card .who { font-weight: 700; }
.story-card .who span { display: block; color: var(--gray-light); font-weight: 400; font-size: 14px; margin-top: 2px; }
@media (max-width: 768px) { .stories-grid { grid-template-columns: 1fr; } }

/* ========================================
   Sponsors / partners strip
   ======================================== */
.sponsors { background: var(--dark); padding: 64px 0; }
.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.sponsor-chip {
    padding: 18px 32px;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-light);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ========================================
   Transparency / trust block
   ======================================== */
.trust {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust .t-item h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}
.trust .t-item p { color: var(--gray-light); font-size: 14px; }
@media (max-width: 768px) { .trust { grid-template-columns: 1fr; } }

/* ========================================
   Page hero (interior pages) — compact
   ======================================== */
.page-hero {
    padding: 150px 0 70px;
    text-align: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.page-hero .section-tag { margin-bottom: 14px; }
.page-hero h1 {
    font-size: clamp(40px, 7vw, 80px);
    color: var(--white);
}
.page-hero h1 .highlight { color: var(--primary); }
.page-hero p {
    color: var(--gray-light);
    max-width: 640px;
    margin: 18px auto 0;
    font-size: 17px;
}

/* Generic prose blocks on interior pages */
.prose p { color: var(--gray-light); font-size: 17px; margin-bottom: 18px; }
.prose p strong { color: var(--light); }

/* Steps list (how it works / get involved) */
.steps { display: grid; gap: 16px; max-width: 760px; margin: 0 auto; }
.step {
    display: flex;
    gap: 20px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
}
.step .n {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    border-radius: 50%;
}
.step h3 { font-family: var(--font-body); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.step p { color: var(--gray-light); font-size: 15px; }
