.landing-section {
  display: flex;
  margin: auto;
  background-color: #fde2cf;
}

.landing-section .left-column,
.landing-section .right-column {
  flex: 0 0 50%;
  max-width: 50%;
}

.landing-section .left-column img {
  width: 100%;
  display: block;
  border-radius: 0 0 20px 0;
}

.landing-section .right-column p {
  color: #642714;
  font-family: "Open Sans";
  position: relative;
  overflow: visible;
}

.landing-section .right-column p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 3px;
  background-color: #f8a720;
}

.banner {
  text-align: center;
}

.p-50 {
  padding: 5% 10%;
}

.nutmeg-juice-container h1,
.yellow-extend h1 {
  color: #fde2cf;
  text-align: left;
}

.beige-extend h1 {
  color: #f8a720;
  text-align: left;
}

/* Layout rows and columns */
.row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex: 1;
}

.button-row {
  display: flex;
  height: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: end;
}

.col-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.col-8 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.col-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Images */
.col-6 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.col-4 img {
  width: 100%;
  min-width: 300px;
  border-radius: 16px;
  max-height: 600px;
}

.small-img {
  object-fit: cover;
  max-height: 280px;
  width: 100%;
}

.note-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  border-width: 0px 4px 4px 0px;
  border-style: solid;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.nutmeg-juice-container .note-content,
.yellow-extend .note-content {
  background-color: #fde2cf;
}

.beige-extend .note-content {
  background-color: #f8a720;
}

.nutmeg-juice-bg {
  margin: 100px 0;
  background-color: #fde2cf;
  border-radius: 100% 0 0 100%;
  margin-right: -50px;
}

.nutmeg-juice-bg img {
  width: 200px;
}

.nutmeg-juice-row {
  justify-content: space-between;
}

.nutmeg-juice-container {
  background-color: #f8a720;
}

.kway-teow-bg {
  margin: 100px 0;
  background-color: #ed6325;
  border-radius: 0 100% 100% 0;
  margin-left: -50px;
}

.kway-teow-bg img {
  height: 200px;
}

.kway-teow-row {
  justify-content: space-between;
}

.kway-teow-sm-container {
  display: none;
}

.nutmeg-juice-sm-container {
  display: none;
}

.fab-container {
  padding: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: none;
  position: relative;
}

.fab-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 40%;
  object-fit: contain;
}

.yellow-extend .fab-container {
  background-color: #fde2cf;
}

.beige-extend .fab-container {
  background-color: #f8a720;
}

@media (max-width: 768px) {
  .landing-section {
    flex-direction: column;
  }

  .landing-section .right-column {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .landing-section .left-column {
    order: 2;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-4 {
    display: none;
  }

  .p-50 {
    padding: 5%;
  }

  .laksa,
  .kuih {
    padding: 5% 5% 10% 5%;
  }

  .nutmeg-juice-title,
  .kway-teow-title {
    display: none;
  }

  .nutmeg-juice-sm-container,
  .kway-teow-sm-container {
    display: block;
  }

  .nutmeg-juice-bg {
    height: 150px;
    margin-right: -50px;
  }

  .kway-teow-bg {
    margin-right: -50px;
  }

  .nutmeg-juice-bg img {
    width: 130px;
  }

  .kway-teow-bg img {
    height: 200px;
  }

  .nutmeg-juice-sm-container,
  .kway-teow-sm-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nutmeg-juice-sm-container h1,
  .kway-teow-sm-container h1 {
    flex: 4;
  }

  .nutmeg-juice-sm-container .right-column {
    flex: 2;
  }

  .kway-teow-sm-container .right-column {
    flex: 2;
    background-color: #ed6325;
    border-radius: 100% 0 0 100%;
  }

  .see-more-button-yellow,
  .see-more-button-beige {
    display: none;
  }

  .fab-container {
    display: block;
  }

  .col-6 img {
    height: 100%;
    width: 100%;
    min-width: 100%;
    border-radius: 16px;
  }

  /* TODO: if change extend value please update this */
  /* need to handle like this because parent have padding 20px already */
  .nutmeg-juice-bg,
  .kway-teow-bg {
    margin: 0 -50px 50px 0;
  }
}

@media (max-width: 600px) {
  .nutmeg-juice-sm-container h1,
  .kway-teow-sm-container h1 {
    flex: 1;
  }

  .nutmeg-juice-sm-container .right-column {
    flex: 1;
  }

  .kway-teow-sm-container .right-column {
    flex: 1;
    background-color: #ed6325;
    border-radius: 100% 0 0 100%;
  }
  .nutmeg-juice-bg,
  .kway-teow-bg {
    margin-right: -20px;
  }

  .kway-teow-sm-container {
    flex-direction: row;
  }

  /* TODO: if change extend value please update this */
  /* need to handle like this because parent have padding 20px already */
  .nutmeg-juice-bg,
  .kway-teow-bg {
    margin: 30px -20px 50px 0;
  }
}

@media (max-width: 550px) {
  .kway-teow-sm-container {
    flex-direction: column-reverse;
    flex: none;
    justify-content: end;
    align-items: flex-end;
  }

  .kway-teow-sm-container h1 {
    align-self: center;
    width: 90%;
  }

  .kway-teow-bg img {
    height: 130px;
  }

  .kway-teow-sm-container {
    flex-direction: row;
  }

  /* TODO: if change extend value please update this */
  /* need to handle like this because parent have padding 20px already */
  .kway-teow-bg {
    margin: 30px -20px 50px 0;
  }
}
