/**
 * Brand V2: base.css - Tokens, variables, typography, resets.
 */

:root {
  --color-brand-bg: #f8f9fa; /* Light gray base background */
  --color-brand-card: #ffffff; /* Clean white card backgrounds */
  --color-brand-border: #e9ecef; /* Soft gray border lines */
  --color-brand-text-dark: #212529; /* Dark gray body and heading text */
  --color-brand-text-muted: #6c757d; /* Muted gray for subtitles and captions */
  --color-brand-primary: #800020; /* Burgundy accent */
  --color-brand-secondary: #e65c00; /* Orange secondary accent */
  --color-brand-accent-light: #f8f9fa; /* Soft highlight background */
}

/* Body & Layout Defaults */
body.brand-v2-active {
  background-color: var(--color-brand-bg) !important;
  color: var(--color-brand-text-dark) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  margin: 0;
}
