body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f7f0e6;
  color: #3d2b1f;
}
.navbar {
  background: #e9e0dc;
}
.navbar-brand {
  font-weight: 700;
  color: #b67c31;
}
.navbar-brand i {
  color: #e8c9a0;
}
.nav-link {
  color: rgba(245, 230, 211, 0.8) font-weight #3d2b1f 600;
}
.nav-link:hover {
  color: #e8c9a0;
}
.order-badge {
  background: #e8c9a0;
  color: #d1956c;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.9rem;
}
.order-badge span {
  color: #5c3d2e;
  font-size: 1.2rem;
}
.hero {
  background: #7a5238;
  color: #f5e6d3;
  padding: 70px 0 50px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 800;
}
.hero h1 span {
  color: #e8c9a0;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.profile-pic {
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 4px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}
.profile-pic:hover {
  transform: scale(1.05);
}
.profile-pic i {
  font-size: 44px;
  color: #e8c9a0;
}
.btn-hero {
  background: #e8c9a0;
  color: #3d2b1f;
  font-weight: 700;
  padding: 0.7rem 2.5rem;
  border-radius: 60px;
  border: none;
  transition: transform 0.3s;
}
.btn-hero:hover {
  transform: scale(1.04);
  color: #3d2b1f;
}
.btn-hero-outline {
  background: transparent;
  border: 2px solid #e8c9a0;
  color: #f5e6d3;
  font-weight: 700;
  padding: 0.7rem 2.5rem;
  border-radius: 60px;
  transition: all 0.3s;
}
.btn-hero-outline:hover {
  background: #e8c9a0;
  color: #3d2b1f;
}
#menu {
  padding: 3rem 0;
}
.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #3d2b1f;
}
.section-title span {
  color: #7a5238;
}
.item-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #ece0d4;
  cursor: pointer;
  transition: all 0.3s;
  height: 100%;
  overflow: hidden;
}
.item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: #7a5238;
}
.item-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #f5ede6;
}
.item-card .card-body {
  padding: 1.2rem 1.5rem 1.5rem;
}
.item-card .name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #3d2b1f;
}
.item-card .desc {
  font-size: 0.85rem;
  color: #8a7a6a;
}
.item-card .price {
  font-weight: 700;
  color: #7a5238;
  font-size: 1.3rem;
}
.badge-cat {
  background: #e8c9a0;
  color: #3d2b1f;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-radius: 40px;
}
.btn-order {
  background: #7a5238;
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.85rem;
  transition: background 0.3s;
  width: 100%;
  margin-top: 0.5rem;
}
.btn-order:hover {
  background: #5c3d2e;
  color: #fff;
}
.footer {
  background: #3d2b1f;
  color: rgba(245, 230, 211, 0.7);
  padding: 2rem 0;
  margin-top: 2rem;
  border-radius: 40px 40px 0 0;
}
.footer a {
  color: rgba(245, 230, 211, 0.6);
  transition: color 0.3s;
}
.footer a:hover {
  color: #e8c9a0;
}
.footer h5 {
  color: #e8c9a0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  .profile-pic {
    width: 85px;
    height: 85px;
  }
  .profile-pic i {
    font-size: 32px;
  }
  .section-title {
    font-size: 2rem;
  }
  .item-card img {
    height: 130px;
  }
}
@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }
}
