:root {
  --purple: #6B4E71;
  --deep-purple: #4B2E5A;
  --green: #1E3A2F;
  --black: #0F0F0F;
  --cream: #E0E0E0;
  --glow: rgba(107, 78, 113, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: linear-gradient(to bottom, var(--green), var(--deep-purple), var(--black));
  color: var(--cream);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.navbar {
  background: rgba(15,15,15,0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(107,78,113,0.2);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo h1 { font-size: 2rem; color: var(--purple); letter-spacing: -1px; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--cream); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--purple); }

.cta-button {
  background: var(--purple);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.cta-button:hover { background: #8B5CF6; transform: translateY(-2px); }

.hero {
  height: 100vh;
  background: linear-gradient(rgba(15,15,15,0.7), rgba(75,46,90,0.6)), url('https://images.unsplash.com/photo-1555939594-58d7cb561ad1?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero h2 { font-size: 5rem; font-weight: 900; letter-spacing: -3px; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.tagline { font-size: 1.8rem; margin: 1.5rem 0; }
.launch { font-size: 1.4rem; opacity: 0.9; margin-bottom: 2.5rem; }

.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.primary-btn, .secondary-btn {
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}
.primary-btn { background: var(--purple); color: white; }
.primary-btn:hover { background: #8B5CF6; transform: scale(1.05); }
.secondary-btn { border: 2px solid var(--purple); color: var(--purple); }
.secondary-btn:hover { background: var(--purple); color: white; }

.section { padding: 6rem 0; }
.about { background: rgba(15,15,15,0.4); text-align: center; }
.about h2 { font-size: 3.5rem; color: #A78BFA; margin-bottom: 1.5rem; }
.tag { font-size: 1.4rem; color: var(--purple); font-style: italic; margin-top: 2rem; }

.menu h2 { text-align: center; font-size: 3.5rem; color: #A78BFA; margin-bottom: 3rem; }
.menu-category { margin-bottom: 4rem; }
.menu-category h3 { font-size: 2.2rem; color: #86EFAC; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }

.grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.menu-card {
  background: rgba(15,15,15,0.6);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(107,78,113,0.3);
}
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px var(--glow); }

.menu-card img { width: 100%; height: 220px; object-fit: cover; }
.menu-card h4 { padding: 1rem 1.2rem 0.5rem; font-size: 1.4rem; color: #C4B5FD; }
.menu-card p { padding: 0 1.2rem; color: #D1D5DB; font-size: 0.95rem; }
.price { display: block; padding: 0.8rem 1.2rem 1.2rem; color: #A78BFA; font-weight: bold; font-size: 1.3rem; }

.note { text-align: center; font-size: 1.2rem; margin-top: 2rem; opacity: 0.9; }

.emoji { font-size: 2.5rem; }

footer { background: var(--black); padding: 3rem 0; text-align: center; font-size: 0.95rem; opacity: 0.8; }

/* Mobile adjustments */
@media (max-width: 768px) {
  .nav-links { display: none; } /* Add hamburger later if needed */
  .hero h2 { font-size: 3.5rem; }
}