/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(139, 69, 19, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(210, 105, 30, 0.02) 0%, transparent 50%);
    background-size: 400px 400px;
}

h1, h2, h3 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 2rem; }
h3 { font-size: 1.8rem; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #8B4513;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8B4513;
}


/* Language Switcher */
.language-switcher {
    display: flex;
    margin-right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    color: #333;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: #8B4513;
    color: white;
}

.lang-btn:hover:not(.active) {
    background: rgba(139, 69, 19, 0.1);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 2rem 80px;
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.5;
    font-weight: 500;
    text-align: left;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.services::before {
    content: "❦";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: rgba(139, 69, 19, 0.3);
    opacity: 0.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #6c757d;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
}

/* Chefs Section */
.chefs {
    padding: 80px 0;
    background: #f8f9fa;
}

.chefs-content {
    margin-top: 3rem;
}

.chef-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.chef-card.main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.chef-card.main:hover {
    transform: translateY(-5px);
}

.chef-card.main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center top;
}

.chef-info {
    padding: 2rem;
}

.chef-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.chef-info p {
    color: #6c757d;
    line-height: 1.6;
}

.chef-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-img:first-child {
    object-position: center top;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.section-decoration {
    position: absolute;
    top: 50px;
    right: 50px;
    opacity: 0.1;
    z-index: 1;
}

.section-decoration.left {
    left: 50px;
    right: auto;
}

.decoration-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Menu Section */
.menu {
    padding: 80px 0;
    background: white;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.menu-category h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    border-bottom: 2px solid #8B4513;
    padding-bottom: 0.5rem;
}

.menu-category ul {
    list-style: none;
}

.menu-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.booking .container {
    max-width: 800px;
}

/* Gallery */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-showcase {
    margin-top: 3rem;
}

.gallery-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-featured img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.gallery-featured img:hover {
    transform: scale(1.02);
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item-large {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item-large:hover {
    transform: translateY(-3px);
}

.gallery-item-large img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-signatures {
    text-align: center;
    margin-top: 2rem;
}

.gallery-signatures h3 {
    margin-bottom: 2rem;
    color: #8B4513;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.signature-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.signature-grid img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-card cite {
    font-weight: 600;
    color: #8B4513;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #2c3e50;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #D2691E;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

/* Footer */
.footer {
    background: #1a252f;
    color: #ccc;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu would need JS */
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 40px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 2rem; }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .chefs-grid,
    .testimonials-grid,
    .menu-categories {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

