/* Base Styles */
:root {
    --primary-color: #D13528;
    --secondary-color: #CC231E;
    --tertiary-color: #E54B4B;
    --accent-color: #F8A41D;
    --light-accent: #FEF9D4;
    --dark-color: #34495e;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --background-color: #fff;
    --light-background: #f9f9f9;
    --border-color: #e1e1e1;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --border-radius-sm: 3px;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-secondary: 'Playfair Display', Georgia, 'Times New Roman', Times, serif;
    --max-width: 1200px;
    --container-padding: 0 20px;
    --section-spacing: 80px;
    --card-spacing: 20px;
}

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

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    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(--secondary-color);
}

ul, ol {
    list-style-position: inside;
    margin: 1em 0;
}

/* Container & Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.67em;
}

h2 {
    font-size: 2rem;
    margin-top: 1.5em;
    margin-bottom: 0.83em;
}

h3 {
    font-size: 1.5rem;
    margin-top: 1.2em;
    margin-bottom: 1em;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn {
    padding: 8px 16px;
    margin-right: 8px;
    font-size: 0.9rem;
}

.cookie-btn.secondary {
    background-color: #f5f5f5;
    color: var(--text-color);
    border: 1px solid #ddd;
}

.cookie-btn.outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid #ddd;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-color);
}

.font-size-control {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.font-size-control button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-color);
    padding: 5px;
    transition: var(--transition);
}

.font-size-control button:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

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

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 0;
    background-color: var(--light-background);
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
}

.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 10px 20px rgba(0, 0, 0, 0.1);
}

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.post-content p {
    margin-bottom: 15px;
    color: var(--light-text);
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-top: 0;
}

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

/* Newsletter Section */
.newsletter {
    background-color: var(--light-accent);
    padding: 60px 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 15px;
}

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

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

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

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px 40px;
}

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

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact address a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

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

.social-links svg {
    width: 18px;
    height: 18px;
}

.copyright {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

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

.cookie-content p {
    margin-bottom: 15px;
    max-width: 800px;
}

.cookie-buttons {
    margin-bottom: 10px;
}

.cookie-content a {
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal.show {
    display: block;
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: var(--light-text);
}

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

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

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 25px;
}

/* Page Header */
.page-header {
    background-color: var(--light-accent);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--light-text);
}

/* Blog Page Styles */
.blog-posts {
    padding: 60px 0;
}

.post-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    margin: 0 5px 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.filter-btn:hover {
    color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

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

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

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

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-date {
    color: var(--lighter-text);
}

.blog-content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--light-text);
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.contact-item h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
}

.social-contact h3 {
    margin-bottom: 15px;
}

.contact-form-container h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    transition: var(--transition);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-checkbox label {
    margin: 0;
    font-weight: normal;
    font-size: 0.9rem;
    color: var(--light-text);
}

.form-checkbox label a {
    text-decoration: underline;
}

.map-section {
    padding: 60px 0;
    background-color: var(--light-background);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    height: 400px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.map-overlay p {
    margin-bottom: 15px;
}

.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-toggle svg {
    transition: var(--transition);
}

.faq-question.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Blog Post Styles */
.post-header {
    background-color: var(--light-accent);
    padding: 60px 0 40px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
    margin-right: 20px;
}

.post-date {
    color: var(--light-text);
}

.post-header h1 {
    margin-bottom: 25px;
    font-size: 2.8rem;
}

.post-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
}

.author-title {
    font-size: 0.9rem;
    color: var(--light-text);
}

.featured-image {
    margin-bottom: 40px;
    position: relative;
}

.featured-image img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.image-caption {
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.9rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

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

.intro-paragraph {
    font-size: 1.2rem;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
}

.post-body h2 {
    font-size: 1.8rem;
    margin-top: 50px;
    margin-bottom: 20px;
}

.post-body h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.info-callout {
    background-color: var(--light-accent);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
}

.info-callout h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-callout p {
    margin-bottom: 0;
}

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

.image-with-caption {
    margin: 30px 0;
}

.image-with-caption img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.image-with-caption figcaption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.recipe-card {
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 30px 0;
}

.recipe-card h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.recipe-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-align: center;
}

.recipe-ingredients, 
.recipe-method,
.recipe-tips {
    margin-bottom: 25px;
}

.recipe-ingredients h4,
.recipe-method h4,
.recipe-tips h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.recipe-ingredients ul,
.recipe-tips ul {
    list-style-type: disc;
    padding-left: 20px;
}

.recipe-method ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.recipe-method li,
.recipe-ingredients li,
.recipe-tips li {
    margin-bottom: 8px;
}

.custom-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.custom-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.custom-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.quote-block {
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    background-color: var(--light-background);
    margin: 30px 0;
}

.quote-block blockquote {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.quote-block cite {
    font-style: normal;
    font-weight: 500;
    color: var(--dark-color);
    display: block;
    text-align: right;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.gallery-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    color: var(--light-text);
}

.conclusion {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--light-accent);
    border-radius: var(--border-radius);
}

.conclusion h2 {
    margin-top: 0;
}

.post-tags {
    margin: 40px 0;
}

.post-tags span {
    font-weight: 500;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--light-background);
    border-radius: 30px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.share-post {
    margin-bottom: 50px;
    text-align: center;
}

.share-post h3 {
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-background);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--dark-color);
}

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

.post-author-bio {
    display: flex;
    padding: 30px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    margin-bottom: 50px;
}

.post-author-bio .author-img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}

.author-bio-content h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1rem;
    color: var(--light-text);
}

.author-bio-content h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.author-bio-content p {
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--dark-color);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

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

