@font-face {
  font-family: 'Urbanist', sans-serif;
  src: url(./fonts/Urbanist/Urbanist-VariableFont_wght.ttf);
}

@font-face {
  font-family: 'Forum';
  src: url(./fonts/Forum/Forum-Regular.ttf);
}

@font-face {
  font-family: 'Libre';
  src: url(./fonts/Libre_Baskerville/LibreBaskerville-Regular.ttf);
}

:root {
  --color-black: #101010;
  --color-white: #ffffff;
  --color-red: #d10019;
  --color-gray: #454545;

  --font-hero: 14.5vw;
  --font-h1: 100px;
  --font-h2: 90px;
  --font-h3: 55px;
  --font-medium: 35px;
  --font-regular: 28px;
  --font-small: 20px;
  --font-tiny: 14px;
}

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

html,
body {
  width: 100%;
  height: 100% !important;
  font-family: "Urbanist", sans-serif;
  scroll-behavior: smooth;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(255, 0, 0, 0.391);
  }
  100% {
    box-shadow: 0 0 0 50px rgba(0, 0, 0, 0);
  }
}


.cursor {

  position: fixed;  
  width: 16px;
  height: 16px;
  scale: 1;
  border-radius: 50%;
  z-index: 1000000000000000000000;
  /* background-color: var(--color-white); */
  background: var(--color-gray);
  box-shadow: 0 10px 70px rgb(0, 0, 0);
  backdrop-filter: blur(50px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.1s, height 0.1s;
  mix-blend-mode: difference;
}

.cursor.cursor-change {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.059);
  box-shadow: 0 5px 60px rgba(255, 0, 0, 0.894);
  backdrop-filter: blur(3px);
  animation: pulse-animation 1s infinite
}


.cursor.cursor-none{
  width: 0;
  height: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-family: 'Forum';
  font-size: 15vw;
  line-height: 90%;
  font-weight: 100;
  color: #fff;
  letter-spacing: 5px;
}

p {
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
}

a {
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
}

section {
  width: 100%;
  height: 100vh;
}

.space {
  height: 50vh;
}

.small-space {
  height: 5vh;
}
/* 
.top-page {
  height: 200vh;
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.836)), url(./images/background.jpg) no-repeat;
  filter: invert(1);
  object-fit: cover;
} */

.hero {
  padding: 4em;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

model-viewer::part(default-progress-bar) {
  display: none;
}

#hero-3d {
  height: 70vh;
  width: 100%;
  opacity: 0;
  transform: translateY(0), translateX(0);
} 

.hero-3d {
  position: relative;
  width: 100%;  
  /* top: 15%;   
  left: 50%; */
  /* transform: translate(-50%, -50%); */
  z-index: 1000000;
}

.hero-img {
  width: 100%;
  height: 70vh;
  top: 4rem;
  opacity: 0;
  position: absolute;
  background-image: url("./images/hero-img.png");
  z-index: 10000000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 58%;
}

.hero-bg-img {
  width: 100vw;
  height: 100vh;
  top: 0;
  opacity: 0;
  position: fixed;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.836)), url(./images/background.jpg) no-repeat 50% 50%;
  z-index: 1;
  filter: invert(1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero h1 {
  position: absolute;
  text-align: center;
  bottom: 2rem;
  z-index: 10000;
  color: var(--color-black);
}


.text {
  letter-spacing: 1.7px;
  text-transform: uppercase;
  font-family: 'Orbanist';
  filter: invert(1);
}

#rotatingText {
  animation-name: rotate-circle;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rotate-circle {
  to {
    transform: rotate(1turn);
  }
}

.text-rotate {
  position: absolute;
  top: 1rem;
  z-index: 10;
  opacity: 0;
  filter: blur(3px);
  width: 97.5%;
  mix-blend-mode: difference;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero p {
  width: 50%;
  text-align: center;
}


.contact {
  height: 100vh;
  position: relative;
  text-align: center;
  /* padding-top: 10rem;

  top: 50%;
  left: 50%;
  margin: 2rem;
  transform: translate(-50%, -50%) translateY(0) scale(1); */
}





@media (max-width: 900px) {
  h1 {
    font-size: 20vw;
  }

  .hero p {
    width: 100%;
  }

  .about {
    padding: 4em 2em;
    flex-direction: column;
    gap: 4em;
  }

  .about-copy {
    flex: 0.5;
  }

  .about-img {
    margin-top: 4em;
    height: 100%;
  }

  .copy {
    width: 90%;
  }

  .copy h1 {
    font-size: 10vw;
  }
}
