/* ============================================
   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;
}
