/* 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 */
header {
    background: linear-gradient(to bottom, #1a3c5e, #0f2a44);
    color: #fff;
    text-align: center;
    padding: 100px 20px 80px;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.35rem;
    font-style: italic;
    margin: 20px 0 8px;
}

.reference {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e0d8;
    padding: 18px 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: #0f2a44;
}

/* Hero */
.hero {
    background-color: #fff;
    padding: 80px 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.06);
    transition: box-shadow 0.3s ease;
}

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

.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: #0f2a44;
}

.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: #0f2a44;
    text-decoration: underline;
}

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

.view-all {
    color: #1a3c5e;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 12px 28px;
    border: 2px solid #1a3c5e;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.view-all:hover {
    background-color: #1a3c5e;
    color: #ffffff;
}

/* 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.2rem;
    }
    
    .hero, .content, .blog-section {
        padding: 60px 0;
    }
    
    .main-nav ul {
        gap: 1.8rem;
    }
    
    .blog-post {
        padding: 24px;
    }
}