/*
Theme Name: EarthbreakDesigns Blank Slate
Author: Your Name
Description: A minimalist, Tailwind-powered theme for AI-to-Gutenberg workflows.
Version: 1.0
*/
:root {
  /* PROJECT: Industrial Rust & Slate */
  --brand-primary: #bc4639;       /* Rust Red */
  --brand-primary-dark: #8e352b;  /* Deep Rust Hover */
  --brand-secondary: #2b2d42;     /* Space Cadet Slate */
  --brand-accent: #8d99ae;        /* Cool Gray */
  --brand-bg: #fdfdfd;            /* Off-White */
  --card-bg: #ffffff;             /* Light Mode Card BG */
  --text-main: #1d1e2c;           /* Deep Charcoal */
  --text-muted: #5d617e;          /* Muted Slate */
  --border-color: #e2e8f0;        /* Light Mode Border */
  
  /* Sharp, Industrial Radius */
  --radius-main: 0.25rem; 

  /* Font Choice */
  --font-main: 'Oswald', sans-serif;
}

/* Dark Mode Overrides */
body.dark {
  --brand-bg: #0f172a;
  --card-bg: #1e293b;
  --brand-secondary: #f8fafc;
  --text-main: #cbd5e1;
  --text-muted: #94a3b8;
  --border-color: #334155;
}
body {
    font-family: var(--font-main);
}
 