/* ==========================================================================
   Design System Variables - Hayden Creek Luxe Salon
   ========================================================================== */

:root {
  /* -------------------------------------------------------------------------
     Color Palette (Neutral/Warm Tones)
     ------------------------------------------------------------------------- */

  /* Primary Colors */
  --color-cream: #F5F0EB;
  --color-beige: #E8DED3;
  --color-warm-gray: #A89F97;
  --color-charcoal: #2C2C2C;
  --color-black: #1A1A1A;
  --color-white: #FFFFFF;

  /* Accent Colors */
  --color-accent: #8B7355;
  --color-accent-hover: #6F5C45;
  --color-accent-light: #C4B7A6;

  /* Functional Colors */
  --color-border: #D4C9BC;
  --color-shadow: rgba(0, 0, 0, 0.08);
  --color-overlay: rgba(26, 26, 26, 0.5);

  /* -------------------------------------------------------------------------
     Typography
     ------------------------------------------------------------------------- */

  /* Font Families */
  --font-heading: 'Arsenal', sans-serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Font Sizes */
  --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.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */

  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* -------------------------------------------------------------------------
     Spacing
     ------------------------------------------------------------------------- */

  --space-1: 0.25rem;      /* 4px */
  --space-2: 0.5rem;       /* 8px */
  --space-3: 0.75rem;      /* 12px */
  --space-4: 1rem;         /* 16px */
  --space-5: 1.25rem;      /* 20px */
  --space-6: 1.5rem;       /* 24px */
  --space-8: 2rem;         /* 32px */
  --space-10: 2.5rem;      /* 40px */
  --space-12: 3rem;        /* 48px */
  --space-16: 4rem;        /* 64px */
  --space-20: 5rem;        /* 80px */
  --space-24: 6rem;        /* 96px */
  --space-32: 8rem;        /* 128px */

  /* -------------------------------------------------------------------------
     Layout
     ------------------------------------------------------------------------- */

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1400px;

  /* -------------------------------------------------------------------------
     Borders & Radius
     ------------------------------------------------------------------------- */

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  --border-thin: 1px;
  --border-medium: 2px;

  /* -------------------------------------------------------------------------
     Shadows
     ------------------------------------------------------------------------- */

  --shadow-sm: 0 1px 2px var(--color-shadow);
  --shadow-md: 0 4px 6px var(--color-shadow);
  --shadow-lg: 0 10px 15px var(--color-shadow);
  --shadow-xl: 0 20px 25px var(--color-shadow);

  /* -------------------------------------------------------------------------
     Transitions
     ------------------------------------------------------------------------- */

  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;

  /* -------------------------------------------------------------------------
     Z-Index Scale
     ------------------------------------------------------------------------- */

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}
