
/* --- Google Font Import --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-color: #4A7C59; /* Forest Green */
    --secondary-color: #8B4513; /* Saddle Brown */
    --background-color: #F5F5DC; /* Beige */
    --surface-color: #FFFFFF; /* White */
    --text-color: #3D405B; /* Dark Slate Blue/Grey */
    --text-muted-color: #6c757d; /* Muted Grey */
    --border-color: #dee2e6; /* Light Grey Border */
    --font-family: 'Merriweather', serif;
    --container-width: 1140px;
    --border-radius: 12px;
    --transition-speed: 0.3s ease;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* --- General & Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.8;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4 {
    color: var(--text-color);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: #365a42; /* Darker Green */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #365a42;
    color: white;
    transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.site-header {
    background: var(--surface-color);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.logo:hover {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1rem;
    transition: color var(--transition-speed);
}

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

/* --- Main Content Layout --- */
.main-content {
    padding: 4rem 0;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .main-grid {
        grid-template-columns: 2.5fr 1fr;
    }
}

/* --- Intro Section (Homepage) --- */
.intro-section {
    padding-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.intro-section h1 {
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

/* --- Articles Section --- */
.articles-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.article-card {
    background: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition-speed), transform var(--transition-speed);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.article-card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-card-content h3 {
    margin-top: 0;
    font-size: 1.6rem;
}

.article-card-content h3 a {
    color: var(--text-color);
}

.article-card-content h3 a:hover {
    color: var(--primary-color);
}

.article-card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.article-card-content .btn {
    align-self: flex-start;
}

/* --- Sidebar --- */
.sidebar-widget {
    background: var(--surface-color);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--text-color);
}

.sidebar-widget ul {
    margin-top: 1rem;
}

.sidebar-widget li {
    margin-bottom: 0.75rem;
}

.sidebar-widget li a {
    color: var(--text-muted-color);
    font-weight: 700;
}

.sidebar-widget li a:hover {
    color: var(--primary-color);
}

.sidebar-widget p {
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Single Article Page --- */
.article-full {
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--surface-color);
    box-shadow: var(--shadow);
}

.article-header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.article-header h1 {
    margin-bottom: 0.5rem;
}

.article-meta {
    font-size: 0.95rem;
    color: var(--text-muted-color);
    font-style: italic;
}

.article-content h2,
.article-content h3 {
    margin-top: 2.5rem;
}

.article-content ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-muted-color);
    padding-left: 1.5rem;
    position: relative;
}

.article-content li::before {
    content: '🌿';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    color: var(--text-muted-color);
    background: var(--background-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: 1.1rem;
    font-style: italic;
}

.cta-section {
    background: linear-gradient(to right, #4A7C59, #6a9977);
    padding: 3rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    border: 1px solid var(--border-color);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.cta-section .btn {
    margin-top: 1rem;
    background-color: white;
    color: var(--primary-color);
}
.cta-section .btn:hover {
    background-color: #f0f0f0;
    color: #365a42;
}

/* --- Footer --- */
.site-footer {
    background: var(--surface-color);
    color: var(--text-muted-color);
    padding: 3rem 0;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted-color);
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    font-size: 0.95rem;
}

/* --- Static Pages (About, Contact, Offers) --- */
.static-page {
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--surface-color);
    box-shadow: var(--shadow);
}

.static-page h1 {
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
