/*
 * adminkit-root-override.css
 * ─────────────────────────────────────────────────────────
 * Runtime override for ADMINKIT theme — copy of SCSS root values
 * Drop this file into the project to override compiled defaults
 * at runtime. Do not include Sass syntax; use concrete hex/RGB values.
 * CTA has been removed in favor of --lumen-accent.
 */

:root {

    /* ADMINKIT core palette */
    --lumen-primary: #0029EC;
    --lumen-secondary: #00015A;
    --lumen-accent: #5abaff;

    /* ── General ────────────────────────────────── */
    /* Page background color — overrideable at runtime */
    --lumen-bg-body: #f5f6f8; /* light gray base */

    /*For CSS background pattern*/
    --lumen-bg-pattern-color: rgba(0, 0, 0, 0.03);
    --lumen-bg-pattern-dot-size: 1px;
    --lumen-bg-pattern-size: 20px;

    /* Radial gradients */
    --lumen-radial-gradient-light: #0029EC;
    --lumen-radial-gradient-dark: #00015A;

    --lumen-link-color: var(--lumen-secondary);
    --lumen-link-hover-color: var(--lumen-primary);
    --lumen-border-radius: 0.5rem;

    /* Typography & weights */
    --lumen-font-family-base: "Rethink Sans", sans-serif;
    --lumen-body-font-weight: 500;
    --lumen-bold-font-weight: 700;

    /* Resource / card helpers */
    --lumen-resource-btn-border-radius: 1rem;
    --lumen-resource-icon-font-size: 1.5rem;
    --lumen-resource-title-font-size: 1rem;
    --lumen-card-addressbook-image-width: 30px;

    /* Spacers */
    --bs-card-spacer-y: .5rem;
    --bs-card-spacer-x: 1.3rem;
    --bs-card-cap-padding-x: .5rem;
    --bs-card-cap-padding-y: 1.3rem;

    /* ── Bootstrap bridge vars ──────────────────────────── */
    --bs-primary: var(--lumen-primary);
    --bs-secondary: var(--lumen-secondary);
    --bs-nav-link-color: var(--lumen-link-color);
    --bs-nav-link-hover-color: var(--lumen-link-hover-color);
    --bs-link-color: var(--lumen-link-color);
    --bs-link-hover-color: var(--lumen-link-hover-color);
    --bs-border-radius: var(--lumen-border-radius);
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-btn-border-radius: var(--lumen-border-radius);
}
