/* ============================================
   INSPIREDBYJASON.COM - CSS VARIABLES
   Theme: Midnight Navy + Warm Gold (Palette 1)
   Jason's Approved Choice - DO NOT CHANGE
   ============================================ */

:root {
    /* ========================================
       PRIMARY BACKGROUNDS - Dark, Luxurious
       ======================================== */
    --bg-primary: #0D1B2A;           /* Deep midnight navy - main background */
    --bg-secondary: #1B2838;         /* Lighter navy - sections, nav */
    --bg-accent: #243447;            /* Card backgrounds, hero sections */
    --card-bg: #162231;              /* Slightly lighter cards */

    /* ========================================
       TEXT & TYPOGRAPHY - Warm, Readable
       ======================================== */
    --text-primary: #F7F5F2;         /* Warm white - headings, body */
    --text-secondary: #C9C5BC;       /* Muted cream - secondary text */
    --text-muted: #8892A0;           /* Blue-grey - captions, meta */

    /* ========================================
       GOLD ACCENTS - Luxury Detail
       ======================================== */
    --accent-primary: #D4A853;       /* Warm gold - hotspots, links */
    --accent-secondary: #E8C97A;     /* Light gold - hover states */
    --accent-highlight: #C49A3D;     /* Rich gold - CTA buttons */

    /* ========================================
       FUNCTIONAL COLORS
       ======================================== */
    --border-color: #2D3E50;         /* Subtle borders */
    --shadow: rgba(0, 0, 0, 0.4);    /* Deep shadows */
    --shadow-hover: rgba(0, 0, 0, 0.6);
    --overlay: rgba(13, 27, 42, 0.9); /* Modal overlays */

    /* Form States */
    --success-color: #7F9E8D;        /* Soft green */
    --error-color: #A85C5C;          /* Soft red */
    --focus-ring: #D4A853;           /* Gold focus outline */

    /* ========================================
       TYPOGRAPHY
       ======================================== */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font Sizes - Desktop */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px - body text */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px - h2 */
    --text-5xl: 3rem;        /* 48px - h1 */
    --text-6xl: 3.75rem;     /* 60px - hero */

    /* Line Heights */
    --leading-tight: 1.25;
    --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.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* ========================================
       SPACING SYSTEM - High Breathing Room
       ======================================== */
    --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 */

    /* Section Margins */
    --section-padding: var(--space-24);
    --section-padding-mobile: var(--space-12);
    --container-padding: var(--space-16);
    --container-padding-mobile: var(--space-6);

    /* ========================================
       LAYOUT
       ======================================== */
    --max-width: 1440px;
    --content-width: 1200px;
    --narrow-width: 800px;
    --sidebar-width: 300px;

    /* Grid */
    --grid-gap: var(--space-8);
    --grid-gap-mobile: var(--space-4);

    /* ========================================
       BORDERS & RADIUS
       ======================================== */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --border-width: 1px;
    --border-width-thick: 2px;

    /* ========================================
       TRANSITIONS
       ======================================== */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-slower: 500ms ease;

    /* ========================================
       Z-INDEX SCALE
       ======================================== */
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-toast: 700;

    /* ========================================
       COMPONENT-SPECIFIC
       ======================================== */

    /* Buttons */
    --btn-padding-x: var(--space-8);
    --btn-padding-y: var(--space-4);
    --btn-font-size: var(--text-sm);
    --btn-font-weight: var(--font-weight-medium);
    --btn-radius: var(--radius-sm);

    /* Cards */
    --card-padding: var(--space-6);
    --card-radius: var(--radius-md);

    /* Inputs */
    --input-padding-x: var(--space-4);
    --input-padding-y: var(--space-3);
    --input-radius: var(--radius-sm);

    /* Hotspots */
    --hotspot-size: 24px;
    --hotspot-pulse-size: 40px;

    /* Navigation */
    --nav-height: 80px;
    --nav-height-mobile: 64px;
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    :root {
        --transition-fast: 0ms;
        --transition-base: 0ms;
        --transition-slow: 0ms;
        --transition-slower: 0ms;
    }
}

/* ============================================
   DARK MODE - Already dark, but for completeness
   ============================================ */
@media (prefers-color-scheme: dark) {
    :root {
        /* Already using dark palette - no changes needed */
    }
}
