:root {
    --primary: #5c3d2e;    /* Earthy Brown */
    --accent: #bc6c25;     /* Terracotta */
    --soft: #fefae0;       /* Creamy Background */
    --nature: #606c38;     /* Sage Green */
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--soft);
    color: var(--primary);
    line-height: 1.6;
    margin: 0;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; }
.logo span { color: var(--accent); }
.nav-links { display: flex; list-style: none; gap: 2rem; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--primary); font-weight: 600; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }

/* --- Hero (Home Page) --- */
.hero {
    height: 80vh; 
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 0.5rem; }
.hero-content p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 1.5rem; }

.btn {
    background: var(--accent);
    color: white;
    padding: 0.8rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
}

/* --- Menu Header (Menu Page) --- */
.menu-header {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('images.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.menu-header h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; }

.menu-nav { margin-top: 20px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.menu-nav a {
    text-decoration: none; color: var(--white); border: 1px solid var(--white);
    padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
    background: rgba(255,255,255,0.1); transition: 0.3s;
}
.menu-nav a:hover { background: var(--white); color: var(--nature); }

/* --- Menu Card & Items --- */
.menu-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: -80px auto 4rem; 
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.menu-category { margin-bottom: 3.5rem; scroll-margin-top: 120px; }
.menu-category h3 {
    font-family: 'Playfair Display', serif; font-size: 1.8rem;
    color: var(--accent); border-bottom: 1px solid #ddd;
    padding-bottom: 10px; margin-bottom: 1.5rem; text-align: center;
}

.menu-item { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; font-size: 1.1rem; }
.menu-item span:first-child { font-weight: 600; display: flex; flex-grow: 1; }
.menu-item span:first-child::after {
    content: ""; flex-grow: 1; margin: 0 10px; border-bottom: 2px dotted #ccc;
}
.menu-item span:last-child { font-weight: 700; color: var(--nature); font-family: 'Playfair Display', serif; }

/* --- About & Contact --- */
.container { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
h2 { font-family: 'Playfair Display', serif; font-size: 2.8rem; text-align: center; margin-bottom: 2rem; }
.about-content { text-align: center; max-width: 800px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.contact-box { background: var(--white); padding: 2rem; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.map-container { padding: 0; overflow: hidden; min-height: 300px; }

/* --- Footer --- */
footer { background: var(--primary); color: var(--soft); text-align: center; padding: 2rem; }

/* --- Mobile Fixes --- */
@media (max-width: 768px) {
    /* Make navbar stack logo on top of links */
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    /* Keep links visible and centered */
    .nav-links {
        display: flex; 
        gap: 1rem;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .hero-content h1, .menu-header h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    
    .menu-card { 
        padding: 1.5rem; 
        margin-top: -40px; 
        width: 90%; 
    }
    
    /* Make menu items fit on narrow screens */
    .menu-item {
        font-size: 0.95rem;
    }
}