/* --- GLOBAL STYLES & MAKEOVER THEME --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

:root {
    --primary-green: #2d5a27;   /* Deep Wellness Green */
    --accent-gold: #c5a059;     /* Spa/Beauty Accent */
    --light-cream: #faf7f2;    /* Main Background */
    --dark-text: #2c3e50;
    --soft-white: #ffffff;
}

body {
    background-color: var(--light-cream);
    color: var(--dark-text);
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* --- NAV BAR --- */
header {
    background: var(--soft-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-green);
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* --- EXPANSIVE HERO SECTION --- */
.hero {
    background: var(--primary-green);
    color: var(--soft-white);
    padding: 160px 0 100px; /* Adjusting for fixed header */
    text-align: center;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 35px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--soft-white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.btn:hover {
    background: #b58f4a;
    transform: translateY(-2px);
}

/* --- MAIN CONTENT LAYOUT --- */
.main-layout {
    display: flex;
    gap: 40px;
    padding: 60px 0;
}

main {
    flex: 3;
}

aside {
    flex: 1;
}

/* --- NEW ARTICLE CARDS WITH IMAGES --- */
section {
    margin-bottom: 60px;
}

h2.section-title {
    color: var(--primary-green);
    font-size: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.card-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-card {
    background: var(--soft-white);
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
}

/* Important: Your 3 images must exist as .jpg on your server for this to work */
.card-image-box {
    flex: 1;
    min-width: 300px;
    height: auto;
    background-size: cover;
    background-position: center;
}

.card-content {
    flex: 2;
    padding: 30px;
}

.card-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    color: var(--soft-white);
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.health-tag { background: var(--primary-green); }
.beauty-tag { background: var(--accent-gold); }

.article-card h3 {
    margin-bottom: 15px;
    color: var(--dark-text);
    font-size: 24px;
    line-height: 1.3;
}

.article-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 20px;
}

/* --- SIDEBAR STYLES --- */
.sidebar-box {
    background: var(--soft-white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.sidebar-box h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
}

.sidebar-box p {
    font-size: 14px;
    color: #666;
}

/* AD PLACEHOLDER */
.ad-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    text-align: center;
}

.ad-space {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
    font-size: 14px;
}

.newsletter-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 25px;
    margin-top: 10px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

/* --- FOOTER --- */
footer {
    background: var(--primary-green);
    color: var(--light-cream);
    text-align: center;
    padding: 40px 0;
    margin-top: 60px;
    font-size: 14px;
    font-weight: 300;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .main-layout {
        flex-direction: column;
    }
    .article-card {
        flex-direction: column;
    }
    .card-image-box {
        min-height: 200px;
    }
    .hero h1 {
        font-size: 36px;
    }
}