:root {
  --primary: #f5b731;
  --bg-dark: #0c0c0c;
  --bg-light: #1a1a1a;
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --border: rgba(255,255,255,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* Navbar */
.navbar {
  background: var(--bg-light);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1a1a" width="1200" height="800"/><circle cx="200" cy="200" r="3" fill="%23f5b731" opacity="0.3"/><circle cx="800" cy="400" r="2" fill="%23f5b731" opacity="0.2"/><circle cx="400" cy="600" r="3" fill="%23f5b731" opacity="0.3"/></svg>');
  background-size: cover;
  background-position: center;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: var(--primary);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,183,49,0.4);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

/* Menu */
.menu {
  background: var(--bg-light);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-card {
  background: var(--bg-dark);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.menu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.menu-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.menu-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* About */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--text-muted);
}

/* Contact */
.contact {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.info-item p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reservation-form input,
.reservation-form select {
  padding: 1rem;
  background: var(--bg-dark);
  border: 2px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
}

.reservation-form input:focus,
.reservation-form select:focus {
  outline: none;
  border-color: var(--primary);
}

/* Footer */
footer {
  background: var(--bg-dark);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-back-footer {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--bg-light);
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.btn-back-footer:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
}
