/* Base Styles */
:root {
    --primary-color: #b05d45;
    --primary-dark: #8e4a36;
    --secondary-color: #f7e3d4;
    --accent-color: #5a8770;
    --text-color: #333333;
    --light-text: #666666;
    --lighter-text: #999999;
    --background-color: #ffffff;
    --light-bg: #f9f5f2;
    --border-color: #e5d7ce;
    --success-color: #5a8770;
    --error-color: #c84e4e;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    --container-width: 1200px;
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Lato', 'Segoe UI', Arial, sans-serif;
}

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

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

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

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

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

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

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

/* Button Styles */
button, .btn, .submit-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

button:hover, .btn:hover, .submit-btn:hover {
    background-color: var(--primary-dark);
}

/* Header Styles */
header {
    background-color: var(--background-color);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

header h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary-color);
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

/* Hero Section Styles */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 4rem 2rem;
    background-color: var(--light-bg);
    margin-bottom: 3rem;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Featured Posts/Recipes Grid */
.featured-posts,
.recipe-grid {
    padding: 2rem;
}

.featured-posts h2,
.recipe-grid h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
}

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

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

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

.post-image,
.recipe-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.post-content,
.recipe-content {
    padding: 1.5rem;
}

.post-content h3,
.recipe-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.recipe-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--lighter-text);
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recipe-meta i {
    font-size: 1rem;
}

.read-more,
.recipe-btn,
.recipe-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more:after,
.recipe-link:after {
    content: '→';
    margin-left: 0.3rem;
    transition: var(--transition);
}

.read-more:hover:after,
.recipe-link:hover:after {
    margin-left: 0.6rem;
}

.recipe-btn {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    transition: var(--transition);
}

.recipe-btn:hover {
    background-color: var(--primary-dark);
}

.recipe-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    padding: 0.3rem 0.8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
}

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

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

.testimonial:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 4rem;
    color: var(--secondary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial p {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--secondary-color);
    margin: 3rem 0;
}

.newsletter h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-family: var(--body-font);
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Footer Styles */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style-type: none;
}

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

.footer-links ul li a {
    color: var(--secondary-color);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.icon-location,
.icon-phone,
.icon-email {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 24px;
    height: 24px;
    fill: var(--secondary-color);
    transition: var(--transition);
}

.social-icon:hover {
    fill: white;
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.95);
    color: white;
    z-index: 2000;
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

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

.cookie-content {
    max-width: 1200px;
    padding: 1.5rem;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: white;
}

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--body-font);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-more {
    font-size: 0.85rem;
    opacity: 0.8;
}

.cookie-more a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

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

.question-modal h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.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: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--body-font);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.3rem;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}

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

.notification-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.check-icon {
    width: 60px;
    height: 60px;
    fill: var(--success-color);
    margin-bottom: 1rem;
}

.notification-content h3 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
}

.notification-content p {
    margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-main {
    padding: 2rem;
}

.about-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.about-hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.about-hero-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

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

.about-hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
}

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

