
/* ===== MENU HERO ===== */
.menu-hero {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.menu-hero h1 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
}

.menu-hero p {
  font-size: 1.25rem;
  font-weight: 300;
}

.menu-hero img {
  object-fit: cover;
  opacity: 0.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .menu-hero {
    min-height: 90vh;
  }
  .menu-hero img {
    width: 100%;
  }
}






/* Floating Button Base */
.floating-order-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  white-space: nowrap;
  padding: 8px 16px; /* smaller size */
  height: 45px; 
  font-size: 0.95rem;
}

/* Icon */
.floating-order-btn .icon i {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* Button Text */
.floating-order-btn .btn-text {
  margin-left: 8px;
}

/* Hover Animation */
.floating-order-btn:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-order-btn:hover .icon i {
  transform: rotate(20deg); /* small playful tilt */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .floating-order-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
    bottom: 20px;
    right: 20px;
    height: auto;
  }

  .floating-order-btn .icon i {
    font-size: 1rem;
  }
}








/* Section Wrapper */
#menu_sec {
  background: #FFF8F2; /* warm off-white */
  padding: 7rem 1.5rem;
}

/* Heading */
.section-heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d35400;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f97316; /* orange */
  border-radius: 2px;
}

/* Category Card */
.menu-section {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer; /* whole card clickable */
}

.menu-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Category Title */
.menu-category {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d35400;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
}

/* .menu-category::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #f97316;
  margin: 0.3rem auto 0;
  border-radius: 2px;
} */

/* Items container */
.menu-items {
  margin-top: 1rem;
}

/* Each Item */
.menu-item {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.menu-item:last-child {
  border-bottom: none;
}

/* First row: dot + name + price */
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  position: relative;
}

/* Veg/Non-Veg dots */
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.veg-dot { background-color: #059005; }
.nonveg-dot { background-color: #f52d2d; }

/* Name */
.item-name {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
  flex: 1;
  word-break: break-word;
}

/* Price */
.item-price {
  font-weight: 600;
  color: #d35400;
  font-size: 1rem;
  white-space: nowrap;
}

/* Description aligned with name */
.item-desc {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.35rem;
  margin-left: calc(10px + 10px); /* dot + gap */
  line-height: 1.5;
}

@media (max-width: 768px) {
  .item-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .item-left {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }

  .item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d35400;
    align-self: flex-end;   /* moves to the right side */
  }

  .item-desc {
    margin-left: 1.3rem; /* align under the name (dot + gap size) */
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
  }
}
