/*
Theme Name: Bible Culture
Theme URI: https://globefewlloship.org
Author: Global Bible Cultural Fellowship
Author URI: https://globefewlloship.org
Description: A modern, elegant WordPress theme for Global Bible Cultural Fellowship - bridging faith, reason, and culture in harmony. Features multilingual support, responsive design, and cultural aesthetics.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bibleculture
Tags: blog, education, custom-menu, threaded-comments, translation-ready, multilingual
*/

/* ==========================================
   CSS Variables - Light Blue Theme (理想、正直、现代)
   ========================================== */
:root {
    --primary-blue: #5B9BD5;         /* 清新明亮的天蓝色 - 主色 */
    --secondary-blue: #A8D5E2;       /* 柔和的浅蓝色 - 辅助色 */
    --accent-blue: #2E75B6;          /* 深邃的宝石蓝 - 强调色 */
    --light-bg: #F0F4F8;             /* 淡蓝灰背景 */
    --text-dark: #2C3E50;            /* 深蓝灰文字 */
    --text-light: #5A6C7D;           /* 中灰文字 */
    --white: #FFFFFF;
    --shadow-light: rgba(91, 155, 213, 0.15);
    --shadow-medium: rgba(46, 117, 182, 0.25);
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--light-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

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

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   Header & Navigation Styles
   ========================================== */
.site-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    box-shadow: 0 2px 10px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-description {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-style: italic;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    background: rgba(255,255,255,0.2);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ==========================================
   Language Switcher Styles
   ========================================== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-switcher select {
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    backdrop-filter: blur(10px);
}

.language-switcher select:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.language-switcher select:focus {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}



/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 213, 226, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* ==========================================
   Content Sections
   ========================================== */
.content-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title-icon {
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

/* ==========================================
   Card Grid
   ========================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px var(--shadow-medium);
    border-color: var(--primary-blue);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.card-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   Numbered Cards
   ========================================== */
.numbered-card {
    position: relative;
    padding-top: 3rem;
}

.card-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* ==========================================
   Manifesto Section
   ========================================== */
.manifesto-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.manifesto-title {
    color: var(--white);
    margin-bottom: 2rem;
}

.manifesto-quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

.manifesto-attribution {
    color: var(--secondary-blue);
    font-size: 1rem;
}

/* ==========================================
   Footer Styles
   ========================================== */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(91, 155, 213, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    text-decoration: none;
    padding-left: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* ==========================================
   Accessibility
   ========================================== */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--white);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: var(--text-dark);
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Logo优化 - 与背景融合 */
.site-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    opacity: 0.95;
    mix-blend-mode: screen;
    background: transparent !important;
}

/* 栏目页面内容排版优化 */
.page-content, .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.page-content h1, .entry-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.page-content h2, .entry-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.page-content h3, .entry-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-weight: 600;
}

.page-content p, .entry-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.page-content ul, .entry-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li, .entry-content li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

/* 页面标题区域优化 */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Logo进一步优化 - 更明显与背景适应 */
.site-logo {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.site-logo img {
    height: 60px !important;
    width: auto !important;
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.2)) !important;
    opacity: 1 !important;
    background: transparent !important;
    mix-blend-mode: normal !important;
}

/* 隐藏二级页面重复的标题 */
.page .entry-header .entry-title {
    display: none;
}

.single .entry-header .entry-title {
    display: none;
}

/* 如果页面有自定义标题区域，保留它 */
.page-header .page-title {
    display: block !important;
}

/* 白色主题颜色风格 */
body {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* 首页英雄区域改为白色主题 */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
}

/* 页面标题区域改为白色主题 */
.page-header {
    background: linear-gradient(135deg, #e0e7ff 0%, #cfd9ff 100%) !important;
    color: #1e3a8a !important;
}

.page-title {
    color: #1e3a8a !important;
}

/* 内容区域白色背景 */
.site-content {
    background-color: #ffffff !important;
}

/* 卡片和区块白色主题 */
.card, .section {
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
}

/* 按钮白色主题 */
.btn-primary {
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #2563eb !important;
}

.btn-secondary {
    background-color: #ffffff !important;
    color: #3b82f6 !important;
    border: 2px solid #3b82f6 !important;
}

.btn-secondary:hover {
    background-color: #f0f9ff !important;
}

/* 页脚白色主题 */
.site-footer {
    background-color: #f9fafb !important;
    color: #374151 !important;
    border-top: 1px solid #e5e7eb !important;
}

/* 标题颜色调整 */
h1, h2, h3, h4, h5, h6 {
    color: #1f2937 !important;
}

/* 链接颜色 */
a {
    color: #3b82f6 !important;
}

a:hover {
    color: #2563eb !important;
}

/* 导航栏白色主题 */
.site-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
}

