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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #fefcf8;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    color: #b8860b;
}

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

/* Header */
.header {
    background-color: #f5f2ed;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 30px;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #8b4513;
}

.logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #b8860b;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #b8860b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #8b4513;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8dcc0 100%);
    padding: 4rem 30px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #654321;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f5f2ed 0%, #e8dcc0 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #654321;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: #b8860b;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: #8b6914;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #8b4513;
    padding: 1rem 2rem;
    border: 2px solid #8b4513;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.secondary-button:hover {
    background-color: #8b4513;
    color: white;
}

.learn-more {
    color: #b8860b;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    color: #8b4513;
    text-align: center;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background-color: white;
}

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

.about-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.about h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 2rem;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #654321;
}

/* Services Section */
.services {
    background-color: #f9f7f4;
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.service-card p {
    color: #654321;
}

/* Blog Sections */
.blog-preview,
.blog-articles {
    background-color: white;
}

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

.blog-card {
    background-color: #f9f7f4;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card.featured .blog-image {
    height: 100%;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #8b4513;
}

.blog-date,
.blog-category {
    background-color: #e8dcc0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.blog-card h2,
.blog-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.blog-card h2 {
    font-size: 1.8rem;
}

.blog-card h3 {
    font-size: 1.4rem;
}

.blog-card p {
    color: #654321;
    margin-bottom: 1rem;
}

.read-more {
    color: #b8860b;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Blog Article Page */
.blog-article {
    padding: 2rem 0;
}

.article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.back-link {
    color: #b8860b;
    font-weight: bold;
}

.article-date,
.article-category {
    background-color: #e8dcc0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #8b4513;
    font-size: 0.9rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.article-lead {
    font-size: 1.2rem;
    color: #654321;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

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

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

.article-content h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 1.5rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #8b4513;
    margin: 2rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #654321;
}

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

.article-content li {
    margin-bottom: 0.5rem;
    color: #654321;
}

.recipe-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.stat p {
    font-weight: bold;
    color: #b8860b;
}

.ingredients,
.instructions {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.tips ul,
.instructions ol {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
}

.article-footer {
    border-top: 2px solid #e8dcc0;
    padding-top: 2rem;
    margin-top: 3rem;
}

.tags {
    margin-bottom: 2rem;
}

.tag {
    background-color: #e8dcc0;
    color: #8b4513;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.share h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.social-share {
    display: flex;
    gap: 1rem;
}

.social-share a {
    background-color: #b8860b;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-share a:hover {
    background-color: #8b6914;
}

/* Related Articles */
.related-articles {
    background-color: #f9f7f4;
    padding: 3rem 0;
}

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

/* Testimonials */
.testimonials {
    background-color: #f9f7f4;
}

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

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

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #654321;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    color: #8b4513;
    font-weight: bold;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.newsletter .cta-button {
    background-color: white;
    color: #8b4513;
}

.newsletter .cta-button:hover {
    background-color: #f5f2ed;
}

/* Contact */
.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3,
.social-media h3 {
    color: #8b4513;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #b8860b;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    background-color: #8b4513;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #b8860b;
}

/* About Page Specific */
.company-story,
.mission,
.values,
.team {
    padding: 3rem 0;
}

.company-story {
    background-color: white;
}

.story-content,
.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.story-content h2,
.mission-content h2 {
    font-size: 2rem;
    color: #8b4513;
    margin-bottom: 2rem;
}

.story-content p,
.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #654321;
}

.mission {
    background-color: #f9f7f4;
}

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

.mission-point {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.mission-point h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    background-color: white;
    padding: 3rem 0;
}

.timeline h2 {
    text-align: center;
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8dcc0;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #b8860b;
    text-align: center;
    background-color: #f9f7f4;
    padding: 1rem;
    border-radius: 8px;
    align-self: start;
}

.timeline-description h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.timeline-description p {
    color: #654321;
}

/* Values */
.values {
    background-color: #f9f7f4;
}

.values h2 {
    text-align: center;
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.value-card p {
    color: #654321;
}

/* Team */
.team {
    background-color: white;
}

.team h2 {
    text-align: center;
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.team-member {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #b8860b;
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-member p {
    color: #654321;
}

/* Subscription Form */
.subscription-form {
    background-color: white;
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #654321;
    font-size: 1.1rem;
}

.subscription-form-element {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    color: #8b4513;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e8dcc0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #b8860b;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #654321;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-btn {
    width: 100%;
    background-color: #b8860b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #8b6914;
}

/* Subscription Benefits */
.subscription-benefits {
    background-color: #f9f7f4;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.subscription-benefits h3 {
    color: #8b4513;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

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

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #654321;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background-color: white;
    padding: 3rem 0;
}

.faq h2 {
    text-align: center;
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #654321;
}

/* Thank You Page */
.thank-you {
    background-color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
}

.thank-you h1 {
    color: #8b4513;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-lead {
    font-size: 1.5rem;
    color: #654321;
    margin-bottom: 3rem;
}

.thank-you-details {
    background-color: #f9f7f4;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: left;
}

.thank-you-details h2 {
    color: #8b4513;
    text-align: center;
    margin-bottom: 2rem;
}

.steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1rem;
    align-items: start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #b8860b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #654321;
}

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

.welcome-gift {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.welcome-gift h2 {
    margin-bottom: 2rem;
}

.gift-content {
    max-width: 600px;
    margin: 0 auto;
}

.gift-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.gift-content h3 {
    margin-bottom: 1rem;
}

.gift-content p {
    font-size: 1.1rem;
}

.latest-articles {
    background-color: #f9f7f4;
    padding: 3rem 0;
}

.latest-articles h2 {
    text-align: center;
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.latest-articles > .container > p {
    text-align: center;
    color: #654321;
    margin-bottom: 3rem;
}

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

.social-follow {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-follow h2 {
    color: #8b4513;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.social-follow p {
    color: #654321;
    margin-bottom: 2rem;
}

.social-follow .social-links {
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    background-color: white;
    padding: 4rem 0;
}

.legal-page h1 {
    color: #8b4513;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #654321;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-content section {
    margin-bottom: 3rem;
    padding: 0;
}

.legal-content h2 {
    color: #8b4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8dcc0;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #8b4513;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
}

.legal-content p {
    color: #654321;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

.legal-content a {
    color: #b8860b;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #8b6914;
}

.cookie-settings-panel {
    background-color: #f9f7f4;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.cookie-settings-panel h2 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.cookie-settings-panel p {
    color: #654321;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #8b4513;
    color: 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 h3 {
    margin-bottom: 1rem;
    color: #f5f2ed;
}

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

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

.footer-section a {
    color: #e8dcc0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c1810;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-btn.primary {
    background-color: #b8860b;
    color: white;
}

.cookie-btn.primary:hover {
    background-color: #8b6914;
}

.cookie-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.secondary:hover {
    background-color: white;
    color: #2c1810;
}

.cookie-btn.tertiary {
    background-color: transparent;
    color: #e8dcc0;
    border: 1px solid #e8dcc0;
}

.cookie-btn.tertiary:hover {
    background-color: #e8dcc0;
    color: #2c1810;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f5f2ed;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .blog-card.featured .blog-image {
        height: 200px;
    }

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

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-year {
        text-align: left;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .secondary-button {
        margin-left: 0;
        margin-top: 1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .recipe-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-share {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

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

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

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

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

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

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

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

    .mission-points {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        padding: 1rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-consent,
    .social-share,
    .cta-button,
    .secondary-button {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .article-content {
        max-width: none;
    }
}
