/* ========================================
   CSS Variables - Brand Colors & Typography
   ========================================
   Extracted from global.css for independent loading
   on all pages including MemberPress ReadyLaunch pages.
   ======================================== */

:root {
    /* Primary Colors */
    --color-primary: #171559;
    --color-primary-dark: #0f0e3c;
    --color-primary-light: #2f2d81;

    /* Secondary Colors */
    --color-secondary: #f2d0a7;
    --color-secondary-dark: #e0b887;
    --color-secondary-light: #fff3e4;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-light: #FFF8F0;
    --color-black: #000000;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-300: #DEE2E6;
    --color-gray-400: #CED4DA;
    --color-gray-500: #ADB5BD;
    --color-gray-600: #6C757D;
    --color-gray-700: #495057;
    --color-gray-800: #343A40;
    --color-gray-900: #212529;

    /* Accent Colors */
    --color-success: #28A745;
    --color-success-light: #20c997;
    --color-info: #17A2B8;
    --color-warning: #FFC107;
    --color-danger: #DC3545;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --font-heading-primary: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */
    --font-size-4xl: 3rem;
    /* 36px */
    --font-size-5xl: 4rem;
    /* 48px */
    --font-size-6xl: 6rem;
    /* 64px */

    /* Spacing */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 3rem;
    /* 48px */
    --spacing-2xl: 4rem;
    /* 64px */
    --spacing-3xl: 6rem;
    /* 96px */
    --spacing-4xl: 8rem;
    /* 128px */
    --spacing-5xl: 10rem;
    /* 160px */
    --spacing-6xl: 12rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-4xl: 50px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;

    /* Breakpoints - use these exact values in media queries across the theme */
    /* Mobile: 0-767px   → max-width: 767px */
    /* Tablet: 768-1199px → min-width: 768px and max-width: 1199px */
    /* Desktop: 1200px+  → min-width: 1200px (header desktop nav cutoff) */
    /* Use min-width for desktop-first; max-width for mobile-first. Keep consistent. */
    --bp-mobile-max: 767;
    --bp-tablet-min: 768;
    --bp-tablet-max: 1199;
    --bp-desktop: 1200;
}
