
body {
  padding-top: 56px;
  font-family: 'Poppins', sans-serif;
}

.navbar-brand .brand-text {
  font-weight: 600;
}

.hero-section {
  position: relative;
  height: 400px;
  background-image: url('https://images.unsplash.com/photo-1589302168068-964664d93dc0');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-content {
  animation: fadeIn 1.5s ease-in-out;
}

.hero-overlay h1,
.hero-overlay p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-hero-secondary {
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  background-color: transparent;
  border: 2px solid #fff;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-hero-secondary:hover {
  background-color: #fff;
  color: #000;
}

.btn-hero {
  padding: 12px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  background-color: #ff5722;
  border: none;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
  background-color: #e64a19;
  color: white;
}

.section-title {
  font-weight: 600;
  margin-bottom: 40px;
}

.feature-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: #ff5722;
  margin-bottom: 20px;
}

.category-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.category-card .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .card-img-top {
  transform: scale(1.05);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.category-card .card-img-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  padding-bottom: 20px;
}

.map-responsive {
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.floating-cart-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .hero-content .btn {
    margin-bottom: 10px; /* Add vertical spacing between buttons */
  }
}

.floating-cart-btn .btn {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #ff5722; /* Theme color */
  border: none;
  color: white;
}

.floating-cart-btn .btn:hover {
  background-color: #e64a19; /* Darker shade on hover */
  color: white;
}

.floating-cart-btn .badge {
  margin-left: 8px;
}

/* Adjust for smaller screens */
@media (max-width: 768px) {
  .floating-cart-btn {
    bottom: 15px;
    right: 15px;
  }
  .floating-cart-btn .btn {
    padding: 8px 15px;
    font-size: 1rem;
  }
}

.menu-item-card .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover .card-img-top {
  transform: scale(1.05);
}

.menu-item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-item-card .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-card .card-body .d-flex {
  margin-top: auto;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
