:root {
    --bg-cream: #FDFCFB;
    --pure-white: #FFFFFF;
    --deep-brown: #2D1B14;
    --milk-choco: #8D5B3E;
    --soft-brown: #BC9A7B;
    --glass: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body { background: var(--bg-cream); color: var(--deep-brown); overflow-x: hidden; }

/* Popup */
#demo-popup {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    background: var(--deep-brown); color: white; padding: 15px 30px;
    border-radius: 50px; z-index: 2000; display: none; font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); width: 90%; max-width: 400px; text-align: center;
}

/* Nav */
nav {
    position: fixed; top: 0; width: 100%; padding: 25px 8%;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--glass); backdrop-filter: blur(10px); z-index: 1000;
}

.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
.nav-links a { text-decoration: none; color: var(--deep-brown); margin-left: 30px; font-weight: 500; font-size: 0.9rem; }
.menu-toggle { display: none; cursor: pointer; }

/* Hero */
.hero {
    height: 100vh; background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://wallpaper.forfun.com/fetch/ce/ce748c40a3f5668bf26e4e9365ea9b05.jpeg');
    background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 5rem; color: #fff; margin-bottom: 20px; }
.hero p { font-size: 1.5rem; color: #fff; margin-bottom: 30px; }
.badge { color: #fff; text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; display: block; margin-bottom: 15px; }

/* Buttons */
.btn-main { background: var(--deep-brown); color: white; padding: 15px 40px; border-radius: 50px; border: none; cursor: pointer; transition: 0.3s; font-weight: 600; }
.btn-main:hover { transform: translateY(-3px); background: var(--milk-choco); }
.btn-main.outline { background: transparent; border: 2px solid #fff; }

/* Sections */
section { padding: 100px 8%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 3rem; }
.divider { width: 50px; height: 3px; background: var(--soft-brown); margin: 20px auto; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.menu-card { background: #fff; border-radius: 20px; overflow: hidden; transition: 0.4s; }
.menu-card:hover { transform: translateY(-10px); }
.menu-img { width: 100%; height: 300px; object-fit: cover; }
.menu-info { padding: 25px; }
.price { color: var(--milk-choco); font-weight: 700; font-size: 1.2rem; display: block; margin-bottom: 15px; }

.about { display: flex; align-items: center; gap: 60px; background: #F8F5F2; }
.about-img-wrapper, .about-text { flex: 1; }
.about-img { width: 100%; border-radius: 20px; box-shadow: 15px 15px 0 var(--soft-brown); }

.location { background: var(--deep-brown); color: white; text-align: center; }
footer { text-align: center; padding: 60px 8%; background: #1A110E; color: #999; }
.socials { margin: 20px 0; font-size: 1.5rem; color: #fff; }
.socials i { margin: 0 10px; cursor: pointer; }

/* MOBILE RESPONSIVE QUERIES */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero p { font-size: 1.2rem; }
    .about { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    nav { padding: 20px 5%; }
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 0; right: -100%; height: 100vh; width: 80%;
        background: var(--pure-white); display: flex; flex-direction: column;
        justify-content: center; align-items: center; transition: 0.4s;
    }
    .nav-links.active { right: 0; box-shadow: -10px 0 50px rgba(0,0,0,0.1); }
    .nav-links a { margin: 20px 0; font-size: 1.2rem; }
}