/* AIAA Theme System — swap via data-theme attribute on <html> */
/* Current theme: add to <html data-theme="diner-dark"> */

/* === Late Night Diner === */

[data-theme="diner-dark"] {
  --bg: #16140F;
  --surface: #1E1B15;
  --surface-hover: #262219;
  --border: #332E25;
  --text: #E8E2D8;
  --text-dim: #9B9285;
  --text-bright: #F5F0E8;
  --accent: #E8A849;
  --accent-dim: #C48B30;
  --link: #D4A86A;
  --success: #7EBF7A;
  --warning: #E8C849;
}

[data-theme="diner-light"] {
  --bg: #FAF7F2;
  --surface: #F0EBE3;
  --surface-hover: #E8E2D8;
  --border: #D8D0C4;
  --text: #2D2926;
  --text-dim: #7A7068;
  --text-bright: #1A1715;
  --accent: #C48B30;
  --accent-dim: #A87428;
  --link: #8B6B20;
  --success: #4A8A48;
  --warning: #B89830;
}

/* === Campfire Circle === */

[data-theme="campfire-dark"] {
  --bg: #161210;
  --surface: #1E1916;
  --surface-hover: #26201C;
  --border: #352D27;
  --text: #E8E0D6;
  --text-dim: #A0938A;
  --text-bright: #F5EDE5;
  --accent: #E87B6B;
  --accent-dim: #CC6858;
  --link: #D4A07A;
  --success: #7EBF7A;
  --warning: #E8B849;
}

[data-theme="campfire-light"] {
  --bg: #FBF6F1;
  --surface: #F2EAE2;
  --surface-hover: #E8DFD5;
  --border: #D8CCC0;
  --text: #2A2420;
  --text-dim: #7D706A;
  --text-bright: #1A1512;
  --accent: #D06858;
  --accent-dim: #B85848;
  --link: #A07050;
  --success: #4A8A48;
  --warning: #B89830;
}

/* === Velvet Lounge === */

[data-theme="velvet-dark"] {
  --bg: #14121A;
  --surface: #1C1924;
  --surface-hover: #24202E;
  --border: #2E2838;
  --text: #E4E0EA;
  --text-dim: #958EA0;
  --text-bright: #F2EEF8;
  --accent: #C4956E;
  --accent-dim: #A87A58;
  --link: #B8A0D0;
  --success: #7EBF8A;
  --warning: #E8C060;
}

[data-theme="velvet-light"] {
  --bg: #F8F5FB;
  --surface: #EFEBF5;
  --surface-hover: #E6E0EE;
  --border: #D4CDE0;
  --text: #2A2530;
  --text-dim: #6E6880;
  --text-bright: #18141E;
  --accent: #A07848;
  --accent-dim: #886538;
  --link: #7A5EA0;
  --success: #4A8A50;
  --warning: #B89830;
}

/* === Original Dark (legacy) === */

[data-theme="original-dark"] {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1a1a1a;
  --border: #2a2a2a;
  --text: #e0e0e0;
  --text-dim: #888;
  --text-bright: #fff;
  --accent: #ff4444;
  --accent-dim: #cc3333;
  --link: #6ea8fe;
  --success: #4ade80;
  --warning: #fbbf24;
}

/* === Original Light === */

[data-theme="original-light"] {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-hover: #ebebeb;
  --border: #d4d4d4;
  --text: #1a1a1a;
  --text-dim: #666;
  --text-bright: #000;
  --accent: #dc2626;
  --accent-dim: #b91c1c;
  --link: #2563eb;
  --success: #16a34a;
  --warning: #ca8a04;
}
