/* ---
   Theme: Nature Inspired
   Font: Merriweather
   Primary Color: #2aa198 (Teal Green)
   Text Color: #586e75 (Dark Slate Gray)
   Background Color: #fdf6e3 (Soft Beige)
   Card/Header Background: #eee8d5 (Slightly Darker Beige)
   Border Color: #d3cbb7
   --- */

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

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

body {
    font-family: 'Merriweather', serif;
    line-height: 1.8;
    color: #586e75;
    background-color: #fdf6e3;
    font-size: 17px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #073642; /* A darker slate for headings */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1.5rem; }

a {
    color: #2aa198;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #207a74;
    text-decoration: underline;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

/* --- Layout & Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-area {
    flex: 1;
}

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

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

/* --- Header & Navigation --- */
.site-header {
    background-color: #eee8d5;
    padding: 1.5rem 0;
    border-bottom: 1px solid #d3cbb7;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #073642;
}

.site-title a {
    color: inherit;
}

.site-title a:hover {
    text-decoration: none;
    color: #2aa198;
}

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

.main-nav a {
    font-weight: 700;
    color: #657b83;
    padding-bottom: 0.5rem;
    position: relative;
    font-size: 1.05rem;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2aa198;
    transition: width 0.3s ease;
}

.main-nav a:hover, .main-nav a:focus {
    color: #073642;
    text-decoration: none;
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- Main Content & Articles --- */
.page-intro {
    padding: 3.5rem 2rem;
    text-align: center;
    background-color: #eee8d5;
    border-radius: 12px;
    margin-bottom: 3rem;
    border: 1px solid #d3cbb7;
}

.page-intro h1 {
    margin-bottom: 1.5rem;
}

.page-intro p {
    max-width: 800px;
    margin: 0 auto;
    color: #657b83;
    font-size: 1.2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background-color: #fdf6e3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d3cbb7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

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

.card-content h3 {
    margin-top: 0;
    line-height: 1.5;
}

.card-content h3 a {
    color: #073642;
}
.card-content h3 a:hover {
    color: #2aa198;
    text-decoration: none;
}

.card-content p {
    color: #657b83;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: #2aa198;
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: #207a74;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Article Page Specifics */
.article-full {
    background: #fdf6e3;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #d3cbb7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-header {
    border-bottom: 1px solid #d3cbb7;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
}

.article-meta {
    color: #839496;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

.article-content h2 {
    margin-top: 3rem;
    border-bottom: 2px solid #eee8d5;
    padding-bottom: 0.75rem;
}

.article-content h3 {
    margin-top: 2.5rem;
    color: #073642;
}

.cta-section {
    background-color: #eee8d5;
    border: 1px solid #d3cbb7;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3.5rem;
    text-align: center;
}

.cta-section h3 {
    margin-top: 0;
}

/* --- Sidebar --- */
.sidebar-widget {
    background-color: #eee8d5;
    padding: 1.75rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border: 1px solid #d3cbb7;
}

.sidebar-widget h4 {
    border-bottom: 2px solid #d3cbb7;
    padding-bottom: 0.75rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

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

.sidebar-widget ul li a {
    color: #586e75;
    font-weight: 700;
}

.sidebar-widget ul li a:hover {
    color: #2aa198;
}

.sidebar-widget p {
    color: #657b83;
}

/* --- Footer --- */
.site-footer {
    background-color: #eee8d5;
    color: #839496;
    padding: 3.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #d3cbb7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.75rem;
}

.footer-links a {
    color: #586e75;
    font-weight: 700;
}

.footer-links a:hover {
    color: #073642;
}

/* --- Contact Page & Offers Page --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-form label {
    font-weight: 700;
    color: #586e75;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d3cbb7;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
    background-color: #fdf6e3;
    color: #586e75;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2aa198;
    box-shadow: 0 0 0 3px rgba(42, 161, 152, 0.2);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: #586e75;
}

.offers-list h2 {
    margin-top: 2.5rem;
    border-bottom: 2px solid #eee8d5;
    padding-bottom: 0.75rem;
}
.offers-list ul {
    list-style-type: '🌿';
    padding-left: 2rem;
}

.offers-list ul li {
    padding-left: 0.75rem;
    margin-bottom: 0.5rem;
}
