/* RESET & CORE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --coffee-brown: #4b3832;
    --cream: #fff4e0;
    --gold: #c0a080;
    --white: #ffffff;
    --text: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 30px; text-align: center; color: var(--coffee-brown); }

/* NAVBAR */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 10%; background: var(--coffee-brown);
    position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); font-weight: bold; }
.logo span { color: var(--gold); }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 400; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }

/* HERO */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1500&q=80');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px; }

.btn {
    display: inline-block; padding: 12px 35px; background: var(--gold);
    color: var(--white); text-decoration: none; border-radius: 50px;
    font-weight: 600; transition: 0.3s; border: none; cursor: pointer;
}
.btn:hover { background: #8d755b; transform: translateY(-2px); }

/* MENU */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-item { background: var(--white); padding: 30px; border-radius: 15px; text-align: left; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.price { color: var(--gold); font-weight: bold; font-size: 1.2rem; }

/* ABOUT US */
.about-section { background: var(--white); padding: 100px 0; }
.about-flex { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-image { flex: 1; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--gold); }

.stats { display: flex; gap: 30px; margin-top: 40px; }
.stat-item strong { display: block; font-size: 2rem; color: var(--gold); }

/* CONTACT */
.contact-section { background: var(--cream); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; }

.contact-form { background: var(--white); padding: 40px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit;
}

.info-card { margin-bottom: 30px; }
.info-card h4 { color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }

/* FOOTER */
.footer { background: #2c1e1a; color: var(--white); padding: 40px; text-align: center; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-flex, .contact-grid { flex-direction: column; }
    .hero h1 { font-size: 3rem; }
}