/* ============================================================
   theme.css
   Shared design tokens & base typography for the whole app.
   Loaded on every page (auth pages and the dashboard shell).
   Palette aligned with the Nexxarra public site (linen / moss / clay / sage).
   ============================================================ */

:root{
  --primary:#2D3B2E;--primary-dark:#1B2419;--primary-light:#E2E7DE;
  --accent:#C76B4A;--accent2:#E08562;--platform:#6d28d9;--platform-light:#f3eafe;
  --tenant:#7C9070;--tenant-light:#E7EEE2;
  --success:#7C9070;--warning:#f59e0b;--danger:#ef4444;--info:#3b82f6;
  --sidebar-w:264px;--header-h:64px;
  --bg:#F6F2EC;--card-bg:#ffffff;--text:#1F2420;--muted:#83786A;
  --border:rgba(31,36,32,0.12);--radius:14px;--shadow:0 16px 40px -16px rgba(31,36,32,0.18);
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{font-family:'Nunito Sans',sans-serif;color:var(--text);font-size:14px;background:var(--bg);}
h1,h2,h3,h4,h5,h6,.brand-title,.page-title{font-family:'Fraunces',serif;font-weight:500;letter-spacing:-0.01em;}

.text-xs{font-size:11px;}
.section-gap{margin-bottom:24px;}

/* generic form look shared by auth + dashboard forms */
.form-label{font-size:12px;font-weight:600;margin-bottom:5px;color:var(--text);}
.form-control,.form-select{font-size:13px;border-color:var(--border);border-radius:9px;}
.form-control:focus,.form-select:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(199,107,74,.15);}

.btn-primary{background:var(--primary);border-color:var(--primary);}
.btn-primary:hover{background:var(--accent);border-color:var(--accent);}
.btn-outline-primary{color:var(--primary);border-color:var(--primary);}
.btn-outline-primary:hover{background:var(--primary);}
