/* 
 * assets/css/variables.css
 * Core design tokens for Sarah Anne Cleaning
 * Premium, earthy and sophisticated palette.
 */
:root {
  /* Color Palette */
  --color-primary: #1A202C; /* Deep Navy/Charcoal */
  --color-primary-light: #2D3748;
  --color-accent: #B79053; /* Muted Gold/Bronze */
  --color-accent-hover: #D4A864;
  --color-bg-base: #F7F5F0; /* Soft Off-White for a premium feel */
  --color-bg-alt: #EBE7DF; /* Slightly darker off-white for contrast */
  --color-text-main: #2D3748;
  --color-text-muted: #4A5568;
  --color-white: #FFFFFF;
  --color-border: #D1D5DB;

  /* Typography (Fonts to be loaded later, standard fallback for now) */
  --font-family-headings: 'Playfair Display', Georgia, serif;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Transitions & Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);

  /* Layout */
  --container-max-width: 1280px;
  --header-height: 80px;
}