.site-navigation {
    background-color: #ffffff !important;
}

/* Logo区域白色主题 */
.site-logo {
    background: rgba(59, 130, 246, 0.05) !important;
    padding: 8px 15px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
}

.site-logo img {
    filter: none !important;
    opacity: 1 !important;
}

/* 网站标题白色主题 */
.site-title, .site-title a {
    color: #1f2937 !important;
}

.site-description {
    color: #6b7280 !important;
}

/* 导航菜单白色主题 */
.main-navigation ul li a {
    color: #374151 !important;
    font-weight: 500;
}

.main-navigation ul li a:hover {
    color: #3b82f6 !important;
    background-color: #f0f9ff !important;
}

.main-navigation ul li.current-menu-item a {
    color: #3b82f6 !important;
    background-color: #eff6ff !important;
}

/* 隐藏语言切换器（翻译按钮已停用）*/
.language-switcher {
    display: none !important;
}

/* 头部导航栏进一步优化 */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e5e7eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    padding: 0.5rem 0;
}

/* 导航栏内容容器 */
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo和标题区域优化 */
.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 197, 253, 0.08) 100%) !important;
    padding: 6px 12px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1) !important;
    transition: all 0.3s ease;
}

.site-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.15) !important;
}

.site-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

.site-description {
    font-size: 0.875rem !important;
    margin: 0 !important;
}

/* 导航菜单优化 */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation ul li a {
    display: block;
    padding: 0.75rem 1.25rem !important;
    border-radius: 8px;
    color: #374151 !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.main-navigation ul li a:hover {
    color: #3b82f6 !important;
    background-color: #eff6ff !important;
    transform: translateY(-1px);
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
    color: #ffffff !important;
    background-color: #3b82f6 !important;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation ul li a {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem;
    }
}

/* 导航栏蓝色渐变风格 - 与页面协调 */
.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: linear-gradient(135deg, #5B9BD5 0%, #4A8BC2 50%, #3B7DAF 100%) !important;
    border-bottom: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    padding: 0.8rem 0 !important;
}

/* 导航栏容器 */
.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo和标题区域 */
.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.site-logo:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.site-logo img {
    height: 50px !important;
    width: auto !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

/* 网站标题 */
.site-title,
.site-title a {
    color: #ffffff !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.site-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.85rem !important;
    margin: 0 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 导航菜单 */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    margin: 0;
}

.main-navigation ul li a {
    display: block;
    padding: 0.7rem 1.4rem !important;
    border-radius: 10px;
    color: #ffffff !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.main-navigation ul li a:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current_page_item a {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #3B7DAF !important;
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    font-weight: 600 !important;
}

/* 响应式 */
@media (max-width: 768px) {
    .site-header {
        padding: 0.6rem 0 !important;
    }
    
    .site-header .container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .main-navigation ul li a {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem;
    }
    
    .site-title {
        font-size: 1.1rem !important;
    }
    
    .site-description {
        font-size: 0.75rem !important;
    }
}

/* 隐藏Logo */
.site-logo {
    display: none !important;
}

/* 团契宣言页面样式优化 */
.page-id-24 .entry-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.page-id-24 .entry-content h1 {
    font-size: 2.5em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3b82f6;
    font-weight: 700;
    letter-spacing: 2px;
}

.page-id-24 .entry-content h2 {
    font-size: 2em;
    color: #34495e;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 5px solid #3b82f6;
    font-weight: 600;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    padding: 15px 20px;
    border-radius: 0 10px 10px 0;
}

.page-id-24 .entry-content h3 {
    font-size: 1.5em;
    color: #5a6c7d;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 3px solid #60a5fa;
    font-weight: 600;
}

.page-id-24 .entry-content p {
    font-size: 1.1em;
    line-height: 1.9;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.page-id-24 .entry-content blockquote {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 5px solid #3b82f6;
    padding: 25px 30px;
    margin: 30px 0;
    font-style: italic;
    color: #2c3e50;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.page-id-24 .entry-content blockquote p {
    margin-bottom: 0;
    font-size: 1.05em;
    line-height: 1.8;
}

.page-id-24 .entry-content strong {
    color: #3b82f6;
    font-weight: 700;
}

.page-id-24 .entry-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
    margin: 40px 0;
}

@media (max-width: 768px) {
    .page-id-24 .entry-content {
        padding: 40px 20px;
    }
    .page-id-24 .entry-content h1 {
        font-size: 2em;
    }
    .page-id-24 .entry-content h2 {
        font-size: 1.6em;
    }
    .page-id-24 .entry-content h3 {
        font-size: 1.3em;
    }
}
