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

:root {
  /* Colors - Light Mode */
  --color-primary: #8b6914;
  --color-primary-hover: #6b5010;
  --color-accent: #7a5c0f;
  --color-accent-hover: #111827;
  --color-background: #fafaf8;
  --color-backgroundAlt: #ffffff;
  --color-text: #1a1a1a;
  --color-textMuted: #525252;
  --color-textLight: #737373;
  --color-border: #e5e5e5;
  --color-success: #166534;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 139 105 20;
  --color-accent-rgb: 122 92 15;

  /* Typography */
  --font-family: Montserrat, system-ui, sans-serif;
  --font-display: Bodoni Moda, Georgia, serif;
  --font-weight-heading: 600;
  --font-weight-body: 400;

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

  /* Shadows */
  --shadow-card: 0 10px 50px -15px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 10px 35px -10px rgba(184, 134, 11, 0.35);
  --shadow-hover: 0 25px 60px -20px rgba(0, 0, 0, 0.18);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #daa520;
  --color-primary-hover: #b8860b;
  --color-accent: #f5f0e8;
  --color-accent-hover: #e8e0d0;
  --color-background: #0f0f0f;
  --color-backgroundAlt: #1a1a1a;
  --color-text: #f5f0e8;
  --color-textMuted: #a8a8a8;
  --color-textLight: #8b8b8b;
  --color-border: #2a2a2a;
  --color-success: #4ade80;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 218 165 32;
  --color-accent-rgb: 245 240 232;
}
