:root {
    --primary: #c3924e;
    --dark: #121212;
    --white: #ffffff;
}

* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #fdfdfd; scroll-behavior: smooth; }

/* Navbar */
#navbar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%; background: rgba(0,0,0,0.9);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}
.logo { color: var(--white); font-weight: 700; font-size: 1.5rem; letter-spacing: 2px; }
.logo span { color: var(--primary); }
.nav-links { display: flex; list-style: none; }
.nav-links li a { color: white; text-decoration: none; margin-left: 30px; font-size: 0.9rem; transition: 0.3s; }
.nav-links li a:hover { color: var(--primary); }

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero.jpg');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4.5rem; margin-bottom: 10px; }
.btn-main { padding: 12px 30px; background: var(--primary); color: white; text-decoration: none; border-radius: 5px; margin-top: 20px; display: inline-block; transition: 0.3s; }
.btn-main:hover { transform: scale(1.1); }

/* Sections */
.section { padding: 80px 10%; text-align: center; }
.grey-bg { background: #f4f4f4; }
.title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 40px; position: relative; }
.title::after { content: ''; width: 60px; height: 3px; background: var(--primary); position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); }

/* Menu & Gallery */
.gallery-container, .menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-container img, .menu-item { width: 100%; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: 0.3s; cursor: pointer; }
.menu-item:hover { transform: scale(1.03); }

/* Feedback Form */
.feedback-card { max-width: 500px; margin: 0 auto; background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
input, textarea { width: 100%; padding: 12px; margin: 10px 0; border: 1px solid #ddd; border-radius: 5px; }
.stars { margin: 15px 0; color: #ccc; cursor: pointer; font-size: 1.5rem; }
.stars .active { color: #f1c40f; }
.btn-wa { width: 100%; padding: 12px; background: #25D366; color: white; border: none; border-radius: 5px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.btn-wa:hover { background: #128C7E; }

/* Footer */
footer { background: var(--dark); color: white; padding: 60px 10% 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; text-align: center; }
.social-icons i { font-size: 1.8rem; margin: 0 10px; color: var(--primary); }
.cp { margin-top: 50px; opacity: 0.5; font-size: 0.8rem; }