/**
 * Design Tokens — The Way Barbershop
 * All CSS custom properties / design tokens
 */

:root {
    /* ── Colors ── */
    --color-bg:            #0F0F0F;
    --color-bg-alt:        #1A1A1A;
    --color-surface:       #242424;
    --color-accent:        #C8A45E;
    --color-accent-hover:  #D4B06A;
    --color-accent-muted:  rgba(200, 164, 94, 0.2);
    --color-text:          #F5F5F5;
    --color-text-muted:    #A3A3A3;
    --color-text-subtle:   #737373;
    --color-border:        #2A2A2A;
    --color-border-light:  #333333;
    --color-cream:         #F5F0E8;
    --color-cream-text:    #333333;
    --color-cream-heading: #0F0F0F;
    --color-success:       #22C55E;
    --color-star:          #FBBF24;
    --color-white:         #FFFFFF;

    /* ── Typography ── */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body:    'Source Sans 3', sans-serif;

    /* ── Font Sizes ── */
    --text-xs:  0.8125rem;   /* 13px */
    --text-sm:  0.875rem;    /* 14px */
    --text-base: 1.125rem;   /* 18px */
    --text-lg:  1.25rem;     /* 20px */
    --text-xl:  1.5rem;      /* 24px */
    --text-2xl: 1.75rem;     /* 28px */
    --text-3xl: 2.25rem;     /* 36px */
    --text-4xl: 3rem;        /* 48px */
    --text-5xl: 4.5rem;      /* 72px */

    /* ── Spacing ── */
    --space-xs:  0.25rem;    /* 4px */
    --space-sm:  0.5rem;     /* 8px */
    --space-md:  1rem;       /* 16px */
    --space-lg:  1.5rem;     /* 24px */
    --space-xl:  2rem;       /* 32px */
    --space-2xl: 3rem;       /* 48px */
    --space-3xl: 4rem;       /* 64px */
    --space-4xl: 6rem;       /* 96px */
    --space-5xl: 8rem;       /* 128px */

    /* ── Border Radius ── */
    --radius-sm:   4px;
    --radius-md:   8px;
    --radius-lg:   12px;
    --radius-xl:   16px;
    --radius-full: 9999px;

    /* ── Shadows ── */
    --shadow-sm:  0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg:  0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-xl:  0 20px 40px rgba(0, 0, 0, 0.5);

    /* ── Layout ── */
    --container-max: 1280px;
    --navbar-height: 80px;

    /* ── Transitions ── */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* ── Z-Index ── */
    --z-mobile-menu: 40;
    --z-navbar:      50;
    --z-mobile-cta:  45;
}
