/* ===========================
   Global Button — The ADR Initiative
   One style. Used across the entire site.
   =========================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--color-primary);
    border-radius: 50px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
    -webkit-font-smoothing: antialiased;
}

.btn:hover {
    background-color: #6b0a7a;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

/* ── Primary Pill ─────────────────────────────────────────── */

.btn-primary-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 50px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-primary-pill:hover {
    background-color: #6b0a7a;
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ── Outline Pill ─────────────────────────────────────────── */

.btn-outline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 28px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    background: transparent;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline-pill:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
