
:root { --bg: #0f1115; --text: #e0e0e0; --primary: #ffffff; --accent: #c09f5a; --card: #1a1c23; }
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
h1,h2,h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.demo-banner { background: #d32f2f; color: #fff; text-align: center; padding: 0.5rem; font-weight: bold; font-size: 0.9rem; position: sticky; top:0; z-index: 1001; }
.navbar { position: sticky; top: 35px; background: rgba(15, 17, 21, 0.95); backdrop-filter: blur(10px); z-index: 1000; padding: 1rem 0; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.nav-links a { margin: 0 1rem; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }
.btn-reserver { background: var(--accent); color: #111; padding: 0.6rem 1.2rem; border-radius: 4px; font-weight: bold; }
.btn-reserver:hover { background: var(--accent); }
.hero { height: 80vh; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1600&q=80') center/cover; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; }
.hero-content .subtitle { font-size: 1.2rem; margin-bottom: 1.5rem; }
.rating { display: inline-block; background: rgba(0,0,0,0.4); padding: 0.5rem 1rem; border-radius: 20px; font-weight: bold; margin-bottom: 2rem; }
.btn-primary { background: var(--accent); color: #111; padding: 1rem 2rem; font-weight: bold; font-size: 1.1rem; border-radius: 4px; }
.menu-section { padding: 5rem 0; background: var(--bg); }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: #666; margin-bottom: 3rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.menu-item { background: var(--card); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.5); transition: transform 0.3s; }
.menu-item:hover { transform: translateY(-5px); }
.menu-img-container { height: 200px; overflow: hidden; }
.menu-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-item:hover .menu-img { transform: scale(1.05); }
.menu-details { padding: 1.5rem; }
.menu-header { display: flex; justify-content: space-between; border-bottom: 1px dashed #ddd; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.price { font-weight: bold; color: var(--accent); font-size: 1.2rem; }
.footer { background: #08090b; border-top: 1px solid #1a1c23; color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; text-align: center; }
.footer h3 { color: var(--accent); margin-bottom: 1rem; }
.footer p { color: #aaa; margin-bottom: 0.5rem; }
