﻿* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "SimSun", Georgia, serif; font-size: 15px; color: #2c2c2c; background: #faf6ee; line-height: 1.9; }
a { color: #2c2c2c; text-decoration: none; transition: color .2s; }
a:hover { color: #b8860b; }
ul { list-style: none; }
.container { width: 1200px; margin: 0 auto; }

/* Top bar */
.top-bar { background: #1a2a4a; color: #d4c5a0; font-size: 13px; padding: 8px 0; border-bottom: 2px solid #b8860b; }
.top-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar .date { color: #c9b98a; }

/* Header */
.header { background: linear-gradient(180deg, #fdfbf5 0%, #f5ecd7 100%); padding: 24px 0; border-bottom: 1px solid #e0d5b8; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 16px; }
.cross {
    width: 64px; height: 64px; background: #1a2a4a; border-radius: 50%;
    color: #d4af37; font-size: 38px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(26,42,74,0.2);
}
.logo-text h1 { font-size: 30px; color: #1a2a4a; letter-spacing: 2px; font-weight: 700; }
.logo-text h1 a { color: #1a2a4a; }
.logo-text p { color: #8a7a5a; font-size: 13px; margin-top: 4px; letter-spacing: 1px; font-family: Georgia, serif; }
.header-verse { text-align: right; color: #6b5d3f; }
.header-verse p { font-size: 18px; color: #1a2a4a; font-style: italic; }
.header-verse span { font-size: 13px; color: #8a7a5a; }

/* Nav */
.nav { background: #1a2a4a; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.nav ul { display: flex; }
.nav li { flex: 1; text-align: center; position: relative; }
.nav a { display: block; padding: 16px 0; color: #f0ead6; font-size: 16px; letter-spacing: 2px; }
.nav a:hover, .nav .current a { background: #2a3f6a; color: #d4af37; }
.nav .current a::after {
    content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 3px; background: #d4af37;
}

/* Banner */
.banner {
    background: linear-gradient(rgba(26,42,74,0.85), rgba(26,42,74,0.85)),
                radial-gradient(circle at 30% 50%, rgba(212,175,55,0.15), transparent 60%);
    color: #f0ead6; padding: 70px 0; text-align: center; border-bottom: 3px solid #b8860b;
}
.banner h2 { font-size: 36px; color: #d4af37; margin-bottom: 16px; letter-spacing: 4px; }
.banner p { font-size: 18px; opacity: 0.9; max-width: 700px; margin: 0 auto 24px; }
.banner-verse { font-size: 16px; color: #c9b98a; font-style: italic; }

/* Section */
.section { padding: 50px 0; }
.section-title { text-align: center; margin-bottom: 40px; position: relative; }
.section-title h2 {
    display: inline-block; font-size: 26px; color: #1a2a4a; padding: 0 30px 12px;
    border-bottom: 2px solid #b8860b; letter-spacing: 3px; position: relative;
}
.section-title h2::before, .section-title h2::after {
    content: "✦"; color: #d4af37; position: absolute; bottom: -10px; font-size: 14px;
}
.section-title h2::before { left: 50%; transform: translateX(-20px); }
.section-title h2::after { left: 50%; transform: translateX(8px); }
.section-title p { color: #8a7a5a; margin-top: 16px; font-size: 14px; }

/* Daily devotion */
.daily-box {
    background: #fff; border-radius: 4px; padding: 40px; box-shadow: 0 2px 16px rgba(26,42,74,0.08);
    border-top: 4px solid #b8860b; position: relative;
}
.daily-box::before {
    content: ""; position: absolute; top: -4px; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #b8860b, #d4af37, #b8860b);
}
.daily-box .label {
    display: inline-block; background: #1a2a4a; color: #d4af37; padding: 4px 16px;
    font-size: 13px; letter-spacing: 2px; margin-bottom: 20px;
}
.daily-box h3 { font-size: 24px; color: #1a2a4a; margin-bottom: 12px; text-align: center; }
.daily-box .bible-ref { text-align: center; color: #b8860b; font-size: 16px; margin-bottom: 16px; font-weight: 600; }
.daily-box .verse {
    text-align: center; font-size: 20px; color: #2c2c2c; font-style: italic;
    padding: 20px; background: #faf6ee; border-left: 4px solid #d4af37; margin-bottom: 24px;
}
.daily-box .content p { text-indent: 2em; margin-bottom: 14px; color: #444; }
.daily-box .prayer {
    background: #f5ecd7; padding: 20px; border-radius: 4px; margin-top: 20px;
    border-left: 4px solid #1a2a4a;
}
.daily-box .prayer strong { color: #1a2a4a; }
.daily-more { text-align: center; margin-top: 30px; }
.btn {
    display: inline-block; padding: 12px 36px; background: #1a2a4a; color: #d4af37 !important;
    letter-spacing: 2px; border-radius: 2px; transition: all .2s;
}
.btn:hover { background: #2a3f6a; color: #fff !important; }
.btn-outline { background: transparent; border: 1px solid #1a2a4a; color: #1a2a4a !important; }
.btn-outline:hover { background: #1a2a4a; color: #d4af37 !important; }

/* Ministry grid */
.ministry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ministry-card {
    background: #fff; border-radius: 4px; padding: 32px 20px; text-align: center;
    box-shadow: 0 2px 12px rgba(26,42,74,0.06); border-bottom: 3px solid transparent;
    transition: all .3s;
}
.ministry-card:hover { border-bottom-color: #b8860b; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,42,74,0.12); }
.ministry-card .icon {
    width: 70px; height: 70px; margin: 0 auto 18px; background: #f5ecd7;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #b8860b; border: 2px solid #d4af37;
}
.ministry-card h3 { font-size: 18px; color: #1a2a4a; margin-bottom: 10px; letter-spacing: 2px; }
.ministry-card p { color: #7a6b4d; font-size: 13px; line-height: 1.7; }

/* News / articles */
.news-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.news-box { background: #fff; border-radius: 4px; padding: 28px; box-shadow: 0 2px 12px rgba(26,42,74,0.06); }
.news-box h3 {
    font-size: 18px; color: #1a2a4a; padding-bottom: 12px; margin-bottom: 16px;
    border-bottom: 2px solid #f5ecd7; display: flex; justify-content: space-between; align-items: center;
    letter-spacing: 2px;
}
.news-box h3 a { font-size: 12px; color: #b8860b; letter-spacing: 0; }
.news-box li {
    padding: 12px 0; border-bottom: 1px dashed #e8dfc8;
    display: flex; justify-content: space-between; align-items: center;
}
.news-box li:last-child { border-bottom: none; }
.news-box li a { flex: 1; padding-left: 16px; position: relative; }
.news-box li a::before {
    content: "✦"; position: absolute; left: 0; color: #d4af37; font-size: 10px; top: 4px;
}
.news-box .date { color: #a89878; font-size: 12px; white-space: nowrap; margin-left: 12px; }

/* CTA */
.cta {
    background: linear-gradient(135deg, #1a2a4a, #2a3f6a); color: #f0ead6;
    text-align: center; padding: 60px 0; border-top: 3px solid #b8860b; border-bottom: 3px solid #b8860b;
}
.cta h2 { color: #d4af37; font-size: 28px; margin-bottom: 12px; letter-spacing: 3px; }
.cta p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }

/* Breadcrumb */
.breadcrumb { background: #fff; padding: 14px 0; border-bottom: 1px solid #e8dfc8; font-size: 13px; color: #a89878; }
.breadcrumb a { color: #6b5d3f; }
.breadcrumb a:hover { color: #b8860b; }

/* Main layout */
.main { padding: 30px 0 50px; }
.main-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }
.sidebar { height: fit-content; }
.sidebar-box {
    background: #fff; border-radius: 4px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,42,74,0.06); margin-bottom: 24px;
}
.sidebar-box h3 {
    background: #1a2a4a; color: #d4af37; padding: 14px 20px; font-size: 16px;
    letter-spacing: 2px; border-bottom: 2px solid #b8860b;
}
.sidebar-box ul li { border-bottom: 1px solid #f5ecd7; }
.sidebar-box ul li a { display: block; padding: 12px 20px; position: relative; padding-left: 32px; }
.sidebar-box ul li a::before { content: "✦"; position: absolute; left: 16px; color: #d4af37; font-size: 10px; }
.sidebar-box ul li a:hover, .sidebar-box .active a { background: #faf6ee; color: #b8860b; }
.sidebar-contact {
    background: linear-gradient(135deg, #1a2a4a, #2a3f6a); color: #f0ead6;
    padding: 24px; text-align: center; border-radius: 4px;
}
.sidebar-contact .tel { font-size: 22px; color: #d4af37; font-weight: bold; margin: 10px 0; letter-spacing: 1px; }
.sidebar-contact p { margin-bottom: 6px; font-size: 13px; }

/* Content */
.content {
    background: #fff; border-radius: 4px; padding: 36px;
    box-shadow: 0 2px 12px rgba(26,42,74,0.06);
}
.content h2 {
    font-size: 24px; color: #1a2a4a; margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 2px solid #f5ecd7; letter-spacing: 2px;
}
.content h3 {
    font-size: 18px; color: #1a2a4a; margin: 24px 0 12px; padding-left: 14px;
    border-left: 4px solid #b8860b; letter-spacing: 1px;
}
.content p { margin-bottom: 14px; color: #444; text-indent: 2em; }
.content ul { padding-left: 2em; margin-bottom: 14px; }
.content ul li { list-style: disc; color: #555; margin-bottom: 8px; }
.article-list li {
    padding: 16px 0; border-bottom: 1px dashed #e8dfc8;
}
.article-list li a { font-size: 16px; }
.article-list .meta { color: #a89878; font-size: 12px; margin-top: 6px; }

/* About */
.about-verse {
    text-align: center; padding: 30px; background: #faf6ee; border-radius: 4px;
    margin-bottom: 24px; border-top: 2px solid #b8860b; border-bottom: 2px solid #b8860b;
}
.about-verse p { font-size: 20px; color: #1a2a4a; font-style: italic; text-indent: 0; margin-bottom: 8px; }
.about-verse span { color: #b8860b; font-size: 14px; }

/* Footer */
.footer { background: #14213d; color: #c9b98a; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-col h4 {
    color: #d4af37; font-size: 16px; margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 1px solid #2a3f6a; letter-spacing: 2px;
}
.footer-col p { font-size: 13px; line-height: 1.9; margin-bottom: 8px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #c9b98a; font-size: 13px; }
.footer-col a:hover { color: #d4af37; }
.footer-bottom {
    text-align: center; padding-top: 20px; border-top: 1px solid #2a3f6a;
}
.footer-bottom p { font-size: 13px; margin-bottom: 6px; color: #a89878; }

/* Responsive */
@media (max-width: 1200px) { .container { width: 96%; } }
@media (max-width: 768px) {
    .ministry-grid { grid-template-columns: repeat(2, 1fr); }
    .news-wrap, .main-wrap, .footer-grid { grid-template-columns: 1fr; }
    .nav ul { flex-wrap: wrap; }
    .nav li { flex: none; width: 25%; }
    .nav a { padding: 12px 0; font-size: 14px; }
    .header-inner { flex-direction: column; text-align: center; gap: 16px; }
    .header-verse { text-align: center; }
    .banner h2 { font-size: 26px; }
    .logo { flex-direction: column; }
}
