body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #f5b877, #fcdcb6, #f5b877);
  color: #222;
}

.menu-header {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.menu-header .image-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/ZZ.jpg') no-repeat center center/cover;
  z-index: 0;
}

.menu-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.menu-header .header-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.menu-header h1 {
  font-size: 3rem;
  margin-bottom: -10px;
}

.menu-header p {
  font-size: 1.3rem;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
  /* replaced negative margin */
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  margin-top: -220px;
}

.tab-button {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: #ce1a1a;
  transition: all 0.3s ease;
}

.tab-button.active {
  border-color: #000;
  color: #000;
}

.tab-content {
  padding: 30px 20px;
  margin-top: -270px;
}

.menu-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2.5px solid #000;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(255, 186, 60, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 1.1rem;
  font-weight: 500;
  color: #000;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(255, 186, 60, 0.35);
}

.breadcrumb {
  margin-top: 15px;
  font-size: 1rem;
  color: #fff;
}

.breadcrumb a {
  color: #ffb52a;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 5px;
}

.footer {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer h3 {
  color: #d1240d;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.footer h4 {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #f5ebeb;
}

.footer p {
  margin: 6px 0;
  line-height: 1.5;
  font-size: 0.95rem;
  padding: 1px;
}

.footer p i {
  color: #d1240d;
  margin-right: 8px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-box ul li a:hover {
  text-decoration: underline;
}

.footer form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  border-radius: 3px;
}

.footer button {
  background: #d1240d;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.footer button:hover {
  background: #b71c09;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  margin-top: 10px;
}

.branch {
  margin-bottom: 20px;
}

@media (max-width:768px) {
  .tab-content {
    padding: 30px 20px;
    margin-top: -300px;
  }

  .tabs {
    margin-top: -250px;
  }
}

@media (max-width: 400px) {
  .tab-content {
    padding: 30px 20px;
    margin-top: -280px;
  }

  .tabs {
    margin-top: -250px;
  }
}

@media (max-width: 350px) {
  .tab-content {
    padding: 30px 20px;
    margin-top: -350px;
  }

  .tabs {
    margin-top: -280px;
  }
}