/* ============================================
   Punjab Roots Realty — Design Tokens
   Light Green Theme
   ============================================ */

:root {
  /* Brand Colors — Green Theme */
  --clr-primary: #2E7D32;
  --clr-primary-dark: #1B5E20;
  --clr-primary-light: #4CAF50;
  --clr-primary-glow: rgba(46, 125, 50, 0.2);

  /* Light Theme */
  --clr-bg-primary: #F4F6F8;
  --clr-bg-secondary: #FFFFFF;
  --clr-bg-tertiary: #EDF2F7;
  --clr-bg-card: #FFFFFF;
  --clr-bg-card-hover: #F0F5F0;
  --clr-bg-input: #F0F2F5;
  --clr-bg-modal-overlay: rgba(0, 0, 0, 0.4);

  /* Accent */
  --clr-gold: #B8952E;
  --clr-gold-light: #D4AF37;
  --clr-gold-dark: #8B6F22;

  /* Text */
  --clr-text-primary: #1A202C;
  --clr-text-secondary: #4A5568;
  --clr-text-muted: #A0AEC0;
  --clr-text-dark: #1A202C;

  /* Status Colors */
  --clr-success: #16A34A;
  --clr-success-bg: rgba(22, 163, 74, 0.1);
  --clr-warning: #D97706;
  --clr-warning-bg: rgba(217, 119, 6, 0.1);
  --clr-danger: #DC2626;
  --clr-danger-bg: rgba(220, 38, 38, 0.1);
  --clr-info: #2563EB;
  --clr-info-bg: rgba(37, 99, 235, 0.1);
  --clr-hot: #EA580C;
  --clr-hot-bg: rgba(234, 88, 12, 0.1);

  /* Glassmorphism — Light */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-blur: blur(20px);

  /* Shadows — Lighter */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 4px 14px rgba(46, 125, 50, 0.2);
  --shadow-gold: 0 4px 14px rgba(184, 149, 46, 0.2);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing Scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --sidebar-width: 260px;
  --sidebar-collapsed: 70px;
  --header-height: 64px;
  --content-max-width: 1400px;

  /* Z-Index Scale */
  --z-sidebar: 100;
  --z-header: 90;
  --z-modal: 200;
  --z-toast: 300;
  --z-tooltip: 150;
}
