/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f5;
}

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

/* Color Variables */
:root {
    --primary-brown: #8B4513;
    --light-brown: #CD853F;
    --cream: #F5F5DC;
    --dark-brown: #654321;
    --sage-green: #9CAF88;
    --warm-orange: #D2691E;
    --soft-beige: #F5E6D3;
    --text-dark: #2c1810;
    --white: #ffffff;
    --light-gray: #f8f6f3;
    --border-color: #e8e4df;
}

/* Header and Navigation */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(140, 69, 19, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-brown);
    text-decoration: none;
}

.nav-brand i {
    margin-right: 0.5rem;
    color: var(--warm-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-menu i {
    font-size: 0.9rem;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-beige) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    color: var(--text-dark);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-content h1 i {
    color: var(--warm-orange);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--dark-brown);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alternate {
    background-color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 2.5rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    font-weight: 600;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
}

.feature i {
    color: var(--warm-orange);
    font-size: 1.2rem;
    width: 20px;
}

.about-visual {
    text-align: center;
}

.chef-icon {
    font-size: 8rem;
    color: var(--primary-brown);
    opacity: 0.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

/* Recipes Grid */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

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

.recipe-icon {
    font-size: 2rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.recipe-card h3 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.recipe-time {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--sage-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-icon {
    font-size: 2rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: var(--primary-brown);
    text-decoration: none;
    font-size: 1.2rem;
}

.blog-card h3 a:hover {
    color: var(--dark-brown);
}

.blog-date {
    color: var(--sage-green);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    text-align: center;
}

.stars {
    color: var(--warm-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    color: var(--sage-green);
    font-weight: 600;
    margin-top: 1rem;
    display: block;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: var(--warm-orange);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

/* Forms */
.contact-form, .newsletter-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-brown);
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
}

.submit-btn, .btn-primary, .btn-secondary {
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.submit-btn:hover, .btn-primary:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--sage-green);
}

.btn-secondary:hover {
    background: #7a9468;
}

/* Newsletter Section */
#newsletter {
    background: var(--primary-brown);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text i {
    font-size: 2rem;
    color: var(--warm-orange);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.newsletter-form input {
    min-width: 300px;
    border: 2px solid var(--white);
    background: var(--white);
}

.newsletter-form button {
    background: var(--warm-orange);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8631a;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--warm-orange);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section a:hover {
    color: var(--warm-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--warm-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-brown);
    color: var(--white);
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--sage-green);
    color: var(--white);
}

.btn-necessary {
    background: var(--warm-orange);
    color: var(--white);
}

.btn-settings {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
}

/* Thank You Page */
.thank-you-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: var(--sage-green);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: var(--primary-brown);
    margin-bottom: 2rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.thank-you-suggestions {
    margin-top: 3rem;
    text-align: left;
}

.thank-you-suggestions h3 {
    text-align: center;
    color: var(--primary-brown);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.suggestion-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1);
    text-align: center;
}

.suggestion-card i {
    font-size: 2rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.suggestion-card h4 {
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.suggestion-card a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
}

.social-follow {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-follow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-follow a:hover {
    background: var(--warm-orange);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form input {
        min-width: 250px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid, .recipes-grid, .blog-grid, .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 100px;
    min-height: 80vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

.legal-content h1 {
    color: var(--primary-brown);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-content h2 {
    color: var(--dark-brown);
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--primary-brown);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content address {
    font-style: normal;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-nav {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
        flex-direction: column;
    }
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cookie-modal-header {
    background: var(--primary-brown);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-toggle {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.cookie-toggle label {
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    flex: 1;
}

.required {
    color: var(--warm-orange);
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 0.5rem;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-modal-footer {
    background: var(--light-gray);
    padding: 1rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-modal-footer button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--sage-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cookie-message.show {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .cookie-modal-content {
        width: 95%;
    }
    
    .cookie-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
    }
    
    .cookie-toggle {
        align-items: center;
    }
}

/* Blog Article Styles */
.blog-article-page .blog-article {
    padding-top: 100px;
    min-height: 100vh;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.1);
}

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

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--sage-green);
}

.article-content h1 {
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.article-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    color: var(--primary-brown);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-section h3 {
    color: var(--dark-brown);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-section h4 {
    color: var(--primary-brown);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-section ul, .article-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.recipe-highlight, .wine-pairing, .quick-recipe, .pairing-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--warm-orange);
}

.ingredient-list, .health-tips, .weekly-plan, .stollen-tradition, .regional-cakes, .baking-tips, .meal-prep-tips, .cooking-hacks, .wine-regions, .seasonal-wine, .expert-tips, .dinner-planning, .wine-storage {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cake-region, .prep-category, .tip-category, .region, .season-pairing, .menu-course, .tip-box, .hack-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cake-region:last-child, .prep-category:last-child, .tip-category:last-child, .region:last-child, .season-pairing:last-child, .menu-course:last-child, .tip-box:last-child, .hack-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.hack-list, .nutrition-tips, .occasion-list {
    list-style: none;
    padding-left: 0;
}

.hack-list .hack-item, .nutrition-tips li {
    background: var(--white);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.1);
}

.pro-tip {
    background: var(--sage-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.pro-tip h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--sage-green);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.article-nav a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-brown);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-nav a:hover {
    background: var(--primary-brown);
    color: var(--white);
}

@media (max-width: 768px) {
    .article-content {
        padding: 2rem 1.5rem;
    }
    
    .article-content h1 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-nav {
        flex-direction: column;
    }
    
    .recipe-highlight, .wine-pairing, .quick-recipe {
        padding: 1.5rem;
    }
    
    .ingredient-list, .health-tips, .weekly-plan {
        padding: 1rem;
    }
}