body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: rgba(255, 255, 255, 0.85);
  padding-top: 120px;
 
}
.navbar img {
  object-fit: cover;
  object-position: center;
}
.restaurant-name {
  font-weight: 700; /* Bold */
  font-size: 1.25rem;
}
.restaurant-tagline {
  font-weight: 500; /* Medium */
  font-size: 0.85rem;
}
.restaurant-contact {
  font-weight: 400;
  font-size: 0.8rem;
}
.food-card {
  min-width: 160px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-right: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.2s ease;
}
.food-card:hover {
  transform: translateY(-5px);
}
.food-card img {
  border-radius: 8px;
  object-fit: cover;
}
.food-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.quantity button {
  padding: 6px 12px;
  font-size: 16px;
  background-color: #28a745;
  border: none;
  color: white;
  border-radius: 5px;
}
.overflow-auto {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.qr-placeholder {
  background-color: #fefefe;
  padding: 15px;
  border-radius: 10px;
  border: 1px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .food-card {
    min-width: 130px;
  }
  .navbar-brand {
    font-size: 18px;
  }
  #viewCartBtn {
    font-size: 14px;
    padding: 6px 10px;
  }
  .modal-content {
    font-size: 14px;
  }
  h4 {
    font-size: 18px;
  }
}

 /* Stylish Carousel Look */
  .offer-carousel {
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    color: #000;
    font-weight: bold;
  }

  .offer-carousel h5 {
    font-size: 18px;
    animation: glowText 2s infinite alternate;
  }

  /* Text Glow Animation */
  @keyframes glowText {
    from { text-shadow: 0 0 5px #fff; }
    to   { text-shadow: 0 0 12px #5100ff; }
  }

   /* Navbar Background */
  .custom-navbar {
    background: linear-gradient(90deg, #006400, #00a859);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Logo Styling */
   .logo-img {
    width: 90px;
    height: 60px;
    border-radius: 12px;      /* Rounded corners (or 50% for circle) */
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    object-fit: cover;        /* Fill box */
    object-position: center;  /* Center crop */
    display: block;
  }

  /* Restaurant Name */
  .restaurant-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
  }

  /* Tagline */
  .restaurant-tagline {
    font-size: 14px;
    color: #e8f5e9;
  }

  /* Contact */
  .restaurant-contact {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
  }

  /* Order Button */
  .order-btn {
    background: linear-gradient(90deg, #cfe5f3, #cdc686);
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
  }

  .order-btn:hover {
    background: linear-gradient(90deg, #ffb700, #ff8800);
    transform: scale(1.05);
  }

  #searchInput {
  width: 100%;       /* full width */
  margin-bottom: 1rem;
  padding: 0.5rem;   /* optional padding */
}
