/*
Theme Name: 绿野仙踪
Description: 定制森林主题
Version: 1.0
License: GPLv2
Text Domain: wizard-oz
*/
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
/*
Theme Name: nature
Description: 
Version: 1.0
License: GPLv2
Text Domain: nature
*/
*/

:root {
    --primary-color: #2d5a27;
    --secondary-color: #4a7c42;
    --accent-color: #8fbc8f;
    --bg-color: #f0f7ef;
    --bg-white: #ffffff;
    --text-color: #2c3e2c;
    --text-light: #6b7c6b;
    --border-color: #c8dcc8;
    --shadow: 0 4px 20px rgba(45, 90, 39, 0.1);
    --gradient: linear-gradient(180deg, #e8f5e0 0%, #f0f7ef 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-40 0a40 40 0 1 0 80 0a40 40 0 1 0-80 0' fill='%23c8dcc8' fill-opacity='0.1'/%3E%3C/svg%3E");
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: repeating-linear-gradient(90deg, var(--primary-color) 0px, var(--primary-color) 20px, var(--secondary-color) 20px, var(--secondary-color) 40px);
    z-index: 1000;
}

.container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.site-header {
    padding: 70px 0 50px;
    text-align: center;
    background: var(--gradient);
    position: relative;
}

.site-header::after {
    content: '🌿';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    background: var(--bg-color);
    padding: 0 15px;
}

.site-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 8px;
    position: relative;
    display: inline-block;
}

.site-title::before {
    content: '🍃';
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
}

.site-title::after {
    content: '🍃';
    position: absolute;
    right: -45px;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
    font-size: 1.8rem;
}

.site-description { color: var(--text-light); margin-top: 20px; font-size: 1rem; }

.main-navigation {
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    margin: 30px auto 50px;
    max-width: 600px;
    text-align: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px 22px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.main-navigation a:hover { background: var(--primary-color); color: var(--bg-white); }

.site-content { padding: 40px 0 60px; }

.post {
    background: var(--bg-white);
    margin-bottom: 35px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-thumbnail {
    width: 100%;
    height: 250px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.post-thumbnail::before { content: '🌱'; font-size: 4rem; opacity: 0.3; }

.post-header { padding: 30px 35px 0; }

.post-title { font-size: 1.6rem; color: var(--primary-color); font-weight: 500; margin-bottom: 12px; }
.post-title a { text-decoration: none; color: inherit; transition: color 0.3s; }
.post-title a:hover { color: var(--secondary-color); }

.post-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-content { padding: 20px 35px 35px; color: var(--text-color); }

.tag {
    display: inline-block;
    background: var(--bg-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 8px;
}

.site-footer {
    padding: 50px 0;
    background: var(--primary-color);
    color: rgba(255,255,255,0.9);
    text-align: center;
}

.site-footer::before { content: '🌳'; font-size: 2rem; display: block; margin-bottom: 15px; }
.site-footer a { color: var(--accent-color); text-decoration: none; }

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover { background: var(--primary-color); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3); }