@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f14;
  color: #ffffff;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #15151d;
}

nav h1 {
  color: #ff4d6d;
  letter-spacing: 2px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  transition: 0.3s;
}

nav a:hover {
  color: #ff4d6d;
}

/* HERO */
.hero {
  height: 80vh;
  background: linear-gradient(120deg, #ff4d6d, #6c63ff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
}

/* SECTIONS */
.section {
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
}

.section h2 {
  color: #ff4d6d;
  margin-bottom: 20px;
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.menu-item {
  background: #1c1c26;
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.menu-item:hover {
  transform: scale(1.05);
}

.menu-item h3 {
  color: #6c63ff;
}

.price {
  margin-top: 10px;
  color: #ff4d6d;
  font-weight: bold;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #15151d;
  margin-top: 40px;
  font-size: 0.9rem;
}
