/* assets/css/variables.css */
:root {
  /* Colors - RAL Palette & Custom */
  --color-primary: #EFB73E;   /* Sto 32220 - Warm Earthy Yellow/Ochre */
  --color-stone: #8d948d;     /* RAL 7030 - Stone Grey */
  --color-white: #f7f9ef;     /* RAL 9010 - Pure White (Backgrounds) */
  --color-accent-red: #cd9a8e;/* RAL 3012 - Beige Red (Accents) */
  --color-beige-grey: #766f64;/* RAL 7006 - Beige Grey (Text/Borders) */

  --color-text-main: #2c2c2c; /* Dark grey for main text for readability */
  --color-text-light: #f7f9ef;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

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

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}
                                   