* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #262736;
}

.hero {
  background-image: url("../images/hero_banner.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: start;
  color: #fff;
  text-align: center;
  flex-direction: column;
  padding-top: 150px;
  gap: 35px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.play-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 44px 44px 44px 47px;
  border-radius: 131px;
  background-color: rgba(158, 158, 158, 0.44);
}

.white-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 27px 51px;
  border-radius: 58px;
  background-color: #fff;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, #ba893c, #ffe4ba 69%, #503e22 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 4px 9.5px 11px rgba(0, 0, 0, 0.32);
}

.white-btn p {
  font-size: 20px;
  font-weight: 700;
  color: #8a6c3c;
}

.scroll {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.ombre-transi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0px 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.51), rgba(0, 0, 0, 0));
}

.mirror {
  transform: scaleX(-1);
}

main {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0px 53px;
  flex-direction: column;
}

.main-wrapper {
  display: flex;
  width: 100%;
}
section {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 35px;
  padding: 30px 70px;
  color: #c5a47e;
  position: relative;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(to right, #ba893c, #ffe4ba 69%, #503e22 100%);
}

section img {
  width: 1100px;
  height: 558px;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

section p {
  align-items: center;
  max-width: 850px;
}

.navbar {
  background: transparent !important;
  position: absolute;
  width: 100%;
  z-index: 1000;
}
