/* Astrologer-Desk — design tokens.
   Default = dark (rose-tinted). Themes apply via body class. */

:root{
  --bg:#140b0e;--bg-2:#1a1013;--panel:#1f1418;--panel-2:#251a1e;--panel-hi:#2c1f24;
  --line:#3a2a30;--line-soft:#2c2025;
  --rose:#d98aa0;--rose-dim:#a86b7c;--rose-deep:#8a4d5e;
  --gold:#d9b06a;--gold-dim:#9c7f4d;--sage:#8fb08a;--sage-dim:#6d8a69;
  --terra:#d98a6a;--terra-dim:#a8694d;--violet:#a98ad9;
  --txt:#e8dcd8;--txt-2:#b8a8a4;--txt-3:#857571;--txt-faint:#5f5350;
  --left-w:400px;--right-w:300px;
}

/* Themes — Dark is the :root default; rest applied via body class.
   Synced with main app via localStorage key 'jyotish-theme'. */

body.theme-light{
  --bg:#F5F0E6;--bg-2:#EDE7D8;--panel:#FFFFFF;--panel-2:#F8F3E7;--panel-hi:#E8E0CE;
  --line:#c8bda8;--line-soft:#d8cfba;
  --rose:#a04860;--rose-dim:#7a3548;--rose-deep:#5a2838;
  --gold:#8A6F35;--gold-dim:#6e5828;
  --sage:#4a6d46;--sage-dim:#385432;
  --terra:#a8593e;--terra-dim:#8a4830;
  --violet:#5a3a7a;
  --txt:#1A1610;--txt-2:#3a3328;--txt-3:#6B6050;--txt-faint:#8a8170;
}
body.theme-ambient{
  --bg:#1A1512;--bg-2:#221C16;--panel:#2A221C;--panel-2:#322820;--panel-hi:#3a3024;
  --line:#5a4838;--line-soft:#3a2e26;
  --gold:#D4A84C;--gold-dim:#a07f38;
  --txt:#E8DCC4;--txt-2:#B8A480;--txt-3:#8a7a60;--txt-faint:#6a5a44;
}
body.theme-pearl{
  --bg:#F9F6EE;--bg-2:#F3EFE4;--panel:#FFFFFF;--panel-2:#FAF6EC;--panel-hi:#EAE3D2;
  --line:#c8bda8;--line-soft:#d8cfba;
  --gold:#8B6C2E;--gold-dim:#6e5424;
  --rose:#a04860;--rose-dim:#7a3548;--rose-deep:#5a2838;
  --sage:#4a6d46;--sage-dim:#385432;
  --terra:#a8593e;--terra-dim:#8a4830;
  --txt:#2B2418;--txt-2:#4a4030;--txt-3:#6B5D44;--txt-faint:#8a7a5c;
}
body.theme-saffron{
  --bg:#1A1208;--bg-2:#22180D;--panel:#2A1F12;--panel-2:#332618;--panel-hi:#3a2c1c;
  --line:#5a4628;--line-soft:#3a2e1e;
  --gold:#E89B4E;--gold-dim:#b8773a;
  --rose:#e0855a;--rose-dim:#b06846;--rose-deep:#8a4a32;
  --sage:#a8a458;--sage-dim:#7a7842;
  --terra:#e89b4e;--terra-dim:#b8773a;
  --violet:#c8895a;
  --txt:#F5E6CC;--txt-2:#D4BA94;--txt-3:#a08960;--txt-faint:#705c40;
}
body.theme-beige{
  --bg:#F0E8D8;--bg-2:#E8DECA;--panel:#FAF3E2;--panel-2:#F3EAD3;--panel-hi:#E2D5B8;
  --line:#b8a888;--line-soft:#c8b898;
  --gold:#8A6F35;--gold-dim:#6e5828;
  --rose:#a04860;--rose-dim:#7a3548;--rose-deep:#5a2838;
  --sage:#5a7d56;--sage-dim:#456442;
  --terra:#a8593e;--terra-dim:#8a4830;
  --violet:#5a3a7a;
  --txt:#2a2418;--txt-2:#4a4230;--txt-3:#6b6048;--txt-faint:#8a7d60;
}
/* Classic — Drik panchang–style warm saffron-cream with brick-red accents */
body.theme-classic{
  --bg:#f5d99a;--bg-2:#efce82;--panel:#fae5a8;--panel-2:#f5dc94;--panel-hi:#ebcd7a;
  --line:#b88848;--line-soft:#c89858;
  --rose:#8a2818;--rose-dim:#6a1f12;--rose-deep:#4a150c;
  --gold:#a04818;--gold-dim:#7a3612;
  --sage:#5a6018;--sage-dim:#444812;
  --terra:#a83a1a;--terra-dim:#7a280f;
  --violet:#5a3818;
  --txt:#2a1a08;--txt-2:#4a2818;--txt-3:#6a3818;--txt-faint:#8a583a;
}

/* High-contrast mode — accessibility overlay, orthogonal to theme.
   Declared LAST so it wins when both .hc and any .theme-* are on body. */
body.hc{
  --bg:#0a0405;--bg-2:#120808;--panel:#2a1f24;--panel-2:#322830;--panel-hi:#3a2f35;
  --line:#7a6a70;--line-soft:#5a4a50;
  --txt:#ffffff;--txt-2:#f0f0f0;--txt-3:#cccccc;--txt-faint:#a0a0a0;
}