.team-card {
    text-align: center;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-card h3 {
    margin-bottom: 0.3rem;
}

.team-card p:first-of-type {
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.mission-section,
.values-section {
    margin-bottom: 4rem;
}

.mission-section h2,
.values-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.2rem;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

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

.mission-text ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.mission-text li {
    margin-bottom: 0.5rem;
}

.mission-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.mission-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.value-card {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

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

.question-cta {
    background-color: var(--secondary-color);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.question-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.question-cta p {
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-main {
    padding: 2rem;
}

.contact-hero {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.contact-hero h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-info {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

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

.info-icon {
    width: 24px;
    margin-right: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.info-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.info-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.info-text p {
    color: var(--light-text);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
}

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

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

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.map-container img {
    width: 100%;
    display: block;
}

.faq-section {
    margin-bottom: 4rem;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 1.2rem;
}

/* Recipes Page Styles */
.recipes-main {
    padding: 2rem;
}

.recipes-hero {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 8px;
}

.recipes-hero h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.recipes-hero p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.recipe-filters {
    margin-bottom: 3rem;
}

.recipe-filters h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-group select,
.filter-group input {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    min-width: 180px;
}

.featured-recipes {
    margin-bottom: 4rem;
}

.featured-recipes h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.recipe-collection-notes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 3rem;
}

.notes-content {
    flex: 2;
    min-width: 300px;
}

.notes-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

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

.notes-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.notes-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Recipe Post Styles */
.recipe-post-main {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.recipe-post {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.recipe-post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-post-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.recipe-meta-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.recipe-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
}

.recipe-meta-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.recipe-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.recipe-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--light-text);
}

.recipe-intro p {
    margin-bottom: 1rem;
}

.recipe-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.recipe-ingredients h2,
.recipe-instructions h2,
.recipe-notes h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.recipe-ingredients h3 {
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.recipe-ingredients ul {
    list-style-position: inside;
}

.recipe-ingredients li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.recipe-instructions h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.recipe-instructions ol {
    list-style-position: outside;
    padding-left: 1.5rem;
}

.recipe-instructions li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recipe-instructions em {
    color: var(--primary-dark);
    font-style: italic;
}

.recipe-notes {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-top: 2rem;
}

.recipe-notes ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.recipe-notes li {
    margin-bottom: 0.8rem;
}

.recipe-gallery {
    margin-bottom: 3rem;
}

.recipe-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.gallery-grid figure {
    text-align: center;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 0.5rem;
}

.gallery-grid figcaption {
    font-size: 0.9rem;
    color: var(--light-text);
}

.recipe-story {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.recipe-story h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.story-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.story-text {
    flex: 2;
    min-width: 300px;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recipe-nutrition {
    margin-bottom: 3rem;
}

.recipe-nutrition h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.recipe-nutrition > p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.nutrition-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    list-style-type: none;
}

.nutrition-list li {
    min-width: 150px;
}

.reader-comments {
    margin-bottom: 3rem;
}

.reader-comments h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.comments-container {
    margin-bottom: 3rem;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.commenter-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.commenter-name {
    font-weight: 700;
}

.comment-date {
    font-size: 0.9rem;
    color: var(--lighter-text);
}

.add-comment h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.more-recipes {
    margin-bottom: 3rem;
}

.more-recipes h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

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

.recipe-card.small .recipe-image {
    height: 150px;
}

.recipe-card.small .recipe-content {
    padding: 1rem;
    display: block;
}

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

.recipe-share {
    text-align: center;
    margin-top: 4rem;
}

.recipe-share h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.share-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.share-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.pinterest {
    background-color: #bd081c;
    color: white;
}

.share-btn.email {
    background-color: #777;
    color: white;
}

.share-btn.print {
    background-color: #333;
    color: white;
}

.share-btn:hover {
    opacity: 0.9;
}

/* Responsive styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    nav ul {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero, 
    .about-hero,
    .mission-content,
    .story-content {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content,
    .about-hero-content,
    .mission-text,
    .story-text {
        padding: 0;
    }

    .post-grid,
    .recipe-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

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

    .recipe-content {
        grid-template-columns: 1fr;
    }

    .recipe-meta-large {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .recipe-collection-notes {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero h2,
    .about-hero-content h2,
    .recipe-post-header h1 {
        font-size: 1.8rem;
    }

    .filter-container,
    .nutrition-list {
        flex-direction: column;
        align-items: stretch;
    }

    .recipe-post {
        padding: 1rem;
    }
}

@media print {
    header, footer, 
    .cookie-banner,
    .recipe-share,
    .more-recipes,
    .reader-comments,
    .question-modal,
    .success-notification {
        display: none;
    }

    body {
        font-size: 12pt;
    }

    .recipe-post-main {
        margin: 0;
        padding: 0;
    }

    .recipe-post {
        box-shadow: none;
        padding: 0;
    }

    .recipe-content {
        display: block;
    }

    .recipe-ingredients,
    .recipe-instructions {
        page-break-inside: avoid;
    }
}
