

.menu-hero {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat:no-repeat!important;
  text-align: center;
  color: white;
  width: 100%;
  height:400px ;
  }
.menu-hero{
  background: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
}
.menu-overlay{
    font-size: 40px;
    margin-top: 60px;
}
.menu-overlay p{
    font-size: 25px;
    color:#f6b341;
    margin-right: 60px;
    margin-left: 60px;
}
.menu-sect {
  text-align: center;
  padding: 60px 30px;
  background: #f8f8f8;
}

.menu-tit {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.menu-sub {
  color: #777;
  margin-bottom: 40px;
  font-size: 20px;
}

.menu-filter {
  margin-bottom: 30px;
}

.filter-bt {
    font-size: 15px;
  background: none;
  border: none;
  font-weight: 600;
  margin: 0 10px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-bt.active,
.filter-bt:hover {
  color: #e8a317;
  border-bottom: 2px solid #e8a317;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.menu-ite{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 200px;
}

.menu-ite img {
  width: 400px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.menu-ite:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: opacity 0.4s ease;
  font-size: 20px;
}
.cartbtn{
    margin-top: 15px;
    background: transparent;
    color: white;
    border-radius: 10px;
    padding: 10px;
    border: 3px solid #f6b341;
}
.menu-ite:hover .overlay {
  opacity: 1;
}
