body { background: #f5f7fb; }

.hero {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
}
.hero .overlay {
  position: relative;
  z-index: 2;
  padding: 26px;
  color: #fff;
  width: 100%;
}

.hero h1, .hero h2 { margin: 0; }
.hero p { max-width: 760px; opacity: .95; }

.card { border-radius: 18px; border: 0; box-shadow: 0 8px 24px rgba(25, 35, 52, 0.08); }
.card .card-title { font-weight: 700; }

.pill {
  display: inline-block;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  background: rgba(13,110,253,.1);
  color: #0d6efd;
}

.food-img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.big-img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 18px rgba(0,0,0,.14);
}

.section-title { font-weight: 800; letter-spacing: .2px; }

.muted { color: rgba(255,255,255,.85); }

.badge-soft {
  background: rgba(25,135,84,.12);
  color: #198754;
  font-weight: 700;
  border-radius: 999px;
  padding: .35rem .65rem;
}

.badge-soft-warn {
  background: rgba(255,193,7,.18);
  color: #b58100;
  font-weight: 700;
  border-radius: 999px;
  padding: .35rem .65rem;
}

.badge-soft-danger {
  background: rgba(220,53,69,.14);
  color: #dc3545;
  font-weight: 700;
  border-radius: 999px;
  padding: .35rem .65rem;
}

.table thead th { white-space: nowrap; }
