/* ── Team Cloud – Theme Variables ──────────────────────────────────────────── */

/* Dark theme (default) */
:root {
  --bg: #111111;
  --bg-surface: #1a1a1a;
  --bg-raised: #202020;
  --border: #282828;
  --border-mid: #333333;
  --text: #f0f0f0;
  --text-muted: #888888;
  --text-dim: #444444;
  --gold: #c9a96e;
  --gold-hover: #b8924c;
  --gold-subtle: rgba(201,169,110,0.10);
  --green: #34c759;
  --green-bg: rgba(52,199,89,0.10);
  --green-border: rgba(52,199,89,0.22);
  --danger: #e05252;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

/* Light theme */
[data-theme="light"] {
  --bg: #f0f2f5;
  --bg-surface: #ffffff;
  --bg-raised: #f5f6f8;
  --border: #e0e3e8;
  --border-mid: #d0d4db;
  --text: #1a1a2e;
  --text-muted: #5a6072;
  --text-dim: #9aa0b0;
  --gold: #c9a96e;
  --gold-hover: #b8924c;
  --gold-subtle: rgba(201,169,110,0.10);
  --green: #2da44e;
  --green-bg: rgba(45,164,78,0.10);
  --green-border: rgba(45,164,78,0.22);
  --danger: #d63939;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

/* Navbar always stays dark navy */
.tc-nav {
  background: #1a1a2e !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
}

/* Light mode body */
[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

/* Light mode form controls */
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background: var(--bg-surface);
  border-color: var(--border-mid);
  color: var(--text);
}
[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  background: var(--bg-surface);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  color: var(--text);
}
[data-theme="light"] .form-control::placeholder { color: var(--text-dim); }

/* Light mode modal */
[data-theme="light"] .modal-content {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text);
}
[data-theme="light"] .modal-header {
  background: var(--bg-raised) !important;
  border-bottom: 1px solid var(--border) !important;
}
[data-theme="light"] .modal-footer {
  background: var(--bg-surface) !important;
  border-top: 1px solid var(--border) !important;
}
