/* Phoenix Homes Real Estate - Color Scheme & Typography */

:root {
  /* Primary Colors */
  --primary-gold: #D4AF37;      /* Luxury gold accent color */
  --primary-dark: #1A1A1A;      /* Near-black for text and backgrounds */
  --primary-light: #FFFFFF;     /* White for backgrounds and text on dark */
  
  /* Secondary Colors */
  --secondary-gray: #F5F5F5;    /* Light gray for backgrounds */
  --secondary-dark-gray: #333333; /* Dark gray for secondary text */
  --secondary-gold-light: #F0E6C8; /* Light gold for hover states */
  
  /* Accent Colors */
  --accent-blue: #1C3C5C;       /* Deep blue for accents */
  --accent-beige: #F5F2E9;      /* Beige for subtle backgrounds */
  
  /* Functional Colors */
  --success: #4CAF50;           /* Green for success messages */
  --error: #F44336;             /* Red for error messages */
  --warning: #FF9800;           /* Orange for warnings */
  --info: #2196F3;              /* Blue for information */
  
  /* Typography */
  --font-primary: 'Playfair Display', serif;  /* Elegant serif for headings */
  --font-secondary: 'Montserrat', sans-serif; /* Clean sans-serif for body text */
  --font-tertiary: 'Cormorant Garamond', serif; /* Alternative serif for special elements */
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-md: 1.125rem;     /* 18px */
  --font-size-lg: 1.25rem;      /* 20px */
  --font-size-xl: 1.5rem;       /* 24px */
  --font-size-2xl: 1.875rem;    /* 30px */
  --font-size-3xl: 2.25rem;     /* 36px */
  --font-size-4xl: 3rem;        /* 48px */
  --font-size-5xl: 3.75rem;     /* 60px */
  
  /* Spacing */
  --spacing-xs: 0.25rem;        /* 4px */
  --spacing-sm: 0.5rem;         /* 8px */
  --spacing-md: 1rem;           /* 16px */
  --spacing-lg: 1.5rem;         /* 24px */
  --spacing-xl: 2rem;           /* 32px */
  --spacing-2xl: 3rem;          /* 48px */
  --spacing-3xl: 4rem;          /* 64px */
  
  /* Border Radius */
  --border-radius-sm: 0.125rem; /* 2px */
  --border-radius-md: 0.25rem;  /* 4px */
  --border-radius-lg: 0.5rem;   /* 8px */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
}