* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #fdfdfd;
  color: #333;
}
header {
  background: #111;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: #ff914d;
  font-size: 1.8rem;
}
.logo span {
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #eee;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #ff914d;
}
.hero {
  height: 90vh;
  background: url("https://source.unsplash.com/1600x900/?restaurant,food")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.btn {
  background: #ff914d;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #e57b34;
}
.menu {
  padding: 4rem 2rem;
  text-align: center;
}
.menu h2 {
  color: #ff914d;
  margin-bottom: 2rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.menu-item {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}
.menu-item:hover {
  transform: translateY(-5px);
}
.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.menu-item h3 {
  margin: 1rem 0 0.5rem 0;
  color: #ff914d;
}
.menu-item p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.menu-item span {
  font-weight: bold;
  color: #222;
  margin-bottom: 1rem;
  display: block;
}
.about {
  background: #f7f7f7;
  padding: 4rem 2rem;
  text-align: center;
}
.about h2 {
  color: #ff914d;
  margin-bottom: 1rem;
}
.about p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
}
.contact {
  padding: 4rem 2rem;
  text-align: center;
}
.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input,
.contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact .btn {
  cursor: pointer;
}
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 1rem;
}
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ff914d;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: none;
  cursor: pointer;
}
#scrollTopBtn:hover {
  background: #e57b34;
}
