/*
 * Shared design tokens for skelbiuosi.lt.
 *
 * Single source of truth for both surfaces:
 *   - public site  (src/Web/Shared/Layout/Main/layout.php)
 *   - admin        (src/Admin/Kernel/AdminLayout/layout.php, as AdminLTE variable overrides)
 *
 * Coolors palette 386641-6A994E-A7C957-F2E8CF-BC4749; text tokens clear WCAG AA.
 * #6A994E is 3.3:1 on white — decorative only; muted text uses its shade #557A3E.
 *
 * --c-cta (red) carries destructive and alarming meaning here: delete buttons,
 * error banners, .owner-btn-danger. Money CTAs therefore use --c-pay (green)
 * instead — a payer being asked to commit funds should not be looking at the
 * same colour the site uses for "this will destroy something".
 */
:root {
    --c-base: #A7C957;
    --c-green-mid: #6A994E;
    --c-primary: #386641;
    --c-link: #386641;
    --c-cta: #BC4749;
    --c-cta-hover: #9E3C3E;
    /* white on #386641 is 6.7:1, on #2C5134 9.0:1 — both clear AA for button text.
       --c-pay-mid is the hover-gradient highlight and the lightest point the label
       ever sits on: white on #4A7D53 is 4.8:1, so the sweep never drops below AA. */
    --c-pay: #386641;
    --c-pay-hover: #2C5134;
    --c-pay-mid: #4A7D53;
    --c-nav-bg: #386641;
    --c-bg: #F3F5EF;
    --c-panel: #FFFFFF;
    --c-border: #C5CDAD;
    --c-text: #292E1B;
    --c-muted: #557A3E;
    --c-price: #BC4749;
}
