/*
Theme Name: EazyPCB
Theme URI: https://eazypcb.com
Author: EazyPCB Team
Description: Custom professional theme for EazyPCB — Precision PCB Manufacturing & Assembly
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: eazypcb
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:      #0F172A;   /* Slate 900 — nav / dark sections */
    --color-brand:        #16A34A;   /* Green 600 — brand primary (matches logo) */
    --color-brand-dark:   #15803D;   /* Green 700 — hover state */
    --color-brand-light:  #DCFCE7;   /* Green 100 — subtle highlights */
    --color-accent:       #0D9488;   /* Teal 600 — secondary accent */
    --color-success:      #22C55E;   /* Green 500 — badges / icons */

    /* Neutral Colors */
    --color-text:         #1E293B;   /* Slate 800 */
    --color-text-muted:   #64748B;   /* Slate 500 */
    --color-text-light:   #94A3B8;   /* Slate 400 */
    --color-border:       #E2E8F0;   /* Slate 200 */
    --color-border-dark:  #CBD5E1;   /* Slate 300 */

    /* Gray scale (Slate-based, for components) */
    --color-gray-50:  #F8FAFC;
    --color-gray-100: #F1F5F9;
    --color-gray-200: #E2E8F0;
    --color-gray-300: #CBD5E1;
    --color-gray-400: #94A3B8;
    --color-gray-500: #64748B;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1E293B;
    --color-gray-900: #0F172A;
    --color-white:    #FFFFFF;

    /* Backgrounds */
    --color-bg:           #FFFFFF;
    --color-bg-light:     #F8FAFC;   /* Slate 50 */
    --color-bg-dark:      #0F172A;   /* matches primary */
    --color-bg-card:      #FFFFFF;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
                 Roboto, Oxygen, Ubuntu, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

    --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:  1.875rem;   /* 30px */
    --text-4xl:  2.25rem;    /* 36px */
    --text-5xl:  3rem;       /* 48px */
    --text-6xl:  3.75rem;    /* 60px */

    --leading-tight:  1.25;
    --leading-snug:   1.375;
    --leading-normal: 1.5;
    --leading-relaxed:1.625;

    --weight-normal:  400;
    --weight-medium:  500;
    --weight-semibold:600;
    --weight-bold:    700;
    --weight-extrabold:800;

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Borders & Radius */
    --radius-sm: 4px;
    --radius:    8px;
    --radius-md: 10px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl:24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / .05);
    --shadow:     0 1px 3px 0 rgb(0 0 0 / .10), 0 1px 2px -1px rgb(0 0 0 / .10);
    --shadow-md:  0 4px 6px -1px rgb(0 0 0 / .10), 0 2px 4px -2px rgb(0 0 0 / .10);
    --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / .10), 0 4px 6px -4px rgb(0 0 0 / .10);
    --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / .10), 0 8px 10px -6px rgb(0 0 0 / .10);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);

    /* Layout */
    --container-max: 1200px;
    --container-padding: var(--space-6);
    --header-height: 72px;

    /* Transitions */
    --transition-fast:   100ms ease;
    --transition:        150ms ease;
    --transition-medium: 250ms ease;
    --transition-slow:   350ms ease;
}
