@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'Hackney Vector';
  src: url('../fonts/Hackney-Vector.woff2') format('woff2'),
      url('../fonts/Hackney-Vector.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

::selection {
  background: transparent;
  color: inherit;
}

/* a, button {
  cursor: none !important;
} */

#loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  background: #000000;
}

@keyframes textBounce {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

#loader > div p {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 50px;
  color: #FFFFFF;
  margin-top: 250px;
  letter-spacing: 1px;
  -webkit-animation: textBounce 3s infinite;
  -moz-animation: textBounce 3s infinite;
  animation: textBounce 3s infinite;
}



body {
  background: #000000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Hackney Vector';
  cursor: none;
}


.custom-cursor {
  position: fixed;
  width: 50px; /* Adjust size as needed */
  height: 50px; /* Adjust size as needed */
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.35); /* Semi-transparent black */
  pointer-events: none; /* Prevent cursor from interfering with clicks */
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background-color 0.2s ease;
}

/* Add hover effect for interactive elements */
button:hover ~ .custom-cursor,
button:active ~ .custom-cursor,
a:hover ~ .custom-cursor,
.step-choices > .item:hover ~ .custom-cursor {
  background-color: rgba(200, 16, 46, 0.8); /* Change color on hover */
  transform: scale(1.2) translate(-50%, -50%);
}

#app-holder {
  position: relative;
  width: 100%;
  max-width: 1080px;
  overflow-x: hidden;
  display: block;
  margin: 0 auto;
}

.container {
  max-width: 1080px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.blkBg {
  background: #000000;
}


/*
* INTRO
*/
#intro .intro-overlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.3); */
  text-align: center;
  z-index: 1;
}

#intro .intro-overlay div {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

#intro .intro-overlay div img {
  display: block;
  margin: 0 auto;
  min-width: 811px;
  height: auto;
  max-width: 100%;
}

#intro .intro-overlay div img:first-child { 
  margin-top: 138px;
}

#intro button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 250px;
  width: 884px;
  height: 182px;
  display: block;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 100px;
  border: 0;
  font-size: 80px;
  font-weight: bold;
  color: #000000;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  transition: 0.3s linear;
}


#intro button:active,
#intro button:visited,
#intro button.active {
  background-color: #C8102E;
  color: #FFFFFF;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.header-video-overlay-container {
  background-color: red;
}
.overlay-text h2 {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  font-size: 157px;
  font-style: italic;
}


/*
* STEPS
*/
.step-choices > .item {
  display: block;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.step-choices > .item > div {
  display: flex;
  align-items: center;
  width: 1080px;
  height: 408px;
}
  .step-choices > .item p {
    font-size: 95px;
    color: #FFFFFF;
    margin: 0 auto;
    z-index: 1;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .step-choices > .item img {
    position: absolute;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }
    .step-choices > .item.active img {
      -webkit-filter: invert(1);
      -moz-filter: invert(1);
      filter: invert(1);
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      transform: scale(1.2);
      -webkit-transition: transform 0.5s ease, filter 0.5s ease;
      -moz-transition: transform 0.5s ease, filter 0.5s ease;
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .step-choices > .item.active p {
      color: #000000;
      -webkit-filter: drop-shadow(0px 0px 10px white);
      -moz-filter: drop-shadow(0px 0px 10px white);
      filter: drop-shadow(0px 0px 10px white);
    }