.container-fluid {
  padding: 0;
}

body {
  font-family: 'Exo', sans-serif;
}

.font-bitter {
  font-family: 'Bitter', serif;
}

.button {
  display: inline-block;
  padding: 20px 40px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  background-color: #F9C634;
  text-decoration: none;
  cursor: pointer;
}


.button:hover {
  transition: background-color 0.3s ease;
  background-color: #FBB67B;
}


.hero-left {
  width: 20%;
  background-color: #F9C634;
  background-size: auto 90%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('assets/slogan.png');
}

.hero-right {
  width: 80%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('assets/trickytea.jpg');
}

.section-1 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-1 h1 {
  font-weight: 700;
  font-size: 72px;
  color: #F47D58;
  text-align: center;
  text-transform: uppercase;
}

.section-1 p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 30px;
  color: #636563;
  text-align: center;
}

.section-1 .cta {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: #27241d;
}

.section-1 .button {
  margin-top: 30px;
}

.section-2 .lemon,
.section-2 .peach {
  width: 50%;
}

.section-2 .lemon-bg {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('assets/trickytea-lemon.jpg');
}

.section-2 .peach-bg {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('assets/trickytea-peach.jpg');
}

.section-2 .lemon-cta,
.section-2 .peach-cta {
  padding: 50px 15px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.section-2 .lemon-cta {
  background-color: #FCE890;
}

.section-2 .peach-cta {
  background-color: #FBB67B;
}

.section-2 .lemon-cta .type,
.section-2 .peach-cta .type {
  transition: all 0.3s ease;
  font-size: 48px;
  line-height: 1;
  color: #000;
  text-decoration: none;
  padding: 10px 40px;
  border: 3px solid black;
  display: inline-block !important;
  margin-bottom: 30px;
}

.section-2 .lemon-cta .type:hover,
.section-2 .peach-cta .type:hover {
  transform: scale(1.1);
}

.section-3 {
  padding: 100px 0;
  text-align: center
}

.section-3 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #27241d;
  margin-bottom: 50px;
}

.section-3 h2 a {
  color: #FBB67B;
  text-decoration: none;
}

.section-4 {
  position: relative;
  background: linear-gradient(0deg, #FCE890 0%, #FBB67B 50%, #F47D58 100%);
  padding-top: 100px;
  text-align: center;
  overflow: hidden;
}

.section-4 img {
  max-width: 100%;
}

.section-4 .foreground {
  position: relative;
  z-index: 2;
  width: 100%;
}

.section-4 .logosun {
  border-radius: 100%;
  background-image: url("assets/logo.png");
  background-position: center;
  background-size: 140%;
  box-shadow: 0px 0px 100px #FCE890;
  animation: logosun-pulse 2.2s ease-in-out infinite;
  will-change: transform;

  width: 25vw;
  height: 25vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - var(--parallax-y, 0px)));
  z-index: 1;
}

.pb-100 {
  padding-bottom: 100px;
}

.section-5 {
  padding-top: 10px;
}

.section-5 h2 {
  font-size: 36px;
  font-weight: 700;
  color: #27241d;
  margin-bottom: 50px;
}

.section-5 img {
  width: 4vw;
  height: auto;
}

.hero-top {
  height: 100vh;
}

.slogan-md {
  display: none;
}

.lang-switcher {
  width: 3vw;
  height: auto;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

@keyframes logosun-pulse {

  0%,
  100% {
    box-shadow: 0 0 100px 100px rgba(252, 232, 144, 0.5);
  }

  50% {
    box-shadow: 0 0 100px 100px rgba(252, 232, 144, 1);
  }
}

@media screen and (max-width: 1270px) {
  .button {
    font-size: 18px;
    padding: 12px 25px;
  }

  .section-1 h1 {
    font-size: 48px;
  }

  .section-1 p {
    font-size: 24px;
  }

  .section-1 .cta {
    font-size: 24px;
  }

  .section-2 .lemon-cta,
  .section-2 .peach-cta {
    font-size: 28px;
  }

  .section-2 .lemon-cta .type,
  .section-2 .peach-cta .type {
    font-size: 36px;
    padding: 8px 30px;
  }

  .section-3 h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1023px) {
  .lang-switcher {
    width: 3vh;
  }

  .hero-top {
    height: 70vh;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    width: 100%;
  }

  .section-2 .lemon,
  .section-2 .peach {
    width: 100%;
  }

  .section-2 .lemon-bg,
  .section-2 .peach-bg {
    height: auto;
    min-height: 70vh;
  }

  .section-4 .logosun {
    width: 40vw;
    height: 40vw;
  }

  .section-2 {
    display: flex;
    flex-direction: column !important;
  }

  .slogan-md {
    display: block;
    text-align: center;
    padding: 25px;
    background-color: #F9C634;
  }

  .slogan-md img {
    max-width: 100%;
  }

  .button {
    font-size: 18px;
    padding: 12px 25px;
  }

  .section-1 h1 {
    font-size: 32px;
  }

  .section-1 p {
    font-size: 18px;
  }

  .section-1 .cta {
    font-size: 18px;
  }

  .section-2 .lemon-cta,
  .section-2 .peach-cta {
    font-size: 20px;
  }

  .section-2 .lemon-cta .type,
  .section-2 .peach-cta .type {
    font-size: 28px;
    padding: 8px 30px;
  }

  .section-3,
  .section-1 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-3 h2 {
    font-size: 20px;
  }

  .section-5 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-5 h2 {
    font-size: 28px;
  }

  .section-5 img {
    width: 8vh;
    height: auto;
  }



  @keyframes logosun-pulse {

    0%,
    100% {
      box-shadow: 0 0 50px 50px rgba(252, 232, 144, 0.5);
    }

    50% {
      box-shadow: 0 0 50px 50px rgba(252, 232, 144, 1);
    }
  }
}