/* Kapsalon Design Studio — ForwardX */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
  /* Kleuren */
  --color-primary:      #B8932E;
  --color-primary-light:#D9C173;
  --color-dark:         #1E1A16;
  --color-bg:           #ffffff;
  --color-bg-alt:       #f5f5f5;
  --color-bg-warm:      #f0f0f0;
  --color-bg-dark:      #1E1A16;
  --color-text:         #1E1A16;
  --color-text-light:   #5a5a5a;
  --color-text-muted:   #999999;
  --color-white:        #ffffff;
  --color-border:       #e8e8e8;
  --color-success:      #3a7d44;
  --color-primary-dark: #8a6c20;

  /* Typografie */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Manrope', sans-serif;
  --font-script:  'Great Vibes', cursive;

  /* Fontgroottes */
  --text-sm:   15px;
  --text-base: 16px;
  --text-lg:   18px;
  --text-xl:   20px;
  --text-2xl:  24px;
  --text-3xl:  32px;
  --text-4xl:  42px;
  --text-5xl:  56px;

  /* UI */
  --radius:    8px;
  --radius-lg: 12px;
  --radius-btn: 6px;
  --radius-pill: 9999px;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 96px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);

  --transition: 0.25s ease;

  /* Container */
  --container-max: 1200px;
  --container-pad: 24px;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 40px;
  }
}
