/*
Theme Name: Yoyo Personal Theme  
Theme URI: https://example.com/yoyo-theme
Author: Yoyo
Author URI: https://example.com
Description: 一个活泼可爱的小学生个人网站主题，用于记录学习笔记、生活点滴和成长历程。支持学习进度追踪、成就徽章系统、成长记录等游戏化学习功能。
Version: 4.3.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yoyo-theme
Tags: education, kids, gamification, personal, responsive, custom-post-types
*/

/* ============= 小学生友好设计系统 ============= */

/* 字体导入 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&display=swap');

/* 全局变量 */
:root {
    /* 主色调 - 温暖橙色 */
    --primary-color: #FF8C42;
    --primary-light: #FFA666;
    --primary-dark: #FF6B1F;
    
    /* 辅助色 - 柔和粉色 */
    --secondary-color: #FF6B9D;
    --secondary-light: #FF89B5;
    --secondary-dark: #FF4D85;
    
    /* 强调色 - 明亮蓝色 */
    --accent-color: #4ECDC4;
    --accent-light: #6FD9D1;
    --accent-dark: #3CB8B0;
    
    /* 背景色 - 奶油白 */
    --bg-color: #FFF8E7;
    --bg-light: #FFFCF2;
    --bg-cream: #FFE9D0;
    
    /* 文字颜色 */
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    
    /* 圆角 */
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 25px;
    
    /* 阴影 */
    --shadow-sm: 0 2px 8px rgba(255, 140, 66, 0.1);
    --shadow-md: 0 5px 20px rgba(255, 140, 66, 0.15);
    --shadow-lg: 0 10px 40px rgba(255, 140, 66, 0.2);
    
    /* 过渡 */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 全局样式重置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-cream) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* 按钮基础样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* 卡片样式 */
.card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* 容器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 装饰元素 */
.decoration-stars {
    position: relative;
}

.decoration-stars::before,
.decoration-stars::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: twinkle 2s infinite;
}

.decoration-stars::before {
    top: -10px;
    left: -20px;
}

.decoration-stars::after {
    bottom: -10px;
    right: -20px;
    animation-delay: 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* 响应式 */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .container {
        padding: 0 15px;
    }
}

/* Tailwind CSS 将通过 CDN 加载 */
