/* ============================================
   Theme: UrbanBlade
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #1c1917;
  --color-primary-hover: #292524;
  --color-accent: #78350f;
  --color-accent-hover: #451a03;
  --color-background: #fafaf9;
  --color-backgroundAlt: #ffffff;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #78716c;
  --color-border: #e7e5e4;
  --color-success: #15803d;
  --color-error: #b91c1c;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 28 25 23;
  --color-accent-rgb: 120 53 15;

  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Playfair Display, Georgia, serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.25rem;
  --radius-small: 0.125rem;
  --radius-large: 0.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(28, 25, 23, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(120, 53, 15, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(28, 25, 23, 0.25);

  /* Button Style */
  --button-radius: 0.25rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #f5f5f4;
  --color-primary-hover: #e7e5e4;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-background: #0c0a09;
  --color-backgroundAlt: #1c1917;
  --color-text: #fafaf9;
  --color-textMuted: #a8a29e;
  --color-textLight: #d6d3d1;
  --color-border: #292524;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 245 245 244;
  --color-accent-rgb: 217 119 6;
}
