/* assets/css/variables.css */
:root {
  /* Baggrunde */
  --color-bg:          #eefbe6;
  --color-surface:     #FFFFFF;
  --color-surface-alt: #c8f3b4;
  --color-dark:        #1e503c;

  /* Tekst */
  --color-text:        #1e503c;
  --color-text-muted:  #437a5a;
  --color-text-on-dark:#eefbe6;

  /* Accent */
  --color-accent:      #f7956a;
  --color-accent-dark: #d4784a;
  --color-accent-light:#fde8dc;

  /* Borders & skygger */
  --color-border:      #b4e8a0;
  --shadow-sm:         0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:         0 4px 20px rgba(0,0,0,0.09);

  /* Typografi */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.375rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;

  --leading-tight:  1.15;
  --leading-normal: 1.6;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width:     1200px;
  --content-width: 720px;

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

  /* Knapper */
  --btn-radius: 4px;
}
