/* ============================================================================
   theme.css — Falcon Defense & Aerospace
   Runtime theme overrides. Applied via [data-theme="..."] on <html>.
   Modern Minimalist = default (no override needed beyond :root).
   Clean Light       = [data-theme="clean-light"]
   ============================================================================ */

/* -------- Modern Minimalist (default) -------- */
:root,
[data-theme="modern-minimalist"] {
  --color-bg:            #FFFFFF;
  --color-surface:       #FFFFFF;
  --color-surface-alt:   #F5F7FA;
  --color-border:        #E2E8F0;

  --color-topbar:        #36454F;
  --color-primary:       #36454F;
  --color-secondary:     #708090;
  --color-tertiary:      #94A3B8;

  --color-text:          #1C2128;
  --color-text-muted:    #5A6472;
  --color-text-dim:      #94A3B8;
  --color-text-on-dark:  #FFFFFF;

  --color-positive:      #059669;
  --color-negative:      #D32F2F;
  --color-warning:       #F59E0B;
  --color-info:          #0EA5E9;

  --shadow-card:         0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-card-hover:   0 4px 12px rgba(15,23,42,0.08);
}

/* -------- Clean Light (alternate) -------- */
[data-theme="clean-light"] {
  --color-bg:            #F3F4F6;
  --color-surface:       #FFFFFF;
  --color-surface-alt:   #FFFFFF;
  --color-border:        #E5E7EB;

  --color-topbar:        #0F172A;
  --color-primary:       #006AFF;
  --color-secondary:     #1A7F64;
  --color-tertiary:      #94A3B8;

  --color-text:          #0F172A;
  --color-text-muted:    #475569;
  --color-text-dim:      #94A3B8;
  --color-text-on-dark:  #F8FAFC;

  --color-positive:      #059669;
  --color-negative:      #D32F2F;
  --color-warning:       #F59E0B;
  --color-info:          #0EA5E9;

  --shadow-card:         0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-card-hover:   0 4px 12px rgba(15,23,42,0.10);
}

/* Status colors and year-palette never change across themes. */
