@font-face {
  font-family: "haas";
  src: url("./fonts/NeueHaasGrotDisp-45Light-Trial.otf");
}

@font-face {
  font-family: "digital";
  src: url("./fonts/Digital-Desolation-Plus.otf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-size: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #ededed;
}

h1 {
  font-family: "haas";
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.5rem;
}

.lighter {
  color: #cdcdcd;
  font-size: 3rem;
}

strong {
  color: #424242;
}

/* landing page */
.logo {
  all: unset;
  cursor: pointer;
  padding: 15px;
  position: fixed;
  z-index: 2;
}

.navConst {
  right: 0vw;
  display: inline-flex;
  justify-content: flex-end;
  gap: 30px;
  position: fixed;
  z-index: 2;
}

.navConst a {
  text-decoration: none;
  font-family: "haas";
  font-size: 1.5rem;
  color: #979797;
  padding: 30px;
  padding-right: 60px;
}

.sec1 {
  position: relative;
  height: fit-content;
}

.navContainer {
  position: sticky;
  top: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  background-color: #ededed;
  z-index: 1;
}

.navBar {
  font-family: "haas";
  width: 55vw;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}

.navBar button {
  border: none;
}

.navBar a {
  text-decoration: none;
  color: #979797;
  font-size: 1.5rem;
  cursor: pointer;
}

.navBar a:hover {
  color: #6a6a6a;
}

.cta {
  font-family: "haas";
  font-size: 1.5rem;
  color: #979797;
  background-color: #dbdbdb;
  padding: 0 20px;
  border-radius: 4px;
}

.cta:hover {
  color: #424242;
  background-color: #ff3700;
}

.inlineFormat {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.intro {
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titleAnimation {
  font-size: 50vw;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  gap: 0.1em;
  width: 100vw;
  height: fit-content;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.titleAnimation span {
  font-family: "digital";
  font-size: 60px;
  opacity: 0;
  filter: blur(10px);
  color: #979797;
  display: inline;
}

.spacer {
  height: 100vh;
  position: relative;
  font-family: "haas";
  color: #979797;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.spacer p {
  font-size: 3rem;
}

.scrollAnimation {
  height: 150px;
  width: 80px;
  border: 2px solid #979797;
  border-radius: 50px;
  position: relative;
}

.scrollAnimation::before,
.scrollAnimation::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  border: 2px solid #979797;
  height: 20px;
  width: 20px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: transparent;
  border-left: transparent;
  animation: scrollAnimation 1.5s ease-in-out infinite;
}

.scrollAnimation::after {
  top: 30%;
  animation-delay: 0.3s;
}

@keyframes scrollAnimation {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    top: 90%;
  }
}

.scrollText {
  background: linear-gradient(to left, #979797, #cdcdcd, #979797);
  background-size: 200%;
  background-clip: text;
  color: transparent;
  animation: scrollText 2.5s ease-in-out infinite;
  /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}

@keyframes scrollText {
  to {
    background-position: -200%;
  }
}

.sec2 {
  position: relative;
  height: 100vh;
}

.catalogue {
  width: 100vw;
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 20px;
}

.catCard {
  font-family: "haas";
  color: #898989;
  width: 25vw;
  height: fit-content;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.1s ease-in-out;
}

.catCard h3 {
  color: #424242;
}

.catCard em {
  color: #424242;
}

.DP {
  cursor: pointer;
  border-radius: 15px;
}

.catCard img {
  width: 300px;
  max-width: 100%;
}

.catCardInfo {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.catCard:hover {
  border: 1px solid #979797;
  border-radius: 15px;
}

.catalogue a {
  text-decoration: underline;
  color: #424242;
  font-size: 1.5rem;
}

/* product page */
.mainContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: fit-content;
  position: relative;
}

/* .selected {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: -10px;
}

.selected a {
  color: #6a6a6a;
} */

.selected {
  display: inline-flex;
}

.orangeDot {
  background-color: #ff3700;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  mix-blend-mode: darken;
}

.title {
  height: 25vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title h1 {
  font-family: digital;
  font-size: 10em;
  color: #e3e3e3;
}

.detailContainer {
  width: 100vw;
  height: fit-content;
  margin: 3rem;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-family: "haas";
  color: #979797;
}

.productName {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.productName p {
  font-size: 1.5rem;
}

.productDetail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productDescription {
  width: 25vw;
}

.productDescription p {
  font-size: 1.3rem;
}

.canvasSection {
  height: 400vh;
  width: 100vw;
  position: relative;
}

canvas.webgl {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: block;
}

.textOverlay {
  position: relative;
  pointer-events: none;
}

.text1 {
  position: fixed;
  top: 25%;
  left: 70%;
}

.text2 {
  position: fixed;
  bottom: 20%;
  left: 70%;
}

.text3 {
  position: fixed;
  top: 25%;
  left: 10%;
}

.text4 {
  position: fixed;
  top: 75%;
  right: 10%;
}

.text5 {
  position: fixed;
  top: 50%;
  left: 10%;
}

.text6 {
  position: fixed;
  top: 20%;
  right: 20%;
}

.textOverlay h2 {
  font-family: "haas";
  font-size: 2rem;
  color: #838383;
  transition: opacity 0.5s;
  opacity: 0;
  border: 1px solid #838383;
  border-radius: 5px;
  padding: 10px;
}

.specContainer {
  display: flex;
  flex-direction: column;
}

.blurb {
  padding: 10vw 20vw;
}

.blurb p {
  font-family: "haas";
  font-size: 3rem;
  color: #979797;
}

.blurb span {
  font-size: 3rem;
}

.spec {
  width: 100vw;
  height: fit-content;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  font-family: "haas";
  color: #979797;
}

.spec1 {
  width: 30vw;
}

.useCase {
  margin-top: 5vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tipOptions {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.tipIcons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: space-between;
}

.options {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-evenly;
}

.placement {
  margin-top: 30vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 0 10vw;
}

.placementTitle {
  display: inline;
  width: 30vw;
}

.placementTitle h1 {
  font-family: "haas";
  font-size: 3rem;
  color: #979797;
}

.placementIcons {
  font-family: "haas";
  color: #979797;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.placement img {
  width: 80px;
  height: 80px;
  opacity: 0.8;
  object-fit: contain;
  border: 1px solid #979797;
  border-radius: 8px;
  padding: 10px;
}

.placement p {
  width: 8vw;
  text-align: center;
}

.row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.tipOptions h1 {
  font-size: 3rem;
  color: #979797;
}

.options div {
  font-family: "haas";
  font-size: 1.5rem;
  color: #979797;
  border: 1px solid #979797;
  border-radius: 10px;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.images {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100vw;
  padding: 10px;
}

.images img {
  height: 100vh;
  border-radius: 30px;
}

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

.otherProducts {
  padding: 100px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.otherProducts h1 {
  font-family: "haas";
  font-size: 2rem;
  color: #979797;
}

.otherProducts img:hover {
  border: 1px solid #979797;
  border-radius: 10px;
}

.profile {
  padding: 20px;
  font-family: "haas";
  color: #979797;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.footer {
  margin-top: 4rem;
  font-family: "haas";
  font-size: 2rem;
  color: #424242;
  border-top: 1px solid #979797;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.profileContainer {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
  align-items: center;
  padding: 5rem;
  gap: 10rem;
  font-family: "haas";
  color: #424242;
}

.profileUpper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  width: 100vw;
}

.profileLeft {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.profileLeft h1 {
  font-size: 3rem;
}

.systemStatus {
  display: inline-flex;
  gap: 2rem;
}

.systemStatus h2 {
  font-size: 2.5rem;
  color: #7a7a7a;
}

#exclaimIcon {
  color: #e3e3e3;
  background-color: #ff3700;
  border-radius: 50%;
  font-size: 2.6rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
}

.profileRight {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 6rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.label {
  font-size: 1.5rem;
  color: #000000;
}

.value {
  font-size: 1.2rem;
  color: #7a7a7a;
}

.profileLower {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.profileLower p {
  font-size: 1.2rem;
}

.updateBtn {
  background-color: #dbdbdb;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.7rem;
  cursor: pointer;
  border: none;
}

.updateBtn:hover {
  background-color: #bababa;
}