.related-post h3 {
    padding: 15px 15px 10px;
    margin: 0;
    font-size: 1.1rem;
}

.related-post p {
    padding: 0 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--light-text);
}

.related-post .read-more {
    display: block;
    padding: 0 15px 15px;
    font-size: 0.9rem;
}

.post-comments {
    margin-bottom: 50px;
}

.post-comments h2 {
    margin-bottom: 30px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
}

.comment-reply {
    margin-left: 50px;
}

.comment-avatar {
    flex-shrink: 0;
    margin-right: 20px;
}

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

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-header h4 {
    margin: 0;
}

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

.comment-content p {
    margin-bottom: 15px;
}

.reply-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
}

.reply-btn:hover {
    text-decoration: underline;
}

.no-comments {
    text-align: center;
    color: var(--light-text);
    padding: 20px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.comment-form {
    background-color: var(--light-background);
    padding: 30px;
    border-radius: var(--border-radius);
}

.comment-form h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

/* About Us Page Styles */
.about-story {
    padding: 60px 0;
}

.about-story .about-content {
    grid-template-columns: 2fr 3fr;
}

.mission-values {
    padding: 60px 0;
    background-color: var(--light-background);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-top: 0;
}

.team {
    padding: 60px 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--light-background);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--dark-color);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Specific Post Styles */
.timeline {
    margin: 30px 0;
}

.timeline-item {
    display: flex;
    margin-bottom: 25px;
}

.timeline-date {
    flex-shrink: 0;
    width: 80px;
    padding-right: 20px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.timeline-content {
    flex-grow: 1;
    padding-left: 20px;
    padding-bottom: 20px;
    border-left: 2px solid var(--light-accent);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: -7px;
    top: 8px;
}

.brands-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.brand-card {
    background-color: var(--light-background);
    padding: 20px;
    border-radius: var(--border-radius);
}

.brand-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.process-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.process-steps li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
    counter-increment: step-counter;
}

.process-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-steps h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.tourism-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.tourism-item {
    background-color: var(--light-background);
    padding: 20px;
    border-radius: var(--border-radius);
}

.tourism-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.innovations-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.innovation-card {
    background-color: var(--light-background);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.innovation-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.nutritional-note {
    background-color: var(--light-background);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.nutritional-note h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.cheese-characteristics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.characteristic {
    padding: 20px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
}

.characteristic h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.characteristic p {
    margin-bottom: 0;
}

.preparation-methods, 
.accompaniments {
    margin: 30px 0;
}

.method, 
.accompaniment {
    margin-bottom: 30px;
}

.method h3, 
.accompaniment h3 {
    margin-bottom: 15px;
}

.method img {
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.hosting-guide {
    margin: 30px 0;
}

.step {
    margin-bottom: 25px;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cultural-significance {
    margin: 30px 0;
}

.aspect {
    margin-bottom: 25px;
}

.aspect h3 {
    margin-bottom: 10px;
}

.regional-variations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.variation {
    background-color: var(--light-background);
    padding: 20px;
    border-radius: var(--border-radius);
}

.variation h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.bread-regions {
    margin: 30px 0;
}

.bread-region {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.bread-region:last-child {
    border-bottom: none;
}

.bread-region h3 {
    margin-bottom: 15px;
}

.bread-region img {
    float: right;
    width: 200px;
    margin: 0 0 15px 20px;
    border-radius: var(--border-radius);
}

.regional-specialty {
    margin-top: 15px;
    padding: 10px 15px;
    background-color: var(--light-accent);
    border-radius: var(--border-radius);
    display: inline-block;
}

.zopf-tradition {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    align-items: center;
}

.zopf-image {
    flex-basis: 40%;
}

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

.zopf-content {
    flex-basis: 60%;
}

.bread-making-elements {
    margin: 30px 0;
}

.element {
    margin-bottom: 25px;
}

.element h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.ceremonial-breads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.ceremonial-bread {
    text-align: center;
}

.ceremonial-bread img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.ceremonial-bread h3 {
    margin-bottom: 10px;
}

.revival-aspects {
    margin: 30px 0;
}

.revival-aspect {
    margin-bottom: 25px;
}

.revival-aspect h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.heritage-preservation {
    margin: 30px 0;
}

.preservation-effort {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.preservation-effort h3 {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .zopf-tradition {
        flex-direction: column;
    }

    .zopf-image {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }

    .header-container {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 15px;
    }

    .nav-links li {
        margin: 0 10px;
    }

    .hero {
        padding: 80px 20px;
    }

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

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

    .timeline-item {
        flex-direction: column;
    }

    .timeline-date {
        width: auto;
        padding-right: 0;
        padding-bottom: 10px;
    }

    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .post-author-bio .author-img {
        margin: 0 auto 20px;
    }

    .author-social {
        justify-content: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

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

@media (max-width: 480px) {
    :root {
        --section-spacing: 40px;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: var(--border-radius);
    }

    .post-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        margin-bottom: 10px;
        width: 100%;
    }

    .comment {
        flex-direction: column;
    }

    .comment-avatar {
        margin-bottom: 15px;
    }

    .comment-reply {
        margin-left: 20px;
    }

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

/* Font Size Increase Styles */
body.increased-font {
    font-size: 18px;
}

body.increased-font h1 {
    font-size: 2.8rem;
}

body.increased-font h2 {
    font-size: 2.2rem;
}

body.increased-font h3 {
    font-size: 1.7rem;
}

body.increased-font .post-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

body.increased-font .intro-paragraph {
    font-size: 1.3rem;
}
