/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: #111;
}

body {
  background: #fff;
  padding: 2rem 1rem;
}

/* === HEADER === */
.menu-header {
  text-align: center;
  margin-bottom: 2rem;
}
.menu-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== HEADER ===== */
.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* title left, nav right */
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

/* Title */
.menu-header h1 {
  font-size: 2rem;
  font-weight: 600;
}

/* Nav container */
.menu-header nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Nav list */
.menu-header nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Nav link */
.menu-header nav a {
  text-decoration: none;
  font-weight: 500;
  color: #111827;
  transition: color 0.2s ease;
}

.menu-header nav a:hover {
  color: #6f63e6;
}

/* === MENU GRID === */
.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

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

/* === CARD STYLE === */
.menu-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.menu-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-info {
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.menu-price {
  color: #8a7cf6;
  font-weight: 600;
  font-size: 1.2rem;
}

.menu-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* === FOOTER === */
.menu-footer {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .menu-header h1 {
    font-size: 2.4rem;
  }
  .menu-info h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .menu-header h1 {
    font-size: 2rem;
  }
}
