.bg-img{
    background-image: url('images/Home.png');
}
body {
  font-family: 'Roboto', sans-serif !important;
}

h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #f4c10f;
    }

    .section {
      margin-bottom: 30px;
    }

    .section h2 {
      border-bottom: 2px dashed #f4c10f;
      padding-bottom: 10px;
      margin-bottom: 20px;
      color: #f4c10f;
    }

    .flavor {
      background-color: #1f1f1f;
      border-radius: 10px;
      padding: 8px 15px;
      margin-bottom: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    }

    .flavor h3 {
      margin: 0 0 3px;
      font-size: 1.2em;
      color: #f4c10f;
    }

    .flavor p {
      margin: 0;
      font-size: 0.85em;
      color: #ccc;
      /* font-style: oblique; */
    }

    .price {
      color: #fff;
      font-weight: bold;
      margin-top: 2px;
    }

    .menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* space between items */
}

.menu-grid .flavor {
  flex: 1 1 calc(50% - 15px); /* two columns */
  background: #1e1e1e;
  padding: 10px;
  border-radius: 8px;
  box-sizing: border-box;
}

    .sticky-header {
  position: sticky;
  top: 0;
  background-color: #121212;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.sticky-header h1 {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 1.8em;
  color: #f4c10f;
}

.backbtn {
      font-size: 25px;
    border: 1px solid white;
    border-radius: 10px;
    padding: 10px;
    color: black;
    background: white;
  cursor: pointer;
}
.hookah-icon {
  width: 60px;
  height: auto;
  z-index: 1;
}

.smoke {
  position: absolute;
  top: -10px;
  right: 5px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  animation: smokeRise 3s infinite ease-in-out;
  border-radius: 50%;
  z-index: 0;
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-25px) scale(1.5);
    opacity: 0;
  }
}
 .search-box {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-bottom: 20px;
      border-radius: 5px;
      border: none;
      background: #1f1f1f;
      color: white;
      margin-top: 10px;
    }

  .shop-timings {
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
}

.timing-title {
  font-family: 'Cursive', sans-serif;
  color: gold;
  letter-spacing: 1px;
}

.timing-card {
  background: rgba(255, 255, 255, 0.05);
  /* border: 1px solid rgba(255, 215, 0, 0.3); */
  padding: 10px;
  margin: 5px;
  /* border-radius: 12px; */
  text-align: center;
  transition: 0.3s ease;
}
.btn-close{
   
    color: gold;
    border: 2px solid gold !important;
    border-radius: 5px;

}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #121212;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
}

.loader {
  border: 6px solid #333;
  border-top: 6px solid #ffcc00;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loading p {
  margin-top: 10px;
  font-size: 16px;
  color: #bbb;
}


/* Footer Styling */
.footer {
  /* background-color: #111; */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3, .footer h4 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.footer p, .footer ul, .footer li {
  font-size: 14px;
  margin: 0;
  list-style: none;
  color: #ccc;
}

.footer-hours ul li {
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 18px;
  padding: 8px;
  border: 1px solid #ffcc00;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #ffcc00;
  color: #111;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 13px;
  border-top: 1px solid #333;
  color: #777;
}



.timing-card h5 {
  font-weight: bold;
  margin-bottom: 5px;
}

.timing-card p {
  font-size: 1rem;
  Padding:0px;
  margin:0px;
}

.timing-card.open {
  border-color: gold;
  color: #fff;
}

.timing-card.closed {
  opacity: 0.5;
  color: #bbb;
}

/* .timing-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
} */




 .p_body {
      font-family: 'Poppins', sans-serif;
      background-color: #121212;
      color: #fff;
      margin: 0;
      padding: 20px;
    }

@media (max-width: 576px) {
    .navbar h4 {
      font-size: 1.25rem;
    }
    .navbar small {
      font-size: 0.8rem;
    }
    .menu-section1 h6 {
      font-size: 1rem;
    }
  }
  