/* Base Styles and Variables */
:root {
    --primary-color: #e67e22;
    --primary-dark: #d35400;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --accent-color: #3498db;
    --accent-dark: #2980b9;
    --text-color: #333;
    --text-light: #666;
    --text-white: #fff;
    --background-color: #fff;
    --background-alt: #f9f9f9;
    --border-color: #eaeaea;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --container-width: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;600;700&display=swap');

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

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

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

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

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5, h6 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.6rem;
}

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

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

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

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

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-tertiary:hover {
    background-color: var(--background-alt);
    color: var(--text-color);
}

/* Header and Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 6rem;
    width: auto;
}

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

.main-nav li {
    margin-left: 3rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 0;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    position: relative;
    margin-top: 8rem;
    padding: 6rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.hero .slogan {
    font-size: 2.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Page Banner */
.page-banner {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    background-image: url('images/6.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    position: relative;
    margin-top: 8rem;
    padding: 4rem 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 4.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-banner .slogan {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 0;
    font-style: italic;
}

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

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

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

.post-card {
    background-color: var(--background-color);
    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.12);
}

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

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--text-light);
}

.post-date, .post-category {
    margin-right: 1.5rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content h3 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    transition: var(--transition);
}

.post-card:hover .post-content h3 {
    color: var(--primary-color);
}

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

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    display: inline-block;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    transform: translateX(5px);
}

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

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background-color: var(--background-alt);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    font-size: 1.6rem;
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Footer */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 6rem;
    margin-bottom: 1.5rem;
}

.footer-links h3, 
.footer-legal h3, 
.footer-social h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a, 
.footer-legal a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover, 
.footer-legal a:hover {
    color: var(--primary-color);
}

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

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

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

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

.footer-bottom p {
    margin-bottom: 1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(50, 50, 50, 0.95);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
}

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

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

.cookie-policy a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Blog Page Styles */
.blog-posts {
    padding: 8rem 0;
}

.post-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter {
    padding: 0.8rem 1.6rem;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.5rem;
    transition: var(--transition);
}

.filter:hover, 
.filter.active {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Blog Post Styles */
.blog-post {
    margin-top: 8rem;
}

.post-header {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    color: var(--text-white);
    position: relative;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}

.post-header .container {
    position: relative;
    z-index: 1;
    padding-bottom: 4rem;
}

.post-header h1 {
    font-size: 4.2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.post-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.post-author img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.post-author span {
    font-size: 1.6rem;
    font-weight: 600;
}

.post-content {
    padding: 6rem 0;
}

.post-intro {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    font-weight: 300;
}

.post-intro p {
    margin-bottom: 2rem;
}

.post-section {
    margin-bottom: 5rem;
}

.post-section h2 {
    margin-bottom: 2.5rem;
}

.post-section h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* Recipe Card Styles */
.recipe-card {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
}

.recipe-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.recipe-info {
    display: flex;
    align-items: center;
}

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

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

.recipe-ingredients h3, 
.recipe-instructions h3, 
.recipe-tips h3 {
    margin-bottom: 1.5rem;
}

.recipe-ingredients h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

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

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

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

.recipe-tips ul {
    list-style-type: none;
    padding-left: 0;
}

.recipe-tips li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.recipe-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Post Tags and Share */
.post-tags {
    margin: 4rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    margin-right: 1rem;
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    margin: 0.5rem;
    font-size: 1.4rem;
    transition: var(--transition);
}

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

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

.post-share span {
    margin-right: 1.5rem;
    font-weight: 600;
}

.post-share a {
    margin-right: 1.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.post-share a:hover {
    color: var(--primary-color);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.post-navigation-prev, 
.post-navigation-next {
    flex: 1;
}

.post-navigation-next {
    text-align: right;
}

.post-navigation a {
    display: block;
    color: var(--text-color);
}

.post-navigation span {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.post-navigation h4 {
    margin-bottom: 0;
    transition: var(--transition);
}

.post-navigation a:hover h4 {
    color: var(--primary-color);
}

/* Related Posts */
.related-posts {
    padding: 6rem 0;
    background-color: var(--background-alt);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 4rem;
}

/* About Page Styles */
.about-story {
    padding: 8rem 0;
}

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

.about-content h2 {
    margin-bottom: 2.5rem;
}

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

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

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

.mission-card:hover {
    transform: translateY(-10px);
}

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

.mission-card h3 {
    margin-bottom: 1.5rem;
}

.our-mission {
    padding: 8rem 0;
    background-color: var(--background-alt);
    text-align: center;
}

.our-mission h2 {
    margin-bottom: 4rem;
}

.team-section {
    padding: 8rem 0;
    text-align: center;
}

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

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

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

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

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

.testimonials {
    padding: 8rem 0;
    background-color: var(--background-alt);
}

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

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

.testimonial {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    position: relative;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.testimonial-content::before,
.testimonial-content::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content::before {
    left: 0;
    top: -2rem;
}

.testimonial-content::after {
    right: 0;
    bottom: -4rem;
}

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

.testimonial-author img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2rem;
}

.testimonial-author h4 {
    margin-bottom: 0.5rem;
}

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

/* Contact Page Styles */
.contact-section {
    padding: 8rem 0;
}

.contact-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 5rem;
}

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

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

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

.info-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

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

.contact-form {
    background-color: var(--background-alt);
    padding: 3rem;
    border-radius: var(--border-radius);
}

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    padding: 4rem 0 8rem;
}

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
}

.modal-body {
    padding: 4rem;
    text-align: center;
}

.check-icon {
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.modal-body h2 {
    margin-bottom: 1.5rem;
}

.modal-body p {
    margin-bottom: 3rem;
}

/* Specialty Elements for Blog Posts */
.technique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.technique-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border-top: 3px solid var(--primary-color);
    transition: var(--transition);
}

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

.technique-card h3 {
    margin-bottom: 1.5rem;
}

.technique-card p:last-child {
    margin-bottom: 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.ingredient-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ingredient-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ingredient-card p {
    margin-bottom: 0;
}

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

.benefit-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.benefit-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
}

.restaurant-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.restaurant-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.restaurant-card h3 {
    margin-bottom: 0.5rem;
}

.restaurant-location {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.restaurant-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(231, 126, 34, 0.1);
    border-left: 3px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.tip-card {
    background-color: var(--background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.seasonal-recipe {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px dashed var(--border-color);
}

.seasonal-recipe:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.seasonal-recipe h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.component {
    background-color: rgba(231, 126, 34, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.component h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.component p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 60%;
    }
    
    .post-grid,
    .team-grid,
    .testimonial-slider {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .restaurant-reviews {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    
    .about-story .container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    .site-header {
        padding: 1.5rem 0;
    }
    
    .logo {
        height: 5rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 4.2rem;
    }
    
    .hero .slogan {
        font-size: 2rem;
    }
    
    .post-header h1 {
        font-size: 3.6rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 54%;
    }
    
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3.6rem;
    }
    
    .hero .slogan {
        font-size: 1.8rem;
    }
    
    .page-banner h1 {
        font-size: 3.6rem;
    }
    
    .post-header h1 {
        font-size: 3.2rem;
    }
    
    .recipe-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-navigation-next {
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .modal-body {
        padding: 3rem 2rem;
    }
}
