/* --- CSS Reset & Variables --- */
:root {
    --primary: #4A3525;      /* Deep bread crust brown */
    --secondary: #D4A373;    /* Golden flour / pastry tone */
    --bg-light: #FAEDCD;     /* Warm cream background */
    --bg-white: #FFFFFF;
    --text-dark: #2F2218;
    --text-muted: #6B5B4E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-light);
}

.navbar nav a {
    color: var(--bg-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--secondary);
}

/* --- Hero Section --- */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1549931319-a545dcf3bc73?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-weight: 300;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    background-color: #e6b785;
    transform: translateY(-2px);
}

/* --- About Section --- */
.about-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

.subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-muted);
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    height: 450px;
    width: 100%;
}

/* --- Menu Section --- */
.menu-section {
    padding: 7rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.menu-item img {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}

.menu-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.menu-item h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.3rem;
}

.menu-item .price {
    font-weight: 600;
    color: var(--secondary);
}

.menu-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Contact Section --- */
.contact-section {
    padding: 7rem 0;
    background-color: #FFFDF9;
    border-top: 1px solid #EFEAE4;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 1.5rem;
}

.info-block h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.info-block p {
    color: var(--text-muted);
}

.contact-image img {
    border-radius: 8px;
    height: 400px;
    width: 100%;
}

/* --- Footer --- */
footer {
    background-color: var(--primary);
    color: var(--bg-light);
    text-align: center;
    padding: 3rem 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* --- Responsive Breakpoint --- */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .navbar {
        padding: 1.5rem 2rem;
    }
    .navbar nav {
        display: none; /* Keep it clean for demo purposes */
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}