@import url(https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,500;1,200;1,300&display=swap);
@font-face {
  font-family: "MinionPro";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../assets/font/MinionPro-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "MinionProBold";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../assets/font/MinionPro-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "TrajanProBold";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url(../assets/font/TrajanPro-Bold.woff2) format("woff2");
}

* {
  font-family: TrajanProBold;
}
body {
  overflow-x: hidden;
}
/* Helpers */
.hero-title .char {
  display: inline-block;
  will-change: transform, opacity;
}
.img-slider {
  object-fit: cover;
  height: inherit;
  width: inherit;
}
.gold-eden-roc {
  color: #b19a5f;
}
.scroll-down {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #ffffff;
  border-radius: 15px;
  position: relative;
}
.wheel {
  width: 6px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 3px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s infinite;
}
.arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translateY(0) rotate(315deg);
  animation: bounce-arrow 1.5s infinite;
}
.hidden-element {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
}
.visible-element {
  opacity: 1;
  visibility: visible !important;
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0s;
}
#header-btn.close > span:nth-child(1) {
  transform: rotate(45deg) translate(6px,10px);
}
#header-btn.close > span:nth-child(2) {
  transform: rotate(-45deg) translate(-3px,-3px);
}
#header-btn.close > span:nth-child(3) {
  transform: rotate(-45deg) translate(6px,-11px);
}
@keyframes scroll-wheel {
  0%,
  100% {
    top: 10px;
  }
  50% {
    top: 20px;
  }
}
@keyframes bounce-arrow {
  0%,
  100% {
    transform: translateY(0) rotate(315deg);
  }
  50% {
    transform: translateY(10px) rotate(315deg);
  }
}

/* Header */
.header-logo, .hero-logo {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg);
}