* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #2D5016;
    --red: #C8102E;
    --cream: #FAF3E0;
    --dark: #2C2C2C;
    --gray: #707070;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green);
}

.logo i {
    color: var(--red);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--red);
}

.book-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: var(--green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--green);
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&h=1080&fit=crop') center/cover;
    z-index: -1;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
}

.hero-label {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-hero {
    padding: 16px 36px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero:hover {
    background: var(--green);
    transform: translateY(-2px);
}

.btn-hero-outline {
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--green);
}

/* About */
.about {
    padding: 6rem 0;
    background: var(--cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img-1 {
    width: 400px;
    height: 500px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.about-img-2 {
    width: 300px;
    height: 400px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    color: var(--red);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--green);
}

.desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--red);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu */
.menu {
    padding: 6rem 0;
}

.menu-header {
    text-align: center;
    margin-bottom: 3rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 28px;
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn.active,
.category-btn:hover {
    background: var(--green);
    color: var(--white);
}

.menu-section {
    display: none;
}

.menu-section.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.dish-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish-content {
    padding: 1.5rem;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dish-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--green);
}

.price {
    color: var(--red);
    font-size: 22px;
    font-weight: 700;
}

.dish-content p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Chef */
.chef {
    padding: 6rem 0;
    background: var(--cream);
}

.chef-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.chef-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.chef-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-top: 2rem;
    color: var(--green);
    font-size: 18px;
}

/* Contact */
.contact {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    display: flex;
    gap: 1rem;
}

.info-box i {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 18px;
    margin-bottom: 0.5rem;
    color: var(--green);
}

.info-box p {
    color: var(--gray);
    font-size: 15px;
}

.contact-form-box {
    background: var(--cream);
    padding: 2.5rem;
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: var(--green);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border: 2px solid #ddd;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

.submit-btn {
    padding: 14px;
    background: var(--red);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--green);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--red);
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--red);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--red);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Modal */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: none;
}

.overlay.active {
    display: block;
}

.booking-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 2001;
    display: none;
}

.booking-modal.active {
    display: block;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--gray);
}

.close-btn:hover {
    color: var(--red);
}

.booking-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 1.5rem;
    color: var(--green);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 14px;
    border: 2px solid #ddd;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-wrapper,
    .chef-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 500px;
    }

    .about-img-1 {
        width: 350px;
        height: 450px;
    }

    .about-img-2 {
        width: 250px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .book-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-heading {
        font-size: 48px;
    }

    .title {
        font-size: 36px;
    }

    .dish-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--red);
    color: var(--white);
}