/* Vondr brand override — scoped under .theme-vondr, loaded after /style.css.
   Palette source: vondr/src/theme/tokens.ts (dark instrument panel, amber accent). */

.theme-vondr.bg-background,
.theme-vondr .bg-background { background-color: #0c0d10; }

.theme-vondr.text-on-surface,
.theme-vondr .text-on-surface { color: #eef1f4; }

.theme-vondr .text-on-surface-variant { color: #9aa2ad; }
.theme-vondr .text-on-surface-variant\/80 { color: rgba(154,162,173,.8); }
/* Alpha raised above the naive /70,/60 values — the naive values fail WCAG AA on this dark background (see commit eace978). Do not "simplify" back down. */
.theme-vondr .text-on-surface-variant\/70 { color: rgba(154,162,173,.8); }
.theme-vondr .text-on-surface-variant\/60 { color: rgba(154,162,173,.91); }

.theme-vondr .text-primary { color: #ff8a24; }
.theme-vondr .hover\:text-primary:hover { color: #ff8a24; }
.theme-vondr .text-secondary { color: #ffb469; }

.theme-vondr .bg-primary { background-color: #ff8a24; }
.theme-vondr .bg-primary\/5 { background-color: rgba(255,138,36,.05); }
.theme-vondr .text-on-primary { color: #0c0d10; }
.theme-vondr .border-primary { border-color: #ff8a24; }

.theme-vondr .bg-surface\/90 { background-color: rgba(12,13,16,.9); }
.theme-vondr .bg-surface-container-high { background-color: #1b1e24; }
.theme-vondr .bg-surface-container { background-color: #15171c; }

.theme-vondr .border-outline-variant\/30 { border-color: rgba(42,46,55,.3); }
.theme-vondr .border-outline-variant\/20 { border-color: rgba(42,46,55,.2); }
.theme-vondr .border-outline-variant\/10 { border-color: rgba(42,46,55,.1); }

.theme-vondr.selection\:bg-secondary-fixed ::selection,
.theme-vondr.selection\:bg-secondary-fixed::selection,
.theme-vondr.selection\:bg-secondary-fixed ::-moz-selection,
.theme-vondr.selection\:bg-secondary-fixed::-moz-selection { background-color: #ff8a24; }
.theme-vondr.selection\:text-on-secondary-fixed ::selection,
.theme-vondr.selection\:text-on-secondary-fixed::selection,
.theme-vondr.selection\:text-on-secondary-fixed ::-moz-selection,
.theme-vondr.selection\:text-on-secondary-fixed::-moz-selection { color: #0c0d10; }

/* Signature element: amber instrument-needle underline beneath the H1 */
.theme-vondr .vondr-glow {
  text-shadow: 0 0 30px rgba(255,138,36,.25);
}
.theme-vondr .vondr-glow::after {
  content: '';
  display: block;
  width: 96px;
  height: 3px;
  margin-top: 20px;
  background: linear-gradient(90deg, #ff8a24, #ffb469);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255,138,36,.6);
}

/* Real temperatures card: icon tints toward the red warning zone */
.theme-vondr [data-tint="warn"] .material-symbols-outlined { color: #ff4d4d; }
