/**
 * CSS变量系统
 * MTO Moving Theme
 * 
 * @package MTOMoving
 * @since 1.0.0
 */

:root {
    /* ========================================
       主色调 - 专业可信
       ======================================== */
    --primary-900: #0f2744;
    --primary-800: #1a365d;  /* 主品牌色 */
    --primary-700: #2d4a8a;
    --primary-600: #4169b3;
    --primary-500: #5585d4;
    --primary-100: #d9ecff;
    --primary-50: #f0f7ff;
    
    /* ========================================
       辅助色 - 行动号召
       ======================================== */
    --accent-600: #e67e22;  /* CTA按钮色 */
    --accent-500: #f39c12;
    --accent-400: #f8b739;
    
    /* ========================================
       成功色
       ======================================== */
    --success-600: #0e9f6e;
    --success-500: #10b981;
    --success-400: #34d399;
    
    /* ========================================
       中性灰色
       ======================================== */
    --gray-900: #111827;  /* 深色文字 */
    --gray-800: #1f2937;
    --gray-700: #374151;  /* 标准文字 */
    --gray-600: #4b5563;
    --gray-500: #6b7280;  /* 辅助文字 */
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;  /* 边框 */
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;  /* 背景 */
    --gray-50: #f9fafb;
    
    /* ========================================
       特殊色
       ======================================== */
    --white: #ffffff;
    --black: #000000;
    
    /* ========================================
       字体系统
       ======================================== */
    --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "微软雅黑", sans-serif;
    --font-display: "Poppins", "Roboto", "Helvetica Neue", Arial, sans-serif;
    
    /* 字号体系 */
    --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 */
    
    /* 字重 */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* ========================================
       间距系统（基于4px网格）
       ======================================== */
    --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 */
    
    /* ========================================
       圆角系统
       ======================================== */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-base: 0.5rem;   /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;   /* 完全圆角 */
    
    /* ========================================
       阴影系统
       ======================================== */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-success: 0 10px 20px rgba(16, 185, 129, 0.3);
    
    /* ========================================
       行高系统
       ======================================== */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    --leading-loose: 2;
    
    /* ========================================
       过渡动画
       ======================================== */
    --transition-base: 0.2s ease;
    --transition-all: all 0.3s ease;
    --transition-fast: 0.15s ease;
    --transition-slow: 0.5s ease;
    
    /* ========================================
       响应式断点
       ======================================== */
    --breakpoint-sm: 640px;   /* 大屏手机 */
    --breakpoint-md: 768px;   /* 平板竖屏 */
    --breakpoint-lg: 1024px;  /* 平板横屏/小笔记本 */
    --breakpoint-xl: 1280px;  /* 桌面 */
    --breakpoint-2xl: 1536px; /* 大屏桌面 */
    
    /* ========================================
       容器宽度
       ======================================== */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1400px;
    
    /* ========================================
       Z-index层级
       ======================================== */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

