/* Four Seasons — Platform-wide theme
   White background, black text, no color accent.
   Clean, minimal luxury aesthetic.

   Usage: <link rel="stylesheet" href="/Platform/Styles/four-seasons.css">
   All apps that use this theme get the same look. */

:root {
  /* Backgrounds */
  --fs-bg: #ffffff;
  --fs-bg-alt: #fafafa;
  --fs-bg-inset: #f5f5f5;
  --fs-bg-hover: #f0f0f0;

  /* Borders */
  --fs-border: #e0e0e0;
  --fs-border-light: #eeeeee;

  /* Text */
  --fs-text: #111111;
  --fs-text-body: #333333;
  --fs-text-secondary: #666666;
  --fs-text-muted: #999999;
  --fs-text-faint: #bbbbbb;

  /* Accent — black, not gold, not blue, just black */
  --fs-accent: #111111;
  --fs-accent-hover: #333333;

  /* Semantic */
  --fs-success: #2d7d46;
  --fs-error: #c0392b;
  --fs-warning: #b8860b;

  /* Typography */
  --fs-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-mono: 'SF Mono', SFMono-Regular, Consolas, monospace;

  /* Shadows */
  --fs-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --fs-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}
