body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fefcf9;
  color: #222;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.6rem;
  color: #c0392b;
}
.navbar-brand i {
  color: #c0392b;
}
.nav-link {
  font-weight: 500;
  color: #444;
}
.nav-link:hover {
  color: #c0392b;
}

.hero-section {
  background: #2c3e50;
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.hero-btn {
  background: #c0392b;
  color: #fff;
  border: none;
  padding: 0.7rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}
.hero-btn:hover {
  background: #a93226;
  color: #fff;
}

.section-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: #6c6c6c;
}

.menu-card {
  border: 1px solid #eaeaea;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
.menu-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.menu-card .card-body {
  padding: 1rem 1.2rem 1.2rem;
}
.menu-card .price {
  color: #c0392b;
  font-weight: 700;
}

.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 4px solid #c0392b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.reserve-section {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #eaeaea;
}
.reserve-section .form-control,
.reserve-section .form-select {
  border-radius: 30px;
  border: 1px solid #ddd;
}
.btn-reserve {
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  width: 100%;
}
.btn-reserve:hover {
  background: #a93226;
  color: #fff;
}

.footer {
  background: #1e1e1e;
  color: #ccc;
  padding: 2rem 0 1.5rem;
}
.footer a {
  color: #ddd;
  text-decoration: none;
}
.footer a:hover {
  color: #c0392b;
}
.footer .brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
}
.footer .brand i {
  color: #c0392b;
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: none;
  cursor: pointer;
}
#backToTop:hover {
  background: #a93226;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.4rem;
  }
}
