@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
@import "./reset.css";

body {
  font-family: "Bai Jamjuree", sans-serif !important;
  background: rgb(26, 26, 26);
  height: 100%;
}

* {
  scroll-behavior: smooth !important;
}

.hamburger_menu {
  display: none;
}

.logo {
  width: 90px !important;
  height: 30px !important;
  position: relative;
}

img[alt="Logo"] {
  width: 90px !important;
  height: 30px !important;
  position: absolute;
  inset: 0;
}

.hover-logo {
  opacity: 0;
}

.logo:hover .hover-logo {
  opacity: 1;
  transition: opacity 0.5s;
}

.logo:hover .not-hover-logo {
  opacity: 0;
  transition: opacity 0.5s;
}

.overflow {
  height: 100vh;
  overflow: hidden !important;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.header-open {
  height: 100dvh;
}

.header-open .overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  height: calc(100% - 200px);
}

.overlay .language {
  display: flex;
  gap: 20px;
  color: rgba(69, 71, 75, 1);
  font-size: 12px;
  font-weight: 500;
}

.overlay .language .active {
  color: rgba(174, 176, 179, 1);
}

.overlay .navigation {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.overlay .contact-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
}

.overlay .contact-content .instagram {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.overlay .copyright {
  display: flex;
  flex-direction: row;
}

.overlay .copyright div {
  flex: 1 0 0;
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
}

.overlay .copyright div p {
  font-size: 10px;
}

.overlay .navigation a {
  font-size: 32px;
  font-weight: 700;
  color: rgba(224, 225, 227, 0.3);
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(150, 153, 156, 1);
}

header {
  height: 100px;
  justify-content: center;
  padding-left: 70px;
  padding-right: 70px;
  background: linear-gradient(
    180deg,
    #0d0d0d 11.9%,
    #1a1a1a 86.35%,
    rgba(26, 26, 26, 0) 100%
  );
  position: sticky;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

header .overlay {
  display: none;
}

header .tab {
  display: flex;
  justify-content: space-between;
}

header .menu-container {
  display: none;
}

header .language-selector {
  font-weight: 500;
  font-size: 12px;
  color: rgba(162, 164, 167, 1);
  border: 1px solid rgba(43, 44, 45, 1);
  border-radius: 3px;
  position: relative;
}

header .language-selector:hover .selectbox {
  opacity: 1;
  width: 100%;
  height: 100%;
}

header .language-selector:hover {
  border-bottom: 1px solid transparent !important;
  border-end-end-radius: 0px;
  border-end-start-radius: 0px;
}

header .language-selector__active {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  cursor: pointer;
  padding: 4px;
}

header .language-selector .selectbox {
  opacity: 0;

  height: 0;
  border: 1px solid rgba(43, 44, 45, 1);
  border-radius: 3px;
  position: absolute;

  border-start-end-radius: 0px;
  border-start-start-radius: 0px;
  border-top: 0;
  padding-top: 10px;
  left: -1px;
  transition: all 0.3s;
}

header .language-selector .selectbox a {
  font-weight: 500;
  font-size: 12px;
  color: rgba(162, 164, 167, 1);
  text-decoration: none;
  margin-left: 4px;
}

header nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

header nav a {
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.3s;
  color: rgba(162, 164, 167, 1);
}

header nav select {
  border: 1px solid #2b2c2d;
  background-color: transparent;
  color: rgba(162, 164, 167, 1) !important;
  border-radius: 3px;
  outline: 0;
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Bai Jamjuree", sans-serif !important;
}

header nav a:hover {
  transform: translateY(-2px);
  color: rgba(247, 188, 115, 1);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.main {
  scroll-behavior: smooth;
}

main .hero {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 100px);
}

main .hero .img__area {
  flex: 1 0 0;
  height: 80%;
  width: 100%;
}

main .hero .img__area img {
  width: 100%;
}

main .hero .button__area {
  flex: 1 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20%;
}

main .hero button {
  border: 1px solid rgba(247, 188, 115, 1);
  padding: 10px 100px;
  background: rgba(19, 19, 19, 1);
  color: rgba(230, 230, 230, 1);
  font-weight: 700;
  font-size: 14px;

  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.3s;
  font-family: "Bai Jamjuree", sans-serif !important;
}

main .hero button:hover {
  background: linear-gradient(180deg, #704418 0%, #a1651d 50%, #f6bc74 100%);
  color: rgba(13, 13, 13, 1);
}

main .about-us {
  padding: 200px 0;
  padding-bottom: 0px;
  padding-right: 130px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

main .about-us .about-us__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main .about-us .about-us__container h2 {
  font-size: 72px;
  font-weight: 700;
  color: rgba(224, 225, 227, 0.3);
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(150, 153, 156, 1);
}

main .about-us .about-us__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

main .about-us .about-us__content .list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

main .about-us .about-us__content .list p {
  color: rgba(90, 91, 94, 1);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
}
main .about-us .about-us__content .list h4 {
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
  font-size: 48px;
}

main .about-us .about-us__content .description p {
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
  line-height: 20px;
  font-size: 16px;
}

main .benefits-features {
  padding: 200px 130px;
  padding-top: 200px;
  padding-bottom: 0px;
  display: flex;
  flex-direction: column;
  gap: 150px;
}

main .benefits-features h2 {
  font-size: 72px;
  font-weight: 700;
  color: rgba(224, 225, 227, 0.3);
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(150, 153, 156, 1);
}

main .benefits-features .swiper {
  min-height: 335px;
}

main .benefits-features .swiper .swiper-wrapper {
  height: 100%;
}

main .benefits-features .benefits__card {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

main .benefits-features .benefits__card img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

main .benefits-features .benefits__card .benefits__card--content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

main .benefits-features .benefits__card .benefits__card--content h4 {
  font-size: 24px;
  color: rgba(162, 164, 167, 1);
}

main .benefits-features .benefits__card .benefits__card--content p {
  font-size: 16px;
  color: rgba(129, 131, 134, 1);
}

main .brands {
  padding: 200px 130px;
  display: flex;
  flex-direction: column;
  gap: 115px;
}

main .brands .brands-title {
  display: flex;
  align-items: center;
  gap: 100px;
}

main .brands .brands-title p {
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
  font-size: 16px;
}

main .brands .brands__card {
  display: flex;
  flex-direction: column;
  width: 100px;
}

main .brands .swiper-slide {
  width: 100px;
}

main .brands .brands__card img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  pointer-events: none;
}

main .brands .brands__card p {
  font-size: 21px;
  text-align: center;
  color: rgba(162, 164, 167, 1);
  pointer-events: none;
}

main .brands .swiper {
  padding-bottom: 72px;
}

main .brands h2 {
  font-size: 72px;
  font-weight: 700;
  color: rgba(224, 225, 227, 0.3);
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(150, 153, 156, 1);
}

main .contact {
  padding: 100px 130px;
}

main .contact h2 {
  font-size: 72px;
  font-weight: 700;
  color: rgba(224, 225, 227, 0.3);
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(150, 153, 156, 1);
}

main .contact .contact__content {
  display: flex;
  flex-direction: row;
  gap: 130px;
  margin-top: 50px;
  position: relative;
}

main .contact .contact__content .form__area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 0 0;
}

main .contact .contact__content .form__area input {
  background: rgba(19, 19, 19, 1);
  border: 1px solid rgba(43, 44, 45, 1);
  border-radius: 3px;
  padding: 10px 15px;
  outline: 0;
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
  font-size: 12px;
  font-family: "Bai Jamjuree", sans-serif !important;
  transition: all 0.3s;
}

input::placeholder {
  font-family: "Bai Jamjuree", sans-serif !important;
}

textarea::placeholder {
  font-family: "Bai Jamjuree", sans-serif !important;
}

main .contact .contact__content .form__area textarea {
  background: rgba(19, 19, 19, 1);
  border: 1px solid rgba(43, 44, 45, 1);
  border-radius: 3px;
  padding: 10px 15px;
  outline: 0;
  color: rgba(162, 164, 167, 1);
  font-weight: 500;
  font-size: 12px;
  resize: none;
  font-family: "Bai Jamjuree", sans-serif !important;
  transition: all 0.3s;
}

main .contact .contact__content .form__area button {
  border: 1px solid rgba(247, 188, 115, 1);
  padding: 10px 0;
  background: rgba(19, 19, 19, 1);
  color: rgba(247, 188, 115, 1);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 1px;
  transition: all 0.3s;
  font-family: "Bai Jamjuree", sans-serif !important;
}

main .contact .contact__content .form__area button:hover {
  background: linear-gradient(180deg, #704418 0%, #a1651d 50%, #f6bc74 100%);
  color: rgba(13, 13, 13, 1);
}

main .contact .contact__content .map__area {
  flex: 3 0 0;
  border-radius: 3px;
  padding: 20px;
  background-color: rgb(19, 19, 19);
  max-height: 100%;
  border: 1px solid rgba(43, 44, 45, 1);
}

main .contact .contact__content .map__area img {
  border: 1px solid rgba(90, 91, 94, 1);
  border-radius: 3px;
  object-fit: cover;
}

footer {
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0) 11.9%,
    #1a1a1a 25.56%,
    #0d0d0d 100%
  );
  display: flex;
  justify-content: space-between;
  padding: 15px 70px;
  color: rgba(162, 164, 167, 1);
  height: 62px;
  align-items: center;
}

footer .contact {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

footer .copyright {
  display: flex;
  flex-direction: row;
  gap: 80px;
}

footer .copyright .design:hover {
  color: rgba(105, 200, 199, 1);
}

footer .copyright .code:hover {
  color: rgba(230, 77, 105, 1);
}

footer .copyright div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.swiper-pagination-bullet {
  border-radius: 1px !important;
  width: 6px;
  height: 6px;

  background: rgb(69, 71, 75) !important;
}
.swiper-pagination-bullet-active {
  color: #fff;
  background: rgb(150, 153, 156) !important;
  transform: scale(1.5);
}

@media (max-width: 991px) {
  header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .menu-container {
    display: inline-block !important;
    cursor: pointer;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 16px;
    height: 2px;
    background-color: white;
    margin: 3px 0;
    transition: 0.4s;
    border-radius: 10px;
  }

  .change .bar1 {
    transform: rotate(45deg) translate(3.5px, 3.5px);
  }

  .change .bar2 {
    opacity: 0;
  }

  .change .bar3 {
    transform: rotate(-45deg) translate(3.5px, -3.5px);
  }

  header nav {
    display: none !important;
  }

  .hero {
    overflow: hidden;
    margin-bottom: 20px !important;
  }

  .hero button {
    color: rgba(247, 188, 115, 1) !important;
  }

  .hero img {
    width: 1000px !important;
    margin-left: -250px;
  }

  .about-us {
    flex-direction: column !important;
    overflow: hidden !important;
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0) 0%,
      rgba(26, 26, 26, 0.9) 30%,
      rgba(26, 26, 26, 0.9) 92%,
      rgba(26, 26, 26, 0) 100%
    );
    padding: 100px 0 !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    gap: 135px !important;

    position: relative;
  }

  .about-us .about-us__container img {
    z-index: -1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .about-us .about-us__container h2 {
    font-size: 48px !important;
  }

  main .about-us .about-us__content .list p {
    font-size: 14px !important;
  }
  main .about-us .about-us__content .list h4 {
    font-size: 36px !important;
  }

  .benefits-features {
    padding: 50px 0 !important;
    gap: 60px !important;
  }

  .benefits-features .swiper {
    padding-left: 25px !important;
  }

  .benefits-features .swiper-slide {
    width: 75%;
  }

  .benefits-features h2 {
    font-size: 48px !important;
    text-align: center !important;
  }

  .brands {
    padding: 50px 15px !important;
    gap: 64px !important;
  }

  .brands-title {
    flex-direction: column !important;
    gap: 60px !important;
  }

  .brands-title h2 {
    font-size: 48px !important;
  }

  .contact {
    padding: 50px 15px !important;
    padding-bottom: 35px !important;
  }

  .contact h2 {
    font-size: 48px !important;
    text-align: center;
  }

  .contact__content {
    flex-direction: column-reverse !important;
    gap: 20px !important;
  }

  .contact__content .map__area {
    padding: 0 !important;
    border: 0 !important;
  }

  .contact__content .form__area {
    padding: 0 25px;
  }

  footer {
    display: none !important;
  }

  .hamburger_menu {
    display: block;
  }
}

#scrollButton {
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  cursor: pointer; /* Add a mouse pointer on hover */
  background: transparent;
  width: 40px;
  height: 40px;
  display: flex;

  justify-content: center;
  align-items: center;
}

#scrollButton .arrow-active {
  display: none;
}

#scrollButton:hover .arrow-active {
  display: block !important;
}

#scrollButton:hover .arrow-disabled {
  display: none !important;
}

input:hover {
  border-color: rgba(90, 91, 94, 1) !important;
}

input:focused {
  border-color: rgba(90, 91, 94, 1) !important;
}

textarea:hover {
  border-color: rgba(90, 91, 94, 1) !important;
}

textarea:focused {
  border-color: rgba(90, 91, 94, 1) !important;
}
