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

:root {
    --primary-color: #d35400;
    --primary-dark: #a04000;
    --secondary-color: #2c3e50;
    --accent-color: #f1c40f;
    --background-color: #fff;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
    --box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn, button.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover, button.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie.accept {
    background-color: var(--success-color);
    color: white;
}

.btn-cookie.customize {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-cookie.decline {
    background-color: var(--light-gray);
    color: var(--dark-gray);
}

.btn-cookie:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    height: 60px;
    width: auto;
}

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

nav li {
    margin-left: 2rem;
}

nav a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

nav a:hover, nav a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 5rem 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.featured-recipes h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.recipe-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

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

.recipe-card h3 {
    padding: 1.25rem 1.25rem 0.5rem;
    font-size: 1.3rem;
}

.recipe-card p {
    padding: 0 1.25rem 1.25rem;
    color: var(--dark-gray);
}

.recipe-card .btn-small {
    margin: 0 1.25rem 1.25rem;
}

/* Fun Fact Section */
.fun-fact {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.fun-fact h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.fact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.fact-content p {
    margin-bottom: 1rem;
}

.fact-content ul {
    margin-bottom: 1rem;
    list-style-type: disc;
    padding-left: 1.5rem;
}

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

/* About Preview */
.about-preview {
    padding: 4rem 0;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Latest Posts */
.latest-posts {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.post-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card h3 {
    padding: 1.25rem 1.25rem 0.5rem;
    font-size: 1.3rem;
}

.post-card p {
    padding: 0 1.25rem;
    color: var(--dark-gray);
}

.read-more {
    display: inline-block;
    padding: 0 1.25rem 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
}

.read-more:hover {
    color: var(--primary-dark);
}

.view-all {
    text-align: center;
}

/* Page Header */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Posts */
.blog-posts {
    padding: 4rem 0;
}

.post-card {
    margin-bottom: 2.5rem;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-card .post-image {
    height: 300px;
    overflow: hidden;
}

.post-card .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-card .post-content {
    padding: 2rem;
}

.post-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.post-meta span {
    margin-right: 1.5rem;
}

.post-card p {
    margin-bottom: 1.5rem;
}

/* Newsletter */
.newsletter {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--primary-color);
}

/* About Story */
.about-story {
    padding: 4rem 0;
}

.about-story .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-story .about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-story .about-text h2 {
    margin-bottom: 1.5rem;
}

.about-story .about-text p {
    margin-bottom: 1.5rem;
}

/* Mission Section */
.our-mission {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.mission-content h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.mission-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-icon svg {
    width: 48px;
    height: 48px;
}

.mission-item h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.team-member {
    text-align: center;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.25rem 1.25rem 0.5rem;
    font-size: 1.3rem;
}

.team-member p {
    padding: 0 1.25rem 1.25rem;
    color: var(--dark-gray);
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.value-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.testimonial {
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

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

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-content p, .info-content a {
    color: var(--dark-gray);
}

.social-connect h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--secondary-color);
    margin-right: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.btn-submit {
    width: 100%;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.thank-you-message h2 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

.close-btn {
    display: inline-block;
}

/* Recipe Hero */
.recipe-hero {
    background-color: var(--secondary-color);
    padding: 3rem 0;
    color: white;
}

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

.recipe-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Recipe Article */
.recipe-article {
    padding: 4rem 0;
}

.recipe-article .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.recipe-main-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.recipe-introduction h2 {
    margin-bottom: 1.5rem;
}

.recipe-introduction p {
    margin-bottom: 1.5rem;
}

.recipe-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.recipe-info-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.info-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recipe-info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.recipe-info-card p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

.recipe-ingredients, .recipe-instructions, .recipe-tips, .recipe-serving, .recipe-variations, .recipe-conclusion {
    margin-bottom: 3rem;
}

.recipe-ingredients h2, .recipe-instructions h2, .recipe-tips h2, .recipe-serving h2, .recipe-variations h2, .recipe-conclusion h2 {
    margin-bottom: 1.5rem;
}

.recipe-ingredients ul, .recipe-tips ul, .recipe-serving ul, .recipe-variations ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.recipe-ingredients li, .recipe-tips li, .recipe-serving li, .recipe-variations li {
    margin-bottom: 0.5rem;
}

.recipe-note {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.recipe-note h3 {
    margin-bottom: 0.5rem;
}

.recipe-note p {
    margin-bottom: 0;
}

.recipe-instructions ol {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}

.recipe-instructions li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.recipe-instructions li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 2.25rem;
    height: 2.25rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.recipe-instructions h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.recipe-share {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.recipe-share h3 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.share-buttons svg {
    margin-right: 0.5rem;
}

/* Sidebar */
.recipe-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sidebar-widget p {
    margin-bottom: 1.5rem;
}

.related-post {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 1rem;
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
}

.sidebar-form input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.equipment-list {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.equipment-list li {
    margin-bottom: 0.5rem;
}

/* More Recipes */
.more-recipes {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.more-recipes h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding-top: 4rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 0;
}

.footer-links h3, .footer-legal h3, .footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a, .footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover, .footer-legal a:hover {
    color: white;
}

.footer-social .social-icons {
    margin-top: 1rem;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Notice */
.cookie-notice {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cookie-policy {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-policy a {
    color: var(--accent-color);
}

.cookie-policy a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .recipe-article .container {
        grid-template-columns: 1fr;
    }
    
    .recipe-sidebar {
        position: static;
    }
    
    .about-content, .about-story .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav li {
        margin: 0 0.5rem;
    }
    
    .recipe-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .share-buttons a span {
        display: none;
    }
    
    .share-buttons a svg {
        margin-right: 0;
    }
    
    .cookie-content {
        padding: 1rem;
    }
}
