/* CSS Variables - Color Palette & Typography */
:root {
  /* Primary Colors - Marrone Tabacco */
  --primary-dark: #5C4033;
  --primary-main: #8B6F47;
  --primary-light: #A88A5F;
  --primary-lighter: #C4A57B;

  /* Secondary Colors - Verde Foglia (25% più scuro) */
  --secondary-dark: #223C10;
  --secondary-main: #385D20;
  --secondary-light: #507438;
  --secondary-lighter: #6B8856;

  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray-light: #F5F5F5;
  --gray-medium: #CCCCCC;
  --gray-dark: #666666;

  /* Theme Light (default) */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F5F5;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --accent: var(--primary-main);
  --accent-secondary: var(--secondary-main);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Font Sizes */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.25rem;    /* 20px */
  --font-size-xl: 1.5rem;     /* 24px */
  --font-size-2xl: 2rem;      /* 32px */
  --font-size-3xl: 3rem;      /* 48px */
  --font-size-4xl: 4rem;      /* 64px */

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

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

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #1A1A1A;
  --bg-secondary: #2A2A2A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --accent: var(--primary-light);
  --accent-secondary: var(--secondary-light);
  --gray-light: #2A2A2A;
  --gray-medium: #444444;
}
