:root {
  --nk-green: #0f5132;
  --nk-gold: #f4b400;
  --nk-dark: #122118;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f7f4ee;
  color: #1b1b1b;
}

.brand-nav {
  background: linear-gradient(90deg, #0b3d25, #135c37);
}

.hero-section {
  background: linear-gradient(135deg, rgba(15,81,50,.96), rgba(7,43,25,.92)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80') center/cover;
  color: white;
}

.hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.25rem;
  backdrop-filter: blur(10px);
}

.menu-card {
  border-radius: 1rem;
  overflow: hidden;
}

.menu-image {
  height: 220px;
  object-fit: cover;
}

.qty-input {
  max-width: 84px;
}

.card {
  border-radius: 1.25rem;
}


/* static/css/style.css - smooth restaurant-style menu slider */
.menu-carousel {
  border-radius: 1rem;
  overflow: hidden;
  background: #f8f9fa;
}

.menu-image-wrap {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.8s ease;
}

.carousel-item.active .menu-image {
  transform: scale(1.04);
}

.menu-carousel .carousel-item {
  transition: opacity 1.2s ease-in-out !important;
}

.menu-carousel .carousel-control-prev,
.menu-carousel .carousel-control-next {
  width: 12%;
}

.menu-carousel .carousel-control-prev-icon,
.menu-carousel .carousel-control-next-icon {
  background-size: 70% 70%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}



/* home page restaurant-style upgrade */
.hero-section {
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #066b35 0%, #0b8a43 50%, #19c37d 100%);
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.25;
  pointer-events: none;
}

.hero-glow-1 {
  width: 260px;
  height: 260px;
  background: #ffc107;
  top: -50px;
  right: 8%;
}

.hero-glow-2 {
  width: 220px;
  height: 220px;
  background: #ffffff;
  bottom: 20px;
  left: -50px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.payment-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
  color: #212529;
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.14);
  border-left: 6px solid #ffc107;
  max-width: 520px;
}

.payment-banner-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff3cd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.payment-banner-title {
  font-weight: 800;
  font-size: 1rem;
  color: #14532d;
}

.payment-banner-text {
  font-size: 0.92rem;
  color: #495057;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-title-accent {
  color: #ffd54f;
}

.hero-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  max-width: 580px;
}

.hero-btn-primary {
  background: #ffc107;
  border: none;
  color: #212529;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(255, 193, 7, 0.28);
}

.hero-btn-primary:hover {
  background: #ffcd39;
  color: #212529;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  min-width: 180px;
  backdrop-filter: blur(8px);
}

.hero-feature-card strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.hero-feature-card small {
  color: rgba(255, 255, 255, 0.82);
}

.hero-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.hero-food-main {
  grid-column: 1 / 3;
  height: 320px;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-food-small {
  height: 170px;
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.16);
}

.hero-food-main img,
.hero-food-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-floating-card {
  margin-top: 1.2rem;
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem;
  max-width: 360px;
}

.hero-floating-badge {
  display: inline-block;
  background: #fff3cd;
  color: #8a5a00;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.info-card {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1.6rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.12);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-food-main {
    height: 260px;
  }

  .hero-food-small {
    height: 140px;
  }
}

@media (max-width: 575.98px) {
  .payment-banner {
    padding: 0.9rem 1rem;
  }

  .hero-feature-card {
    width: 100%;
  }

  .hero-food-main {
    height: 220px;
  }

  .hero-food-small {
    height: 120px;
  }
}