:root {
  /* Colors */
  --color-primary: #1B4D3E; /* Deep Forest Green - Premium & Natural */
  --color-primary-dark: #113026;
  --color-primary-light: #2C6B59;
  
  --color-accent: #D4AF37; /* Muted Gold - Luxury accent */
  --color-accent-hover: #E5C358;
  
  --color-bg-body: #F9F9F9; /* Off-white for warmth */
  --color-bg-card: #FFFFFF;
  --color-bg-glass: rgba(255, 255, 255, 0.85);
  
  --color-text-main: #1A1A1A;
  --color-text-muted: #555555;
  --color-text-light: #F9F9F9;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.08); /* Soft, premium shadow */
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

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

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}
