/* إعدادات أساسية */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Tahoma", sans-serif;
  line-height: 1.8;
}

/* الهيرو */
.hero {
  background: url("https://via.placeholder.com/1200x500") center/cover no-repeat;
  color: #171613;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.with-bg {
  background: url("https://images.pexels.com/photos/675951/pexels-photo-675951.jpeg") center/cover no-repeat;
  padding: 30px;
  border-radius: 10px;
  color: #fff; /* النص أبيض عشان يبان */
  display: inline-block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: rgba(216, 193, 160, 0.708);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 15px;
}

.nav-links a {
  color: #181817;
  text-decoration: none;
  transition: 0.4s;
}

.nav-links a:hover {
  color: #a79d73;
}

.hero-content {
  text-align: center;
  margin-bottom: 80px;
}

.hero-content h2 {
  font-size: 50px;
}

.btn {
  display: inline-block;
  color: #f5e9e9;
  padding: 10px 20px;
  border-radius: 10px;
  margin-top: 30px;
  text-decoration: none;
}

/* المنيو */
.menu {
  padding: 10px;
  text-align: center;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.menu .item {
  border: 1px solid #a08449;
  padding: 10px;
  border-radius: 10px;
}

.menu .item img {
  max-width: 100%;
  border-radius: 10px;
}

/* عن المطعم */
.about {
  padding: 40px;
  background: #cfba95;
  text-align: center;
}

/* آراء العملاء */
.reviews {
  padding: 50px;
  text-align: center;
}

.review {
  margin: 20px auto;
  max-width: 500px;
  background: #fee68f;
  padding: 20px;
  border-radius: 10px;
}

/* تواصل معنا */
.contact {
  padding: 50px;
  background: #eedab8;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: 1px solid #0d0d0e;
  border-radius: 5px;
}

.contact button {
  padding: 10px;
  background: #a57b26;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* الفوتر */
.footer {
  background: #483502;
  color: #faf4f4;
  text-align: center;
  padding: 15px;
}

body {
  line-height: 1.6;
  background-color: #fdfaf3; /* أوف وايت مائل للبيج */
}
