.menu-preview {
  padding: 80px 40px;
  background-color: #f5f5f5;
}

.menu-title {
  text-align: center;
  font-size: 50px;
  margin-bottom: 60px;
}

.menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;

  background-color: white;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 15px;
}

.menu-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.menu-text span {
  font-size: 20px;
  font-weight: normal;
}

.menu-text p {
  font-size: 18px;
  line-height: 1.5;
}

.chinese-mode .menu-text h2 {
  font-size: 35px;
}

.chinese-mode .menu-text span {
  font-size: 25px;
}

.chinese-mode .menu-text p {
  font-size: 23px;
}

.menu-images {
    position: relative;
    width: 900px;
    height: 280px;
    margin: auto;
}

.image-box {
    position: absolute;

    width: 300px;
    height: 200px;

    overflow: hidden;
    border-radius: 15px;

    background-color: #ddd;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.image-box:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
}

.image-box:nth-child(2) {
    top: 15px;
    left: 250px; /* ~17% overlap */
    z-index: 2;
}

.image-box:nth-child(3) {
    top: 30px;
    left: 500px; /* ~17% overlap */
    z-index: 3;
}
