/* ==========================================================================
   BLOSSOM - CSS Custom Properties
   Blues Rock band from Grenoble
   ========================================================================== */

:root {
    /* ==========================================================================
       Color Palette - Inspired by vintage blues rock posters
       ========================================================================== */

    /* Primary Colors */
    --color-bg-dark: #1a1410;
    --color-bg-darker: #0f0c09;
    --color-gold: #c9a227;
    --color-gold-light: #d4b84a;
    --color-orange: #b35c1e;
    --color-orange-light: #c97a3d;
    --color-crimson: #8b2323;
    --color-cream: #f5f0e6;
    --color-cream-dark: #e8dcc4;

    /* Supporting Colors */
    --color-rust: #6b3a2a;
    --color-brown: #3d2a1f;
    --color-text-light: #f5f0e6;
    --color-text-dark: #1a1410;
    --color-text-muted: #a09080;

    /* Overlay Colors */
    --color-overlay-dark: rgba(26, 20, 16, 0.85);
    --color-overlay-light: rgba(26, 20, 16, 0.6);

    /* ==========================================================================
       Typography
       ========================================================================== */

    /* Font Families */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;

    /* Font Sizes - Mobile First */
    --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: 2rem;        /* 32px */
    --text-4xl: 2.5rem;      /* 40px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 4rem;        /* 64px */
    --text-7xl: 5rem;        /* 80px */

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

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

    /* 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: 1280px;
    --container-2xl: 1440px;

    /* ==========================================================================
       Borders & Radius
       ========================================================================== */

    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

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

    /* ==========================================================================
       Shadows
       ========================================================================== */

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(201, 162, 39, 0.3);

    /* ==========================================================================
       Transitions
       ========================================================================== */

    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-slower: 700ms ease;

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

    --z-behind: -1;
    --z-base: 0;
    --z-above: 10;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

/* ==========================================================================
   Responsive Font Size Adjustments
   ========================================================================== */

@media (min-width: 768px) {
    :root {
        --text-5xl: 3.5rem;   /* 56px */
        --text-6xl: 5rem;     /* 80px */
        --text-7xl: 6rem;     /* 96px */
    }
}

@media (min-width: 1024px) {
    :root {
        --text-5xl: 4rem;     /* 64px */
        --text-6xl: 6rem;     /* 96px */
        --text-7xl: 8rem;     /* 128px */
    }
}
