/* styles.css - Clean, reverent, and readable design */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f8f6f1;
}

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

header {
    background: linear-gradient(to bottom, #1a3c5e, #0f2a44);
    color: #fff;
    text-align: center;
    padding: 60px 20px 40px;
}

header h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

header .tagline {
    font-size: 1.2rem;
    font-style: italic;
    margin: 12px 0 6px;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e0d8;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav .container {
    display: flex;
    justify-content: center;
}

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

.main-nav a {
    text-decoration: none;
    color: #1a3c5e;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #c9a66b;
}

/* Hero */
.hero {
    background-color: #fff;
    padding: 70px 0;
    text-align: center;
    border-bottom: 1px solid #e5e0d8;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a3c5e;
}

/* Content */
.content {
    padding: 80px 0;
    background-color: #fff;
}

.content h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a3c5e;
}

.verse {
    background-color: #f8f6f1;
    border-left: 6px solid #1a3c5e;
    padding: 28px 30px;
    margin-bottom: 40px;
}

.verse blockquote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 12px;
    color: #222;
}

.verse cite {
    display: block;
    text-align: right;
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.reflection {
    font-size: 1.15rem;
    text-align: center;
    max-width: 680px;
    margin: 60px auto 0;
    font-style: italic;
    color: #444;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #f8f6f1;
}

.blog-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: #1a3c5e;
}

.blog-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
    color: #555;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-post {
    background-color: #ffffff;
    border: 1px solid #e5e0d8;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(26, 60, 94, 0.1);
    transition: box-shadow 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 8px 20px rgba(26, 60, 94, 0.3);
}

.blog-post h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
    color: #1a3c5e;
    line-height: 1.3;
}

.blog-post h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post h3 a:hover {
    color: #c9a66b;
}

.blog-post time {
    display: block;
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-post p {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.read-more {
    color: #1a3c5e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.02rem;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #c9a66b;
    text-decoration: underline;
}

.blog-footer {
    text-align: center;
    margin-top: 50px;
}

/* Blog Post Page Styles */
.blog-post-page {
    padding: 60px 0 80px;
    background-color: #fff;
}

.post-header {
    text-align: center;
    margin-bottom: 50px;
    border-bottom: 1px solid #e5e0d8;
    padding-bottom: 40px;
}

.post-header h2 {
    font-size: 2.4rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-header time {
    color: #777;
    font-size: 1.05rem;
}

.post-content {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #333;
}

.post-content h3 {
    font-size: 1.55rem;
    color: #1a3c5e;
    margin: 50px 0 20px;
    font-weight: 500;
}

.post-content p {
    margin-bottom: 28px;
}

.post-content .verse {
    margin: 45px 0;
    padding: 32px 35px;
    background-color: #f8f6f1;
    border-left: 7px solid #1a3c5e;
}

.post-content .verse blockquote {
    font-size: 1.28rem;
    margin-bottom: 14px;
}

.post-content .verse cite {
    font-size: 1.05rem;
    color: #555;
}

.post-content img {
    display: block;
    margin: 40px auto;
    max-width: 90%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.post-footer {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid #e5e0d8;
    text-align: center;
    font-style: italic;
    color: #555;
    font-size: 1.02rem;
}

/* Footer */
footer {
    background-color: #1a3c5e;
    color: #ddd;
    text-align: center;
    padding: 60px 20px 40px;
    font-size: 0.95rem;
}

footer p {
    margin-bottom: 12px;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.0rem;
    }
    
    .hero, .content, .blog-section {
        padding: 60px 0;
    }
    
    .main-nav ul {
        gap: 1.8rem;
    }
    
    .blog-post {
        padding: 24px;
    }
    
    .post-header h2 {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .post-content .verse {
        padding: 25px 20px;
    }
}
