body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #8B0000, #ff4d4d);
  color: white;
  padding: 15px 30px;
  position: sticky;
  top: 0;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 60px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.logo-container img:hover {
  transform: scale(1.1) rotate(5deg);
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

nav a:hover {
  color: yellow;
}

/* HERO */
.hero {
  height: 300px;
  background: url('images/bg.jpg') center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 5px black;
}

/* OFFERS */
.offers {
  background: orange;
  text-align: center;
  padding: 20px;
  font-size: 20px;
}

/* MENU */
.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.item {
  background: white;
  padding: 15px;
  border-radius: 15px;
  width: 180px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.item:hover {
  transform: translateY(-10px);
}

.item img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
}

/* ORDER */
#order {
  text-align: center;
}

/* BOOKING */
form {
  text-align: center;
}

input, button {
  margin: 10px;
  padding: 10px;
}

/* REVIEWS */
#reviews {
  text-align: center;
}

textarea {
  width: 300px;
  height: 80px;
}

/* FOOTER */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
}
