:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-gold: #c9a961;
    --light-bg: #f8f7f4;
    --text-dark: #2c2c2c;
    --text-gray: #5a5a5a;
    --border-color: #d4d0c8;
    --white: #ffffff;
}

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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.main-nav a:hover {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, #eae8e0 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero h1 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

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

.section-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 38px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-green);
}

.blog-excerpt {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-bottom-color: var(--primary-green);
}

/* About Section */
.about-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.about-section h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
}

/* Footer */
.site-footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    line-height: 1.8;
    opacity: 0.9;
    font-size: 14px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 13px;
}

.disclosure {
    font-style: italic;
    font-size: 12px;
    opacity: 0.7;
}

/* Article Page Styles */
.article-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #eae8e0 100%);
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-green);
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
    text-align: center;
}

.article-meta {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-image {
    width: 100%;
    margin: 40px 0;
    border-radius: 4px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-content h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-green);
    margin: 50px 0 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-green);
    margin: 40px 0 15px;
}

.article-content p {
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin: 50px 0;
}

.cta-box h3 {
    color: var(--white);
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.cta-box p {
    color: var(--white);
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.affiliate-disclosure {
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-gold);
    padding: 20px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-info {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 16px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 42px;
    color: var(--primary-green);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-family: 'Crimson Text', Georgia, serif;
    font-size: 28px;
    color: var(--secondary-green);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 32px;
    }
    
    .main-nav {
        gap: 20px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
