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

:root {
  /* Colors - Light Mode */
  --color-primary: #b45309;
  --color-primary-hover: #92400e;
  --color-accent: #92400e;
  --color-accent-hover: #78350f;
  --color-background: #fffbeb;
  --color-backgroundAlt: #ffffff;
  --color-text: #1c1917;
  --color-textMuted: #57534e;
  --color-textLight: #78716c;
  --color-border: #fde68a;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 180 83 9;
  --color-accent-rgb: 146 64 14;

  /* Typography */
  --font-family: Nunito, system-ui, sans-serif;
  --font-display: Outfit, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 1.25rem;
  --radius-small: 0.75rem;
  --radius-large: 1.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(245, 158, 11, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(245, 158, 11, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(245, 158, 11, 0.25);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #fbbf24;
  --color-primary-hover: #f59e0b;
  --color-accent: #fde68a;
  --color-accent-hover: #fbbf24;
  --color-background: #1c1917;
  --color-backgroundAlt: #292524;
  --color-text: #fafaf9;
  --color-textMuted: #d6d3d1;
  --color-textLight: #a8a29e;
  --color-border: #44403c;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 251 191 36;
  --color-accent-rgb: 253 230 138;
}
