/* 
   Swiss Culinary Delights - Custom CSS 
   A stylesheet for an elegant Swiss culinary blog
*/

/* =================== 
   Base Styles 
===================== */

:root {
    --primary-color: #d4002a;  /* Swiss red */
    --primary-light: #f4a9b7;
    --primary-dark: #990018;
    --secondary-color: #f1f1f1; /* Light gray */
    --accent-color: #b80c2f;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --white: #ffffff;
    --off-white: #f8f8f8;
    --light-gray: #e5e5e5;
    --medium-gray: #cccccc;
    --dark-gray: #4a4a4a;
    --black: #000000;
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --border-radius: 4px;
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: 'Georgia', serif;
}

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

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

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

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

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

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

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

blockquote {
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
}

/* =================== 
   Layout 
===================== */

/* Header */
header {
    background-color: var(--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: 1rem 20px;
}

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

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav li {
    margin: 0 0 0 1.5rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 5px;
}

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

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

nav a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--off-white);
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("images/5.jpg");
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.multilingual-greeting {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Buttons */
.btn, button.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

/* Page Banner */
.page-banner {
    background-color: var(--off-white);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Featured Posts Section */
.featured-posts {
    margin-bottom: 4rem;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.post-card {
    background-color: var(--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 4px 12px rgba(0, 0, 0, 0.15);
}

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

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.post-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 2rem;
}

/* About Preview Section */
.about-preview {
    background-color: var(--off-white);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

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

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

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

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

.newsletter h2 {
    color: var(--white);
    margin-top: 0;
}

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

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

.newsletter-form button {
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--light-gray);
}

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--medium-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.footer-contact svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
}

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

.social-icons a {
    color: var(--white);
    transition: var(--transition);
}

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

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

/* =================== 
   Blog Page Styles 
===================== */

/* Blog Section */
.blog-section {
    margin-bottom: 4rem;
}

.blog-filter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    max-width: 300px;
}

.search-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 0.95rem;
}

.search-box button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background-color: var(--primary-dark);
}

.category-filter select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--text-color);
    cursor: pointer;
}

.blog-posts {
    margin-bottom: 2rem;
}

.blog-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.blog-content {
    padding: 1.5rem 2rem 1.5rem 0;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

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

.blog-content h2 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

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

.read-more {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.read-more svg {
    margin-left: 0.25rem;
    transition: var(--transition);
}

.read-more:hover svg {
    transform: translateX(3px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.blog-pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.blog-pagination a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-pagination a:hover:not(.active) {
    background-color: var(--light-gray);
}

.blog-pagination a.next {
    width: auto;
    padding: 0 1rem;
    border-radius: var(--border-radius);
}

/* Subscribe Section */
.subscribe-section {
    background-color: var(--off-white);
    padding: 4rem 0;
    margin-bottom: 4rem;
}

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

.subscribe-form {
    display: flex;
    margin-top: 2rem;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscribe-form button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-form button:hover {
    background-color: var(--primary-dark);
}

/* =================== 
   Blog Post Styles 
===================== */

/* Blog Post */
.blog-post {
    margin-bottom: 4rem;
}

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

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

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

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

.post-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-content h2 {
    margin-top: 3rem;
}

.post-image-small {
    margin: 2rem 0;
}

.post-image-small img {
    width: 100%;
    border-radius: var(--border-radius);
}

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

.post-quote {
    background-color: var(--off-white);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: var(--text-dark);
}

.post-quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 500;
}

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

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.recipe-card {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: var(--box-shadow);
}

.recipe-card h3 {
    margin-top: 0;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.recipe-info p {
    margin-bottom: 0.5rem;
}

.recipe-ingredients h4,
.recipe-instructions h4 {
    margin-top: 0;
    color: var(--text-dark);
}

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

.recipe-instructions li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    counter-increment: item;
}

.recipe-instructions li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2.5rem 0;
}

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

.post-conclusion {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
}

.post-tags span {
    font-weight: 500;
    color: var(--text-dark);
}

.post-tags a {
    display: inline-block;
    background-color: var(--light-gray);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.post-share span {
    font-weight: 500;
    color: var(--text-dark);
}

.author-bio {
    display: flex;
    gap: 1.5rem;
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
}

.author-image {
    flex-shrink: 0;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin-top: 0;
    font-size: 1rem;
    color: var(--text-light);
}

.author-info h4 {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

.related-posts {
    margin-bottom: 3rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-post {
    background-color: var(--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 4px 12px rgba(0, 0, 0, 0.15);
}

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

.related-post h4 {
    padding: 1rem;
    margin: 0;
    font-size: 1rem;
    text-align: center;
}

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

.comments-section > h3 {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comment-avatar {
    flex-shrink: 0;
}

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

.comment-content {
    flex: 1;
}

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

.comment-header h4 {
    margin: 0;
}

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

.comment-actions {
    margin-top: 0.75rem;
}

.comment-actions a {
    font-size: 0.875rem;
    font-weight: 500;
}

.comment.reply {
    margin-top: 1.5rem;
    margin-left: 2rem;
}

.comment-form {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.comment-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.newsletter-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    margin-bottom: 4rem;
}

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

.newsletter-content h3 {
    color: var(--white);
    margin-top: 0;
}

/* =================== 
   Contact Page Styles 
===================== */

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

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

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

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

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

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

.info-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.info-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

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

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

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

.map-container h3 {
    margin-bottom: 1.5rem;
}

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

.faq-section h3 {
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h4 {
    margin: 0;
}

.faq-icon {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.thank-you-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.thank-you-message.show {
    opacity: 1;
    visibility: visible;
}

.thank-you-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    max-width: 500px;
    box-shadow: var(--box-shadow);
}

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

.thank-you-content h3 {
    margin-top: 0;
}

/* =================== 
   About Page Styles 
===================== */

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

.about-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.mission, .vision {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.mission h3, .vision h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.about-image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

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

.values-section {
    margin-bottom: 3rem;
}

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

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

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

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

.testimonials {
    background-color: var(--off-white);
    padding: 4rem 0;
    margin-bottom: 4rem;
    text-align: center;
}

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

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

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

.testimonial-author {
    text-align: right;
}

.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.cta-section h2 {
    color: var(--white);
    margin-top: 0;
}

/* =================== 
   Special Styles
===================== */

.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--off-white);
}

.info-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.info-table th {
    background-color: var(--primary-color);
    color: var(--white);
}

.info-table tr:hover {
    background-color: var(--off-white);
}

.troubleshooting {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2.5rem 0;
}

.problem {
    margin-bottom: 1.5rem;
}

.problem h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

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

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

.feature h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.steps-container {
    margin: 2.5rem 0;
}

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

.step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.serving-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.suggestion {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.suggestion h4 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.suggestion ul {
    margin-bottom: 0;
}

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

.tradition {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.tradition h4 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.tradition p {
    margin-bottom: 0;
}

.timeline {
    position: relative;
    margin: 3rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--medium-gray);
    text-decoration: underline;
    margin-top: 0.5rem;
}

.cookie-content a:hover {
    color: var(--white);
}

/* =================== 
   Responsive Styles 
===================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-preview .container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image img {
        height: 300px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image {
        order: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .recipe-details {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav li {
        margin: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-gallery {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filter {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment.reply {
        margin-left: 1rem;
    }
    
    .thank-you-content {
        padding: 1.5rem;
        width: 90%;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form,
    .subscribe-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button,
    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .newsletter-form button,
    .subscribe-form button {
        margin-top: 0.75rem;
    }
}
