.menu-intro-scroll {
  background: #f1f1f1;
  padding: 00px 20px;
  padding-top: 50px;
  overflow-x: hidden;
  position: relative;
  /* margin: 0; */
  margin-bottom: 20px;

}

/* Wrapper holds bars + background block + text */
.menu-intro-text-wrapper {
  position: relative;
  padding: 10px 20px;
  text-align: center;
  z-index: 2;
  margin-bottom: 20px;

}

.wave-heading span {
  display: inline-block;
  transform-origin: center bottom;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

/* Background block behind the text */
.menu-intro-background-block {
  background-color: #f1f1f1;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0 auto;
}

/* Text content sits inside background block */
.menu-intro-text {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.menu-intro-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.menu-intro-text h2 a {
  text-decoration: underline;
  color: #000;
}

.menu-intro-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}

/* Image row that scrolls horizontally */
.menu-intro-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0px;
  will-change: transform;
  z-index: 3;
}

/* Menu intro images */
.menu-intro-img {
  width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* Green bars behind everything */
.green-bar {
  position: absolute;
  width: 500px;
  height: 40px;
  background-color: #66ff99;
  z-index: 1;
}

.bar-top-left {
  top: 50%;
  left: 50%;
  transform-origin: left center;
}

.bar-bottom-right {
  top: 50%;
  left: 50%;
  transform-origin: left center;
}

/* Responsive image scaling */
@media (max-width: 1024px) {
  .menu-intro-img { width: 400px; }
}

@media (max-width: 768px) {
  .menu-intro-img { width: 300px; }

  .bar-top-left {
    left: 10%;
  }

  .bar-bottom-right {
    right: 10%;
  }

  .menu-intro-background-block {
    padding: 40px 20px;
  }
}

@media (max-width: 500px) {
  .menu-intro-img { width: 240px; }
}
