@charset "UTF-8";

@font-face {
  font-family: "MNKYBananaGroteskVF";
  src: url("../fonts/MNKYBananaGroteskVF-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "MNKYBananaGroteskVF", cursive;
  background: black;
  margin: 0;
  padding: 0;
  color: white;
  overflow-x: hidden;
  cursor: crosshair;
  height: 2000vh;
}

/* Intro Scattered Letters */

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

.random-letter {
  text-align: center;
  margin-left: 1rem;
  margin-right: 1rem;
}

.random-letter span.space {
  display: inline-block;
  width: 0.2em; /* I can adjust */
  transform: none !important;
}

h1 {
  position: fixed;
  font-size: 5em;
}

/* Base - desktop/laptop */
.blurry-text {
  height: 90vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9.5vw;
  position: relative;
  text-align: center;
  color: white;
  padding: 2rem;
  filter: non;
  transition: filter 1s ease;
  text-shadow: 0 0 8px black, 0 0 10px black, 0 0 15px black;
  animation: blackGlowPulse 3s infinite ease-in-out;
  /* filter: blur(5px); */
  /* transition: filter 1s ease, color 1s ease; */
}

/* On desktop, blur only on hover */
@media (min-width: 2000px) {
  .blurry-text {
    filter: blur(5px);
  }
}

/* Mobile default blurred */
@media (max-width: 2000px) {
  .blurry-text {
    filter: blur(5px);
    cursor: default;
  }
}
/* .blurry-text:hover {
  filter: blur(5px);
  color: white;
} */

/* _________________IMAGE BACKGROUND_________________ */

.image-background {
  position: relative;
  height: 20vh;
  overflow: visible;
}

.image-background img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* ------------STICK TEXT SECTIONS--------- */

.slide-section {
  position: relative;
  margin: 0;
}

.sticky-text {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 100dvh;
  /* background-color: rgba(0, 0, 0, 0.9); */
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* height: 100%; */
  font-size: clamp(1.5rem, 6vw, 4rem);
  text-shadow: 0 0 18px black, 0 0 20px black, 0 0 25px black;
  margin-left: 5rem;
  margin-right: 5rem;
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}

.sticky-text text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.sticky-text.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

/* .sticky-text text p {
  margin: 0;
  max-width: 90%;
  font-size: 2.5vw;
  line-height: 1.4;
} */

/* .sticky-text h2 {
  font-size: 2em;
  margin: 0 0 1rem 0;
} */

/* ------------SLIDERS SECTIONS--------- */

.container-slider {
  box-sizing: border-box;
  position: relative;
  z-index: 200;
  width: 100%; /*DO NOT CHANGE */
  height: 100dvh;
  overflow: hidden;
  /* margin-bottom: 50px; */
}

.image-slider {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.image-slider .entry-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image-slider .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
/* .transp {
  opacity: 0.9;
} */
