:root {
    /* Brand: Soft Terracotta + Clay Accent */
    --brand-bg: #2b211b;
    --brand: #c86b3c;
    --brand-hover: #d97c49;
    --brand-ink: #241b15;
    --brand-tint: #f9f4f1;

    /* Accent: Gentle Clay + Sand */
    --accent: #b45f32;
    --accent-light: #d89064;

    /* CTA / Secondary Highlight */
    --donate: #d26735;
    --donate-hover: #b9562a;
    --donate-tint: #fff5ee;

    /* Backgrounds */
    --bg: #ffffff;
    --bg-alt: #fbf9f7;
    --surface: #ffffff;
    --footer-bg: #2b211b;

    /* Footer ink */
    --footer-ink: #faf6f4;
    --footer-ink-muted: #d9cfc8;

    /* Text & Borders */
    --ink: #1e1814;
    --ink-strong: #120e0b;
    --muted: #5f5a56;
    --border: #e6dfda;
    --ring: rgba(210, 103, 53, 0.35);

    /* Typography */
    --fs-0: clamp(0.95rem, 0.9rem + .35vw, 1rem);
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Gradients */
    --grad-sky: linear-gradient(135deg,
            rgba(200, 107, 60, 0.12),
            rgba(210, 103, 53, 0.08));
}

/* ========================================
   BUTTONS — Professional Modern Variant
   ======================================== */

.btn {
    --lift: 1px;
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .75rem 1.25rem;
    border-radius: .6rem;
    border: 1px solid transparent;
    text-decoration: none;
    line-height: 1;
    font-size: var(--fs-00);
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    will-change: transform, box-shadow, background;
}

/* Focus & motion safety */
.btn:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 2px;
}

@media (prefers-reduced-motion:no-preference) {
    .btn:hover {
        transform: translateY(calc(-1 * var(--lift)));
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
}

/* ---------- Primary ---------- */
.btn-primary {
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--brand) 96%, #fff) 0%,
            var(--brand) 100%);
    color: #fff;
    border: 1px solid color-mix(in srgb, var(--brand) 85%, #000);
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--brand-hover) 90%, #fff);
}

.btn-primary:active {
    background: color-mix(in srgb, var(--brand) 80%, #000);
}

/* ---------- Outline ---------- */
.btn-outline {
    border-color: color-mix(in srgb, var(--brand) 70%, var(--border));
    background: transparent;
    color: var(--brand);
}

.btn-outline:hover {
    background: color-mix(in srgb, var(--brand-tint) 90%, #fff);
    border-color: var(--brand);
}

.btn-outline:active {
    background: color-mix(in srgb, var(--brand-tint) 80%, #fff);
}

/* ---------- Contrast ---------- */
.btn-contrast {
    background: #fff;
    color: var(--brand-ink);
    border: 1px solid color-mix(in srgb, var(--brand-ink) 30%, var(--border));
}

.btn-contrast:hover {
    background: #fafafa;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* ---------- Ghost ---------- */
.btn-ghost {
    border-color: transparent;
    background: transparent;
    color: var(--brand);
    text-decoration: underline;
}

.btn-ghost:hover {
    color: var(--brand-hover);
    text-decoration: none;
}

/* ---------- Donate (emphasis) ---------- */
.btn-donate,
.btn-donate-lg {
    background: linear-gradient(180deg,
            color-mix(in srgb, var(--donate) 95%, #fff) 0%,
            var(--donate) 100%);
    color: #fff;
    border: 1px solid color-mix(in srgb, var(--donate) 80%, #000);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--donate) 25%, transparent);
}

.btn-donate:hover,
.btn-donate-lg:hover {
    background: var(--donate-hover);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--donate) 35%, transparent);
}

.btn-donate:active {
    background: color-mix(in srgb, var(--donate) 80%, #000);
}

.btn-donate-lg {
    padding: .95rem 1.35rem;
    border-radius: .7rem;
    font-weight: 700;
}

/* ---------- Block ---------- */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ---------- Icons inside buttons ---------- */
.btn i {
    font-size: 0.95em;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.btn:hover i {
    transform: scale(1.05);
}

/* === TEAM IMAGE STYLE FIX === */
.card-img-top {
    width: 100%;
    height: 220px;
    /* adjust size here */
    object-fit: cover;
    /* keeps faces centered, cropped neatly */
    border-radius: 50%;
    /* makes them circular */
    margin-top: 1rem;
    max-width: 180px;
    /* controls overall width */
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect – subtle zoom + glow */
.card-img-top:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Center images inside the card */
.card {
    padding-top: 1rem;
    border: none;
    background-color: #fff;
    border-radius: 1rem;
}

/* Optional – make cards a bit softer */
.card-body {
    background-color: #f9fafc;
    border-top: 1px solid #eee;
    border-radius: 0 0 1rem 1rem;
}
    
.hero-article {
    position: relative;
    height: 75vh;
    color: #fff;
    background: #000;
    overflow: hidden;
}

.hero-article img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.chip-amount[aria-pressed="true"] {
    background-color: #0b5d66;
    color: #fff;
}

.notice {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.notice.success {
    background-color: #d1e7dd;
    color: #0f5132;
}

.notice.error {
    background-color: #f8d7da;
    color: #842029;
}

.notice--hide {
    opacity: 0;
    transition: opacity 0.4s ease;
}