/* Base Styles */
:root {
    --primary-color: #d73814;
    --secondary-color: #2a2a2a;
    --accent-color: #f8c43a;
    --light-color: #ffffff;
    --dark-color: #1a1a1a;
    --gray-color: #f5f5f5;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

.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: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Buttons */
.btn, .btn-secondary, .btn-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}

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

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

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

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

.btn-text {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 0;
    position: relative;
}

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

.btn-text:hover:after {
    width: 100%;
}

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

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    flex: 0 0 auto;
}

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

nav {
    flex: 1 1 auto;
    text-align: center;
}

nav ul {
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.header-right {
    display: flex;
    align-items: center;
}

.date-time {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-align: right;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    margin-top: 92px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

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

.floating-ingredients {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-item {
    position: absolute;
    opacity: 0.7;
    transform: translate(var(--x-pos), var(--y-pos));
}

.basil {
    width: 80px;
    top: 30%;
    left: 25%;
}

.flour {
    width: 120px;
    top: 45%;
    right: 20%;
}

.cheese {
    width: 100px;
    bottom: 30%;
    left: 40%;
}

@keyframes float {
    0% {
        transform: translate(var(--x-pos), var(--y-pos)) rotate(0);
    }
    50% {
        transform: translate(calc(var(--x-pos) + 20px), calc(var(--y-pos) - 20px)) rotate(5deg);
    }
    100% {
        transform: translate(calc(var(--x-pos) - 20px), calc(var(--y-pos) + 20px)) rotate(-5deg);
    }
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.about-preview .container {
    display: flex;
    flex-direction: column;
}

.about-preview .text-content {
    flex: 1;
    padding-right: 3rem;
}

.about-preview .image-content {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-preview .image-content img {
    transition: transform 0.6s ease;
}

.about-preview .image-content:hover img {
    transform: scale(1.05);
}

.parallax-img {
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .about-preview .container {
        flex-direction: row;
        align-items: center;
    }
}

/* Featured Dishes Section */
.featured-dishes {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

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

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

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

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

.dish-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.dish-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Blog Preview Section */
.blog-preview {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

.blog-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

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

.blog-card h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.blog-card p {
    margin: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
    flex-grow: 1;
}

.blog-card .btn-text {
    margin: 0 1.5rem 1.5rem;
}

/* Comparison Table Section */
.comparison-table {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

th, td {
    padding: 1.25rem 1.5rem;
    text-align: left;
}

th {
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:not(thead tr):hover {
    background-color: rgba(215, 56, 20, 0.1);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/34.jpg') no-repeat center center/cover;
    color: var(--light-color);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

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

.footer-logo img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h4,
.footer-policies h4,
.footer-contact h4 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h4:after,
.footer-policies h4:after,
.footer-contact h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-policies ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a,
.footer-policies ul li a,
.footer-contact a {
    color: var(--light-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-policies ul li a:hover,
.footer-contact a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact address p {
    margin-bottom: 0.5rem;
}

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

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    margin: 0 0.5rem;
    transition: var(--transition);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    z-index: 1000;
    padding: 1.5rem 0;
    display: none;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.btn-cookie {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}

.accept {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.customize {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

.decline {
    background-color: transparent;
    color: var(--light-color);
    opacity: 0.8;
}

.cookie-link {
    font-size: 0.8rem;
    color: var(--light-color);
    text-decoration: underline;
    opacity: 0.8;
}

.cookie-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/35.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 92px;
}

.blog-header h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

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

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

.blog-text {
    padding: 1.5rem;
}

.blog-card .blog-img {
    overflow: hidden;
    height: 250px;
    border-radius: 8px 8px 0 0;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.blog-meta .date, .blog-meta .author {
    display: flex;
    align-items: center;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.newsletter {
    padding: 5rem 0;
    background-color: var(--gray-color);
}

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

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

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

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

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

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

/* Menu Page Styles */
.menu-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/36.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 92px;
}

.menu-hero h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.menu-nav {
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 92px;
    z-index: 100;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}

.menu-tabs li {
    margin: 0 1.5rem;
}

.menu-tabs a {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

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

.menu-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.menu-section:last-child {
    border-bottom: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2.5rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

.menu-img {
    flex: 0 0 150px;
}

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

.menu-details {
    flex-grow: 1;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

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

.menu-header h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.menu-desc {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.dietary-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vegetarian, .vegan {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.vegetarian {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.vegan {
    background-color: #e0f2f1;
    color: #00695c;
}

.beverages {
    flex-direction: column;
}

.beverages .menu-img {
    flex: none;
    height: 200px;
}

.beverages .menu-details {
    padding: 1.5rem;
}

.menu-note {
    padding: 4rem 0;
    background-color: var(--gray-color);
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.note-content p:last-child {
    margin-bottom: 0;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/37.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 92px;
}

.about-hero h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.about-story {
    padding: 6rem 0;
}

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

.story-text {
    flex: 1;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.philosophy-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.team {
    padding: 6rem 0;
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

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

.team-member p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

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

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

.testimonials {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
}

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

.testimonial:first-child {
    display: block;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.testimonial-author p {
    margin-bottom: 0.25rem;
}

.testimonial-author p:last-child {
    font-size: 0.9rem;
    color: #777;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.testimonial-controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.awards {
    padding: 6rem 0;
}

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

.award {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.award-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.award-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.award-details p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/38.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    margin-top: 92px;
}

.contact-hero h1 {
    color: var(--light-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

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

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

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p, .contact-card address, .contact-card ul {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.hours-list li:last-child {
    margin-bottom: 0;
}

.contact-form-section {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-form-container h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

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

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

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

.map-placeholder {
    position: relative;
    height: 100%;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    opacity: 0;
    transition: var(--transition);
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-overlay p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reservation-info {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.reservation-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.modal-content {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.thank-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

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

/* Blog Post Styles */
.blog-post {
    padding: 6rem 0;
    margin-top: 92px;
}

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

.post-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #777;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.post-featured-image {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.post-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.post-content ul, .post-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-image-container {
    margin: 3rem 0;
    text-align: center;
}

.post-image {
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

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

blockquote:before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

blockquote p {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

blockquote cite {
    font-style: normal;
    display: block;
    text-align: right;
    font-weight: 600;
    font-size: 1rem;
}

.post-footer {
    max-width: 800px;
    margin: 4rem auto 0;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

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

.share-links span {
    font-weight: 500;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-color);
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.post-navigation {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.nav-links {
    display: flex;
    justify-content: space-between;
}

.back-to-blog, .next-post {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.related-posts {
    padding: 6rem 0;
    background-color: var(--gray-color);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content, .philosophy-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .form-map-container {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.5rem 0.5rem;
    }
    
    .hero {
        height: 70vh;
        margin-top: 164px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .blog-header, .menu-hero, .about-hero, .contact-hero {
        margin-top: 164px;
    }
    
    .menu-tabs {
        flex-wrap: wrap;
    }
    
    .menu-tabs li {
        margin: 0.5rem;
    }
    
    .menu-item {
        flex-direction: column;
    }
    
    .menu-img {
        width: 100%;
        height: 200px;
    }
    
    .menu-details {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo img {
        margin: 0 auto 1rem;
    }
    
    .footer-links h4:after,
    .footer-policies h4:after,
    .footer-contact h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .post-header h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .blog-grid, .dishes-grid, .blog-cards, .team-grid, .awards-grid, .related-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .newsletter-form .btn {
        border-radius: 4px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    blockquote p {
        font-size: 1.1rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}
