/* frontend/public/css/variables.css */

/* ============================================
   NORDICTRAILER DESIGN TOKENS
   Skandinavisch-minimalistisch
   ============================================ */

:root {
  /* Primary – Waldgrün */
  --color-primary: #2D5A45;
  --color-primary-light: #3D7A5D;
  --color-primary-dark: #1E3D2F;

  /* Secondary – Warm Braun */
  --color-secondary: #8B6F4E;
  --color-secondary-light: #A89070;
  --color-secondary-dark: #6B5030;

  /* Accent – Gedecktes Gold */
  --color-accent: #C9A84C;
  --color-accent-light: #E0C06A;
  --color-accent-dark: #A68A2E;

  /* Neutrals – Warmes Creme */
  --color-bg-primary: #FAF8F5;
  --color-bg-secondary: #F2EDE6;
  --color-bg-card: #FFFFFF;

  /* Text */
  --color-text-primary: #1A1A18;
  --color-text-secondary: #5C5C56;
  --color-text-muted: #8A8A82;
  --color-text-inverse: #FAF8F5;

  /* Functional */
  --color-success: #4A7A5A;
  --color-error: #C45C4A;
  --color-warning: #C9A84C;

  /* Borders & Dividers */
  --color-border: #E5DFD6;
  --color-divider: #D4CCC0;

  /* Spacing Scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'DM Sans', 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.75rem;   /* 28px */
  --text-4xl: 2.5rem;    /* 40px */
  --text-5xl: 3.5rem;    /* 56px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 26, 24, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 26, 24, 0.08);
  --shadow-lg: 0 8px 24px rgba(26, 26, 24, 0.12);
  --shadow-xl: 0 16px 48px rgba(26, 26, 24, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 400ms ease-out;

  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-md);
}

@media (max-width: 768px) {
  :root {
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
  }
}
