* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #fff7f5;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  background: #111;
  color: #fff;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
}

.navbar a:hover {
  color: #ff4d4d;
}

/* Hero */
.hero {
  height: 100vh;
  background: url("images/interior1.png") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
}

/* Sections */
section {
  padding: 50px;
  text-align: center;
}

h2 {
  margin-bottom: 20px;
}

/* Menu */
.menu-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.menu-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-card img {
  width: 100%;
  border-radius: 10px;
}

#chef {
  padding: 60px 20px;
  text-align: center;
}

.chef-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.chef-container div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
}

.chef-container img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.chef-container p {
  margin-top: 10px;
  font-weight: 500;
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  background: #ff4d4d;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background: #e60000;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}