/*
Theme Name: Levoflow
Theme URI: https://levoflow.example.com
Author: Levoflow Team
Author URI: https://levoflow.example.com
Description: Levoflow 自主开发主题（基础骨架）。
Version: 0.1.0
Requires at least: 6.5
Tested up to: 6.6
Requires PHP: 8.1
Text Domain: levoflow
*/

/* 基础重置与变量 */
:root {
  --color-text: #0b1324;
  --color-bg: #ffffff;
  --color-primary: #0a7cff;
  --color-accent: #00c2a8;
  --container-max: 1200px;
}

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji"; color: var(--color-text); background: var(--color-bg); line-height: 1.6; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 16px; }
.site-header, .site-footer { padding: 16px 0; }
.site-branding a { text-decoration: none; color: inherit; }
.nav-primary a { text-decoration: none; color: inherit; padding: 8px 12px; display: inline-block; }
.hero { padding: 64px 0; text-align: center; }
.hero h1 { margin: 0 0 12px; font-size: 40px; }
.hero p { margin: 0 auto; max-width: 720px; color: #5a6270; }
