/**
 * yelow-brand.css — Override old IBM Plex / green branding with new Inter / amber.
 * Include this AFTER theme.css or page-specific styles to rebrand.
 */

/* Font override */
body, input, select, textarea, button {
  font-family: 'Inter', -apple-system, system-ui, sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, system-ui, sans-serif !important;
}

/* Color overrides */
:root {
  --bg: #09090b;
  --surface: #111118;
  --elevated: #18181f;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --green: #fafafa;
  --green-dim: rgba(245,166,35,0.08);
  --green-glow: rgba(245,166,35,0.25);
  --green-solid: #f5a623;
  --accent: #f5a623;
  --white: #fafafa;
  --text: #e4e4e7;
  --text-dim: #a1a1aa;
  --text-muted: #52525b;
}

/* Focus ring color */
input:focus, select:focus, textarea:focus {
  border-color: rgba(245,166,35,0.4) !important;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.08) !important;
}

/* Button accent color */
.auth-btn, .bp, .book-submit, .cf-submit {
  background: #fafafa !important;
  color: #09090b !important;
}
