.sandwich-scroll {
  /* background: #f1f1f1; */
  padding: 80px 20px;
  overflow-x: hidden;
  position: relative;
  margin: 0;
 
}

.sandwich-scroll .lunch-box-text-wrapper {
  position: relative;
  /* padding: 100px 20px; */
  padding-bottom: 0;
  text-align: center;
  z-index: 2;
}

.sandwich-scroll .sandwich-box-background-block {
  position: relative;
  z-index: 2;
  /* background-color: #f1f1f1; */
}

/* Wrapper holds bars + background block + text */
.sandwich-box-text-wrapper {
  position: relative;
  padding-bottom: 50px;
  text-align: center;
  z-index: 2;
  /* border: 1px solid black; */

}

.sandwich-scroll .lunch-box-text {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.sandwich-box-background-block {
  padding: 60px 20px;
  position: relative;
  z-index: 2; /* sits above bars, under text */
  /* border: 1px solid black; */
  /* opacity: 0.5; */
  max-width: 500px;
  margin: 0 auto;
}

.sandwich-scroll .lunch-box-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.sandwich-scroll .lunch-box-text h2 span {
  display: inline-block;
  transform-origin: center bottom;
  transition: transform 0.15s ease-out;
}

.sandwich-scroll .lunch-box-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.5;
}
.sandwich-scroll .sandwich-row {
  display: flex;
  justify-content: center;
  gap: 0px;
  width: 100%; /* full viewport width */
  will-change: transform;
  /* background: #f1f1f1; */
  padding: 20px 0;
  transition: transform 0.1s ease-out;

  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}




.sandwich-row {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}


.sandwich-scroll .sandwich-box-img {
  width: 400px;
  height: auto;
  object-fit: cover;
  /* border-radius: 12px; */
  transition: transform 0.3s ease-out;
}

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

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

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

/* Responsive tweaks */
@media (max-width: 1024px) {
  .sandwich-scroll .lunch-box-img {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .sandwich-scroll .lunch-box-img {
    width: 300px;
  }

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

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

@media (max-width: 500px) {
  .sandwich-scroll .lunch-box-img {
    width: 240px;
  }
  .sandwich-scroll .sandwich-box-img {
    width: 240px;
  }
}
