/* ==== Small custom CSS (Tailwind tetap dari CDN di tiap page) ==== */
.hero-overlay{background:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7))}
.menu-card-img{transition:transform .3s ease}
.menu-card:hover .menu-card-img{transform:scale(1.05)}
.no-scrollbar::-webkit-scrollbar{display:none}
.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}
.mobile-menu{transition:transform .3s ease-in-out}
.mobile-menu.hidden-menu{transform:translateX(100%)}
.mobile-menu.show-menu{transform:translateX(0)}

/* ===============================
   TEXT CENTER & CLEAN ALIGNMENT
   =============================== */

/* Semua heading & paragraf di card / aside */
.text-center-all h1,
.text-center-all h2,
.text-center-all h3,
.text-center-all h4,
.text-center-all p,
.text-center-all span {
  text-align: center;
}

/* Rapiin jarak paragraf */
.text-center-all p {
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* Center icon + text di tombol */
.btn-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

/* Sidebar card agar proporsional */
.aside-card {
  text-align: center;
}

.aside-card h3 {
  margin-bottom: 0.5rem;
}

.aside-card p {
  font-size: 0.95rem;
  color: #4b5563; /* gray-600 */
}

/* Tombol full width rapi */
.aside-card a {
  width: 100%;
  justify-content: center;
}

/* Tips text */
.aside-card .tips {
  font-size: 0.85rem;
  color: #6b7280; /* gray-500 */
  line-height: 1.6;
  text-align: center;
}

/* ===============================
   MENU HERO BACKGROUND
   =============================== */

.menu-hero {
  position: relative;
  background:
    radial-gradient(600px circle at 85% 30%, rgba(211,47,47,0.12), transparent 60%),
    radial-gradient(500px circle at 10% 80%, rgba(211,47,47,0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

/* decorative blobs */
.menu-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(211,47,47,0.12);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
}

.menu-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(211,47,47,0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

/* pastikan konten di atas background */
.menu-hero > * {
  position: relative;
  z-index: 1;
}

.menu-hero {
  background: linear-gradient(
    180deg,
    #fff5f5 0%,
    #ffffff 60%
  );
}

.menu-hero img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ===============================
   LOCATION HERO BACKGROUND
   =============================== */

.location-hero {
  position: relative;
  background:
    radial-gradient(700px circle at 15% 25%, rgba(211,47,47,0.10), transparent 60%),
    radial-gradient(600px circle at 85% 30%, rgba(211,47,47,0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  overflow: hidden;
}

/* decorative soft shapes */
.location-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(211,47,47,0.12);
  border-radius: 50%;
  filter: blur(42px);
  z-index: 0;
}

.location-hero::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 360px;
  height: 360px;
  background: rgba(211,47,47,0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

/* ensure content above background */
.location-hero > * {
  position: relative;
  z-index: 1;
}

/* card enhancement for location info */
.location-card {
  background: #ffffff;
  border: 1px solid #e5e7eb; /* gray-200 */
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.location-hero {
  background: linear-gradient(
    180deg,
    #fff5f5 0%,
    #ffffff 60%
  );
}

.location-hero a:hover {
  transform: translateY(-2px);
}