
.banner{
  height: 30vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3),rgba(0, 0, 0, 0.3)), url("./image/restaurant.jpg");
  background-position: 50% 50%;
  background-size: cover;
  color: white;
  border-radius: 5px;
}

.container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 1rem;
  padding: 2rem 5%;
  background-color: black;
}

.box {
  background-color: rgb(49, 49, 49);
  /* height: 200px; */
  border-radius: 10px;
  overflow: hidden;
  transition: 0.5s;
  color: white;
}
.box:hover{
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.505);
}
.box-image{
  width: 100%;
}
.box-info{
  padding: 1rem 5%;
}

.box-num {
  text-align: center;
  font-size: 1.5rem;
  color: white;
}
.box-name{
  text-align: center;
  font-size: 1.8rem;
  text-transform: capitalize;
  font-weight: 600;
}

/* footer----------------- */
.logo-box {
  display: flex;
  gap: 10px;
  /* background-color: #4634eb; */
  align-items: center;
}
.logo-img {
  width: 50px;
}
.logo-name {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 600;
}
.footer {
  position: relative;
  overflow: hidden;
    background-image: linear-gradient(
    45deg,
    rgb(122, 0, 89),
    rgb(255, 187, 0),
    rgb(93, 0, 255)
  );
}
.style-box {

  height: 200px;
  width: 200px;
  position: absolute;
  /* border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; */
  z-index: -1;
  animation: rotateing 10s infinite linear;
  img{
    width: 100%;
  }
}
.style-box-1 {
  left: 0;
  top: 30%;
}
.style-box-2 {
  left: 40%;
  top: 0;
  animation-delay: 1s;
}
.style-box-3 {
  left: 60%;
  top: 50%;
  animation-delay: 2s;
}
.style-box-4 {
  right: 0;
  transform: translate(30%, 30%);
  bottom: 0;
  animation-delay: 1s;
}
@keyframes rotateing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer-container {
  background-color: rgba(179, 202, 255, 0.527);
  backdrop-filter: blur(50px);
  padding: 3rem 10%;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-box {
  flex: 1 1 200px;
}
.footer-link-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.copywrite {
  background-color: black;
  color: white;
  padding: 5px;
  text-align: center;
}
.call{
  display: flex;
  align-items: center;
  gap: 5px;
}
.call-num{
  font-size: 1.5rem;
  font-weight: 600;
}


/* item section---------------------------- */
.item-list {
  padding: 10px;
  min-height: 60vh;
  position: relative;
  letter-spacing: 1px;
  text-shadow: 0 0 5px black;
}

.item-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  /* border-bottom: 1px solid rgb(90, 90, 90); */
  font-weight: 900;
  text-transform: capitalize;
}
.item-left {
  display: flex;
  gap: 10px;
  align-items: center;
  img{
    width: 50px;
    border-radius: 50%;
  }
}
.gst{
  color: red;
  font-weight: 600;
  text-align: center;
}