/* WMAF.me Theme - Light Japandi palette */
:root {
  /* Light Japandi defaults (warm, muted neutrals) */
  --background: #fcfbf9; /* Warm Off-White */
  --surface-secondary: #f7f3ed; /* Light wood / stone */
  --foreground: #44403c; /* Deep charcoal (primary text) */
  --accent: #d6b896; /* Soft beige / tan (sparingly) */
  --muted-dark: #000000; /* Optional true black */
  --border-color: #e9e6df; /* subtle divider */
  --text-muted: #6b6a66; /* muted supportive text */
  color-scheme: light;
}

/* Light theme explicit */
:root[data-theme="light"] {
  --background: #fcfbf9;
  --surface-secondary: #f7f3ed;
  --foreground: #44403c;
  --accent: #d6b896;
  --muted-dark: #000000;
  --border-color: #e9e6df;
  --text-muted: #6b6a66;
  color-scheme: light;
}

/* Compatibility variables used by layout.tsx */
:root, :root[data-theme="light"] {
  --surface-header: rgba(255,255,255,0.8);
  --surface-footer: rgba(255,255,255,0.7);
  --text-subtle: #6b6a66;
}
