/* ========================================
   3 Peaks Landscapes - Design Variables
   ========================================
   Easy to change colors and fonts
   ======================================== */

:root {
  /* ========================================
     COLORS - EASY TO CHANGE
     ======================================== */
  
  /* Primary Brand Colors */
  --primary-color: #2D5016;        /* Main brand green */
  --primary-light: #4D7C23;        /* Lighter green */
  --primary-dark: #1A3009;         /* Darker green */
  --primary-tint: #E8F2E0;         /* Very light green tint */
  
  /* Neutral Colors - High Contrast Version */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;           /* Increased contrast from #4B5563 */
  --neutral-medium: #6B7280;           /* Increased contrast from #4B5563 */
  --neutral-dark: #1F2937;             /* Increased contrast from #1F2937 */
  --neutral-black: #111827;
  
  /* Secondary/Accent Colors */
  --accent-color: #C75B39;         /* Earth terracotta */
  --accent-light: #E97B5E;         /* Lighter terracotta */
  --accent-tint: #FCE8E2;         /* Very light terracotta tint */
  
  /* Professional Blue - Complementary to Logo */
  --blue-color: #2563EB;           /* Professional blue */
  --blue-light: #3B82F6;           /* Lighter blue */
  --blue-dark: #1E40AF;            /* Darker blue */
  --blue-tint: #EFF6FF;            /* Very light blue tint */
  
  /* Neutral Colors */
  --neutral-white: #FFFFFF;
  --neutral-light: #F8F9FA;
  --neutral-gray: #6B7280;
  --neutral-medium: #4B5563;
  --neutral-dark: #1F2937;
  --neutral-black: #111827;
  
  /* Status Colors */
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
  --info-color: #3B82F6;
  
  /* ========================================
     TYPOGRAPHY - EASY TO CHANGE
     ======================================== */
  
  /* Font Families */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  
  /* Font Sizes - Typographic Scale */
  --text-xs: 0.75rem;              /* 12px */
  --text-sm: 0.875rem;             /* 14px */
  --text-base: 1rem;                /* 16px */
  --text-lg: 1.125rem;             /* 18px */
  --text-xl: 1.25rem;              /* 20px */
  --text-2xl: 1.5rem;             /* 24px */
  --text-3xl: 1.875rem;           /* 30px */
  --text-4xl: 2.25rem;            /* 36px */
  --text-5xl: 3rem;               /* 48px */
  --text-6xl: 3.75rem;            /* 60px */
  
  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  --leading-loose: 2;
  
  /* ========================================
     SPACING SYSTEM
     ======================================== */
  
  --space-1: 0.25rem;             /* 4px */
  --space-2: 0.5rem;              /* 8px */
  --space-3: 0.75rem;             /* 12px */
  --space-4: 1rem;                /* 16px */
  --space-5: 1.25rem;             /* 20px */
  --space-6: 1.5rem;              /* 24px */
  --space-8: 2rem;                /* 32px */
  --space-10: 2.5rem;             /* 40px */
  --space-12: 3rem;               /* 48px */
  --space-16: 4rem;               /* 64px */
  --space-20: 5rem;               /* 80px */
  --space-24: 6rem;               /* 96px */
  
  /* ========================================
     BORDER RADIUS
     ======================================== */
  
  --radius-none: 0;
  --radius-sm: 0.25rem;            /* 4px */
  --radius-md: 0.5rem;             /* 8px */
  --radius-lg: 0.75rem;            /* 12px */
  --radius-xl: 1rem;               /* 16px */
  --radius-2xl: 1.5rem;           /* 24px */
  --radius-full: 9999px;
  
  /* ========================================
     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);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* ========================================
     TRANSITIONS
     ======================================== */
  
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
  
  /* ========================================
     BREAKPOINTS
     ======================================== */
  
  --breakpoint-sm: 640px;         /* Small screens */
  --breakpoint-md: 768px;         /* Medium screens */
  --breakpoint-lg: 1024px;        /* Large screens */
  --breakpoint-xl: 1280px;        /* Extra large screens */
  --breakpoint-2xl: 1536px;      /* 2X large screens */
  
  /* ========================================
     CONTAINER WIDTHS
     ======================================== */
  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
  
  /* ========================================
     Z-INDEX SCALE
     ======================================== */
  
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
  
  /* ========================================
     CONTACT INFORMATION - EASY TO CHANGE
     ======================================== */
  
  /* Contact Information */
  --contact-phone: "587-437-6952";
  --contact-email: "seanm@3peakslandscapes.com";
  --contact-address: "220 Crestmont Dr SW, Calgary, AB T3B 1G8";
}

/* ========================================
   DARK MODE SUPPORT (Optional)
   ======================================== */

@media (prefers-color-scheme: dark) {
  :root {
    --neutral-white: #1E293B;      /* Dark slate blue - lighter than before */
    --neutral-black: #FFFFFF;
    --neutral-light: #334155;      /* Medium dark blue-gray */
    --neutral-gray: #64748B;       /* Medium gray */
    --neutral-dark: #CBD5E1;       /* Light gray - improved readability */
    --neutral-medium: #94A3B8;     /* Lighter medium gray */
  }
}

/* ========================================
   RESPONSIVE FONT SIZE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  :root {
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
    --text-6xl: 3rem;
  }
}
