/* CSS Design Tokens for Probud */

:root {
  /* Color Palette - Warm Minimalist (Ciepły minimalizm) */
  --primary: #2E302F;        /* Łagodny ciepły grafit */
  --primary-rgb: 46, 48, 47;
  --secondary: #5C5E5D;      /* Średni ciepły szary */
  --secondary-rgb: 92, 94, 93;
  --light-sage: #D6D5D0;     /* Miękki ciepły szary / piaskowy */
  --light-sage-rgb: 214, 213, 208;
  --pale-sage: #EAE9E4;      /* Tło przełamane beżem */
  --accent: #2B7043;         /* Ciepła sosna (Warm Pine Green) */
  --accent-rgb: 43, 112, 67;
  --accent-hover: #1F5331;

  /* Backgrounds */
  --bg: #FAF9F6;             /* Alabastrowy / Ciepły biały */
  --bg-alt: #F5F4F0;         /* Piaskowy / Bardzo jasny beż */
  --bg-dark: #1A1B1A;        /* Bardzo ciemny ciepły grafit */
  --bg-dark-rgb: 26, 27, 26;

  /* Text Colors */
  --text: #1F201F;           /* Główny tekst w ciemniejszym graficie */
  --text-muted: #4A4C4B;     /* Ciemniejszy szary dla lepszej czytelności */
  --text-light: #FAF9F6;
  --text-light-muted: #EAE9E4;

  /* Typography */
  --font-headings: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing (4px grid) */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Borders & Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --border-width: 1px;
  --border-color: rgba(26, 26, 26, 0.1);
  --border-color-light: rgba(250, 250, 250, 0.15);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.12), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 4px 14px 0 rgba(43, 112, 67, 0.25);

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

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