/* ==========================================================================
   Design Tokens — Carlos Miranda Levy | TheSocialEntrepreneur.com
   Brand colors, spacing, typography tokens, breakpoints
   Theme: "Global Navigator" — earth tones with logo palette
   Logo colors: Teal #085576, Amber #ffaa33, Green #008000
   ========================================================================== */

:root {
    /* ── Primary Colors (from logo teal) ── */
    --color-primary: #0a6e8a;
    --color-primary-dark: #085576;
    --color-primary-light: #2a96b4;

    /* ── Secondary / Accent (from logo amber & green) ── */
    --color-secondary: #ffaa33;
    --color-secondary-dark: #e09020;
    --color-secondary-light: #ffbe5c;
    --color-accent: #2e8b3d;

    /* ── Background Colors (warm earth tones) ── */
    --color-bg: #161310;
    --color-bg-card: #1e1a16;
    --color-bg-alt: #1a1613;
    --color-bg-elevated: #2a2520;

    /* ── Text Colors (warm tones) ── */
    --color-text: #d6cfc7;
    --color-text-muted: #9a8e80;
    --color-text-inverse: #161310;
    --color-text-bright: #f0ebe5;

    /* ── Semantic Colors ── */
    --color-success: #2e8b3d;
    --color-warning: #ffaa33;
    --color-error: #c0392b;
    --color-info: #0a6e8a;

    /* ── Gradients & Effects ── */
    --gradient-brand: linear-gradient(135deg, #085576 0%, #0a6e8a 40%, #ffaa33 100%);
    --gradient-hero: linear-gradient(135deg, rgba(8,85,118,0.15) 0%, rgba(46,139,61,0.08) 50%, rgba(255,170,51,0.05) 100%);
    --gradient-card: linear-gradient(180deg, rgba(8,85,118,0.05) 0%, transparent 100%);
    --gradient-text: linear-gradient(135deg, #0a6e8a, #2e8b3d, #ffaa33);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(10, 110, 138, 0.15);
    --shadow-glow-warm: 0 0 40px rgba(255, 170, 51, 0.15);

    /* ── Typography ── */
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1.05rem;
    --text-lg: 1.2rem;
    --text-xl: 1.4rem;
    --text-2xl: 1.8rem;
    --text-3xl: clamp(2rem, 5vw, 3rem);
    --text-4xl: clamp(2.5rem, 6vw, 4rem);

    --leading-tight: 1.2;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* ── Spacing ── */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* ── Layout ── */
    --container-narrow: 600px;
    --container-content: 900px;
    --container-wide: 1200px;

    /* ── Borders ── */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --border-subtle: 1px solid rgba(154, 142, 128, 0.12);
    --border-hover: 1px solid rgba(154, 142, 128, 0.3);
    --border-active: 1px solid var(--color-primary);

    /* ── Transitions ── */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
