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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

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

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

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-img {
    width: 40px;
    height: 40px;
}

.nav__logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #8b4513;
}

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

.nav__link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link:hover,
.nav__link--active {
    color: #8b4513;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #8b4513;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e5e0 100%);
    padding: 4rem 0;
    text-align: center;
}

.hero__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero__image {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.hero__text {
    flex: 1;
    text-align: left;
    min-width: 300px;
}

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

.hero__subtitle {
    font-size: 1.2rem;
    color: #5d4e37;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__cta {
    background-color: #8b4513;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero__cta:hover {
    background-color: #5d4e37;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #8b4513;
}

/* About Company Section */
.about-company {
    padding: 4rem 0;
    background-color: white;
}

.about-company__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-company__icon {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.about-company__text {
    flex: 1;
    min-width: 300px;
}

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

.about-company__text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background-color: #faf8f5;
}

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

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

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

.service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Featured Recipes Section */
.featured-recipes {
    padding: 4rem 0;
    background-color: white;
}

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

.recipe-card {
    background: #faf8f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.recipe-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recipe-card__content {
    padding: 1.5rem;
}

.recipe-card h3 {
    font-size: 1.3rem;
    color: #8b4513;
    margin-bottom: 0.5rem;
}

.recipe-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recipe-card__link {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.recipe-card__link:hover {
    color: #5d4e37;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #f5f3f0;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #8b4513;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    padding-left: 20px;
}

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

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background-color: #8b4513;
    color: white;
}

.newsletter__content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.newsletter__icon {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.newsletter__text {
    flex: 1;
    min-width: 300px;
}

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

.newsletter__text p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.newsletter__input {
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter__submit {
    background-color: #5d4e37;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter__submit:hover {
    background-color: #4a3d28;
}

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

.footer__info address {
    font-style: normal;
    line-height: 1.6;
}

.footer__links h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.footer__links ul {
    list-style: none;
}

.footer__links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: white;
}

.footer__social h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

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

.social-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.footer__bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #bbb;
}

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

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

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

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

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn--accept-all {
    background-color: #8b4513;
    color: white;
}

.cookie-btn--accept-all:hover {
    background-color: #5d4e37;
}

.cookie-btn--necessary {
    background-color: #666;
    color: white;
}

.cookie-btn--necessary:hover {
    background-color: #555;
}

.cookie-btn--custom {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn--custom:hover {
    background-color: white;
    color: #2c3e50;
}

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

.page-hero__title {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.page-hero__subtitle {
    font-size: 1.2rem;
    color: #5d4e37;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-section__icon {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

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

.about-section__content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Blog Grid */
.blog-grid {
    padding: 4rem 0;
}

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

.article-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.article-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-card__content {
    padding: 2rem;
}

.article-card__title {
    font-size: 1.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.article-card__excerpt {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-card__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.article-card__link {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-card__link:hover {
    color: #5d4e37;
}

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

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

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

.article__meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.article__hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
}

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

.article__intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #5d4e37;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f5f3f0;
    border-left: 4px solid #8b4513;
}

.recipe-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.ingredients-list,
.recipe-steps,
.tips-list {
    margin-left: 1rem;
}

.ingredients-list li,
.tips-list li {
    margin-bottom: 0.5rem;
}

.recipe-steps li {
    margin-bottom: 1rem;
}

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

.article__back {
    color: #8b4513;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article__back:hover {
    color: #5d4e37;
}

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

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

.thank-you__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you__title {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.thank-you__message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.thank-you__benefits {
    margin-bottom: 3rem;
    text-align: left;
}

.thank-you__benefits h2 {
    color: #8b4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefits-list__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.thank-you__actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn--primary {
    background-color: #8b4513;
    color: white;
}

.btn--primary:hover {
    background-color: #5d4e37;
}

.btn--secondary {
    background-color: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

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

.thank-you__social p {
    margin-bottom: 1rem;
}

.social-link {
    display: inline-block;
    margin: 0 0.5rem;
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #5d4e37;
}

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

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

.legal-page__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-page__intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f5f3f0;
    border-left: 4px solid #8b4513;
}

.legal-section {
    margin-bottom: 2rem;
}

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

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
}

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

.legal-page__date {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.cookie-settings {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f5f3f0;
    border-radius: 5px;
}

.cookie-settings h3 {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav__menu {
        gap: 1rem;
    }
    
    .hero__content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero__text {
        text-align: center;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .about-company__content,
    .about-section,
    .newsletter__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .article__meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero__title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-hero__title {
        font-size: 2rem;
    }
}

.newsletter__text {
    text-align: center;
}

.newsletter__form {
    margin: 20px auto;
}