*{
    margin: 0;
    padding: 0;
}
.section3{
   background: #0f0f0f;
  display: flex;
  /* height: 1000px; */
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  /* height: 600px; */
  /* height: auto; */
  /* margin-top: 100px; */
}
.food-category {
  height: 1200px;
  width: 90%;
  max-width: 1200px;
  text-align: center;
}

.section-title {
  font-size: 16px;
  display: block;
  font-weight: 500;
  color: #fcbc00;
  margin-bottom: 60px;
  margin-top: 30px;
  transform: translate(0,0);
  position: relative;
  font-family: "Bangers", system-ui;
  text-transform: uppercase;
  /* margin-bottom: 50px; */
}

.section-title span{
  color: #ededed;
  font-family: 'Pacifico', cursive;
  font-size: 30px;
  font-weight: 600;
  
}
.section-title::after {
  content: '';
  width: 100px;
  height: 4px;
  background: #f79c42;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.food-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
button {
  position: relative;
  display: inline-block;
  /* padding: 10px 15px; */
  width: 100px;
  height: 39px;
  color: #fff;
  font-size: 12px;
  font-family: 'Pacifico', cursive;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #ff6600;
  border-radius: 50px;
  overflow: hidden;
  transition: 0.3s;
  margin-bottom: -10px;
  cursor: pointer;
  background: transparent;
  margin-left: 10px;
  margin-top: 30px;
  text-align: center;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(10deg, #ff6600, #ff004c);
  transition: 0.5s;
  z-index: -1;
}
button i {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  transform: translateX(-10px);
  opacity: 0;
  transition: 1s ease;
  /* animation: spin 0.6s infinite alternate; */
}
button:hover i {
  transform: translateX(4px);
  opacity: 1;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
100% { transform: rotate(-60deg); }
}
button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: 1s ease-in-out;
}

button:hover::before {
  left: 0;
}

button:hover::after {
  left: 120%;
}

button:hover {
  color: #fff;
  /* box-shadow: 0 0 20px #ff6600; */
}



.info h2 {
  font-size: 1.2rem;
  color: #ffb300;
  font-family: 'Pacifico', cursive;
  margin-bottom: 10px;
  /* border: 1px solid red; */
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 10px #ffb300; }
  to { text-shadow: 0 0 20px #ff8800; }
}
.info p {
  color: #bbb;
  font-family: 'Pacifico', cursive;
  
  /* margin-bottom: 60px; */
  font-size: 14px;
}
.menu-card{
  position: relative;
  border: 1px solid red;
  width: 280px;
  height: 380px;
  top: 80px;
  
}
.menu-card-image{
  position: absolute;
  background-image: url(/Assest/burger-image/card-background-1.jpg);
  width: 100%;
  height: 100%;
  /* z-index: 22; */
  background-size: cover;
}