/*
Theme Name: The Still Flow (TT5 Child)
Template: twentytwentyfive
Version: 1.0
Description: Custom child theme for The Still Flow - forest green wellness aesthetic
*/

:root {
    --sf-forest: #3a5a40;
    --sf-forest-dark: #2d3a2e;
    --sf-forest-light: #588157;
    --sf-cream: #f7f5f0;
    --sf-cream-warm: #efe9dd;
    --sf-text: #2d3a2e;
    --sf-text-muted: #6b6b6b;
    --sf-border: #e0dccf;
}

/* 全局字体优化(英文衬线 + 中文优雅)*/
body {
    font-family: 'Georgia', 'Cormorant Garamond', 'Noto Serif SC', serif;
    color: var(--sf-text);
    background: #fdfcf9;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', 'Cormorant Garamond', 'Noto Serif SC', serif;
    color: var(--sf-forest-dark);
    letter-spacing: -0.01em;
}

/* 标题区 */
.wp-block-site-title a {
    color: var(--sf-forest-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.wp-block-site-tagline {
    color: var(--sf-forest);
    font-style: italic;
    font-size: 0.85rem;
}

/* 导航链接 */
.wp-block-navigation-item__content {
    color: var(--sf-text) !important;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.wp-block-navigation-item__content:hover {
    color: var(--sf-forest) !important;
}

/* 按钮统一森林绿 */
.wp-block-button__link {
    font-family: 'Georgia', serif !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    transition: all 0.3s ease;
}
.wp-block-button__link:hover {
    opacity: 0.85;
}

/* 文章卡片悬停效果 */
.wp-block-post-featured-image img,
.wp-block-image img {
    transition: transform 0.5s ease;
}
.wp-block-post-featured-image:hover img,
.wp-block-image:hover img {
    transform: scale(1.02);
}

/* 文章内链接颜色 */
.entry-content a, .wp-block-post-content a {
    color: var(--sf-forest);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.entry-content a:hover {
    color: var(--sf-forest-dark);
}

/* 引用块美化 */
.wp-block-quote {
    border-left: 3px solid var(--sf-forest);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--sf-text-muted);
}

/* 分隔线 */
.wp-block-separator {
    border-color: var(--sf-border);
}

/* 表格美化 */
.wp-block-table th {
    background: var(--sf-forest);
    color: var(--sf-cream);
    font-weight: 500;
}
.wp-block-table td {
    border-color: var(--sf-border);
}
.wp-block-table tr:nth-child(even) td {
    background: var(--sf-cream);
}

/* 页脚 */
.wp-block-template-part,
footer {
    background: var(--sf-forest-dark) !important;
    color: var(--sf-cream) !important;
}
.wp-block-template-part a,
footer a,
footer .wp-block-site-title a {
    color: var(--sf-cream) !important;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .wp-block-cover {
        min-height: 480px !important;
    }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.6rem !important; }
}
