/* naturlichheute.com - Editorial Design System */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --bg-color: #fcfcfc;
    --text-color: #1a1a1a;
    --accent-green: #2d4635;
    --light-green: #e9edea;
    --border-color: #e0e0e0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --spacing-unit: 1rem;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    filter: grayscale(10%) contrast(105%);
}

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

/* Header */
header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-family: var(--font-serif);
    font-style: italic;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-green);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Featured Editorial */
.featured {
    padding: 4rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    background-color: var(--light-green);
    aspect-ratio: 4/5;
    overflow: hidden;
}

.featured-text {
    padding-right: 2rem;
}

.category-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-green);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 2px;
}

.featured-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.featured-text p {
    margin-bottom: 1.5rem;
    color: #444;
}

/* Article Grid */
.articles {
    padding: 6rem 0;
    background-color: #fff;
}

.section-head {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.article-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

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

.article-card img {
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1.5rem;
    background-color: var(--light-green);
}

.article-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.article-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-green);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

/* Disclaimer Section */
.editorial-note {
    padding: 6rem 0;
    background-color: var(--light-green);
    text-align: center;
}

.editorial-note p {
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-green);
}

/* Footer */
footer {
    padding: 6rem 0 2rem;
    border-top: 1px solid var(--border-color);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h4 {
    margin-bottom: 1.5rem;
}

.contact-info {
    font-size: 0.9rem;
    color: #666;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: var(--accent-green);
    color: #fff;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    background: #fff;
    color: var(--accent-green);
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Advertorial Top Bar */
.top-bar-disclosure {
    background-color: #f5f5f5;
    color: #666;
    font-size: 0.75rem;
    text-align: center;
    padding: 0.3rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #e0e0e0;
}