* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', 'Times New Roman', serif;
}

body {
  color: #2b2b2b;
  line-height: 1.6;
}

.hero {
  background: linear-gradient(135deg, #7a1f1f, #4a1010);
  color: #fdf6ec;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links a {
  color: #fdf6ec;
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.95rem;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.8rem;
  max-width: 700px;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background: #d4a017;
  color: #2b2b2b;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #e6b833;
}

.section {
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.section.alt {
  background: #f7f1e6;
  max-width: 100%;
}

.section.alt > * {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #7a1f1f;
}

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

.menu-item h3 {
  color: #4a1010;
  margin-bottom: 0.4rem;
}

.menu-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: bold;
  color: #d4a017;
}

.hours {
  border-collapse: collapse;
  width: 100%;
  max-width: 400px;
}

.hours td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #ddd;
}

.footer {
  background: #2b2b2b;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links a {
    margin: 0 0.7rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
