/* Support & Donate pages — charte graphique PyCon Togo */

:root {
    /* 2026 coming-soon inspired palette */
    --green: #00854c;
    --green-mid: #469a69;
    --green-light: #6ec592;
    --green-pale: #eef8f2;
    --green-dim: rgba(87, 182, 127, 0.12);

    --gold: #ffd43b;
    --gold-light: #ffdf70;
    --gold-pale: #fff9e0;

    --red: #ce1126;
    --red-light: #e53030;
    --red-pale: #fde8eb;

    --white: #ffffff;
    --off-white: #f9f9f9;
    --cream: #ffffff;

    --text: #334155;
    --text-mid: #5a6c7d;
    --text-muted: #7a8a99;
    --text-faint: #a4b0bb;

    --border: #e1e8ed;
    --border-mid: rgba(132, 142, 156, 0.35);

    --shadow-sm: 0 2px 8px rgba(90, 108, 125, 0.08);
    --shadow-md: 0 6px 24px rgba(90, 108, 125, 0.12);
    --shadow-lg: 0 16px 48px rgba(90, 108, 125, 0.14);
    --shadow-xl: 0 32px 80px rgba(90, 108, 125, 0.16);

    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 22px;
    --radius-pill: 100px;

    --nav-h: 132px;
    --max-w: 1160px;
}

/* ── PAGE SUPPORT — QR code centré full-height ────────── */
.support-qr-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #f4f8f7 0%, #e6f2ec 100%);
    padding: 24px;
}

.support-qr-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.support-qr-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-mid);
    margin: 0;
}

.support-qr-card {
    filter: drop-shadow(0 8px 32px rgba(16, 147, 49, .18));
    transition: transform .35s cubic-bezier(.4, 0, .2, 1),
        filter .35s cubic-bezier(.4, 0, .2, 1);
}

.support-qr-card:hover {
    transform: translateY(-5px) scale(1.01);
    filter: drop-shadow(0 18px 48px rgba(16, 147, 49, .28));
}

.support-qr-img {
    width: min(480px, 88vw);
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid #cce5d6;
    padding: 20px;
    background: #fff;
}

.support-qr-hint {
    font-size: 0.88rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* ── PAGE DONATE — Hero compact ───────────────────────── */
.donate-hero {
    background: linear-gradient(180deg, var(--green-mid) 0%, #3f8f62 56%, #32724f 100%);
    padding: 48px 0 36px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.donate-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, .06) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .05) 0%, transparent 50%);
    pointer-events: none;
}

.donate-hero .eyebrow {
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px;
}

.donate-hero h1 {
    color: #fff;
    margin: 8px 0 12px;
    font-size: 2rem;
}

.donate-hero h1 em {
    color: rgba(255, 255, 255, .88);
    font-style: normal;
}

.donate-hero-sub {
    font-size: 0.97rem;
    color: rgba(255, 255, 255, .78);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── SECTION DONATE ───────────────────────────────────── */
.donate-section {
    padding: 48px 0 72px;
}

.donate-layout {
    max-width: 820px;
    margin: 0 auto;
}

/* ── OPTIONS ──────────────────────────────────────────── */
.donate-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Les deux cards ont le même style */
.donate-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 36px 28px 32px;
    border-radius: 18px;
    text-decoration: none;
    background: #fff;
    color: #1d2630;
    border: 2px solid #8fcca3;
    box-shadow: 0 2px 12px rgba(16, 147, 49, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
    position: relative;
}

.donate-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 147, 49, .16);
    border-color: #109331;
    background: #f7fbf8;
}

/* Trait vert en haut de chaque card */
.donate-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: #109331;
    opacity: .5;
    transition: opacity .2s;
}

.donate-option:hover::before {
    opacity: 1;
}

/* Icon */
.donate-option-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #edf7f1;
    color: #109331;
}

/* Body */
.donate-option-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.donate-option-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1d2630;
    line-height: 1.2;
}

.donate-option-sub {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: #109331;
}

.donate-option-desc {
    font-size: 0.85rem;
    line-height: 1.58;
    color: #6c757d;
    margin-top: 4px;
}

/* Arrow */
.donate-option-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 1rem;
    font-weight: 700;
    color: #109331;
    opacity: .5;
    transition: transform .2s ease, opacity .2s;
}

.donate-option:hover .donate-option-arrow {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* Back link */
.donate-back {
    margin-top: 28px;
    text-align: center;
    font-size: 0.88rem;
    color: #6c757d;
}

.donate-back a {
    color: #109331;
    font-weight: 600;
}

.donate-back a:hover {
    text-decoration: underline;
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 640px) {
    .donate-options {
        grid-template-columns: 1fr;
    }

    .donate-option {
        padding: 28px 22px 24px;
    }

    .support-qr-img {
        width: min(340px, 90vw);
    }

    .donate-hero h1 {
        font-size: 1.6rem;
    }
}