@charset "UTF-8";

:root {
  --text-color: rgb(215, 230, 248);
  --background-color: rgb(147, 155, 172);
}

@font-face {
  font-family: "Koz";
  src: url("./fonts/cmunti.ttf") format("truetype");
  /* Add more formats if needed */
  font-weight: normal;
  font-style: normal;
}

.blur-overlay {
  z-index: 1000;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  height: 7%;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(4, 25%);
}

.blur-column {
  width: 100%;
  height: 100%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    0deg,
    /* rgba(2, 0, 36, 1) 0%, */ rgba(215, 230, 248, 1) 0%,
    rgba(9, 9, 121, 0) 100%
  );
}

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

html,
body {
  margin: 0;
  height: 100%;
  background: black;
  overflow: hidden;
  line-height: 1;
  cursor: none;
}

#custom-cursor {
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("./images/cursor.svg");

  background-size: cover;
  pointer-events: none;

  transform: translate(-50%, -50%);

  filter: drop-shadow(0 0 3px rgba(215, 230, 248, 0.7));
  z-index: 9999;
  transition: filter 0.3s ease;
}

#app {
  --n-columns: 0;
  /* font-size: 1.5em; */
  height: 100%;
  width: 100%;
  background-color: var(--background-color);
  display: flex;
  flex-direction: row;
  /* font-family: "Koz", serif; */
  font-size: 16px;
}

h1 {
  font-family: "Koz", serif;
  font-size: 18vw;
  /* line-height: 1; */
  color: var(--text-color);
  /* margin: 10px; */
  /* padding: 0.3em 0em; */
  text-align: center;
  text-shadow: 0 0 30px rgba(215, 230, 248, 0.7);
}
.large-box {
  position: relative;
  text-align: center;
  justify-content: center;
  margin: 14vh 0px 10vh 0px;
}
.margin-bottom {
  /* width: 100vw; */
  /* height: 13vh; */
  padding: 8vh 0px;
  /* background-color: black; */
}
.spacing {
  letter-spacing: -1vw;
}

h2 {
  font-family: "Koz-Bold", serif;
  font-size: 3.7em;
  line-height: 1;
  color: var(--text-color);
  margin: 10px;
}

h3 {
  font-family: "Koz", serif;
  font-size: 2.4em;
  /* margin-top: 10px;
  margin-bottom: 10px; */
  color: var(--text-color);
  margin: 10px;
  /* position: sticky; */
}
.title {
  margin: 20px;
}

h4 {
  font-family: "Koz-Bold", serif;
  font-size: 2.9em;
  color: var(--text-color);
  margin: 10px;
}
h5 {
  font-family: "Koz", serif;
  font-size: 3em;
  color: var(--text-color);
  margin: 10px;
}

p {
  font-family: "Koz", serif;
  line-height: 1.15;
  font-size: 1.15em;
  color: var(--text-color);
}

.p1 {
  margin: 10px;
  /* text-indent: 20px; */
}

.p2 {
  justify-content: center;
  /* text-align: center; */
  font-size: 1.7em;
  margin: 10px;
}
.second-p {
  text-indent: 20px;
}

#common {
  pointer-events: none;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

#common > * {
  opacity: 0;
  position: absolute;
}

#common > .active {
  opacity: 1;
}

#common > .active > * {
  pointer-events: auto;
}

.column {
  --index: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow: hidden scroll;
}

.column .instance {
  width: 100vw;
  transform: translateX(calc((-100vw / var(--n-columns)) * var(--index)));
}
/* .instance.active {
  background-color: red;
} */

.link {
  pointer-events: none;
}
.active .link {
  pointer-events: all;
}

.active .buttonBig {
  background-color: var(--text-color);
  color: var(--background-color);
  text-shadow: 0 0 30px rgba(215, 230, 248, 0.7);
  box-shadow: 0 0 30px rgba(215, 230, 248, 0.7);
  cursor: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* .buttonBig:hover {
  cursor: url("./images/cursor2.svg");
}

#custom-cursor:hover {
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("./images/cursor2.svg");
  background-size: cover;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgb(147, 155, 172));
}

.active .buttonBig:hover {
  cursor: url("./images/cursor2.svg");
}

.active #custom-cursor:hover {
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("./images/cursor2.svg");
  background-size: cover;
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgb(147, 155, 172));
} */

.active .image-container1 {
  box-shadow: 0 0 30px rgba(215, 230, 248, 0.7);
}
.active .p2 {
  text-shadow: 0 0 30px rgba(215, 230, 248, 0.7);
}

.columns2 {
  position: relative;
  width: 33vw;
  transform: translateX(-50%);
  left: 25vw;
  /* left: 25vw; */
  /* margin: 0px 10px; */
}
.columns3 {
  width: 66.6vw;
}
.columns4 {
  width: 100vw;
}
.columns5 {
  width: 50vw;
  /* padding: 10px; */
}
.columns6 {
  position: relative;
  width: 48vw;
  /* transform: translateX(-50%); */
  left: 50vw;
}

.buttonBig {
  position: relative;
  z-index: 1;
  /* left: 25vw; */
  background-color: var(--background-color);
  transform: translateX(-50%);
  font-family: "Koz-Bold", serif;
  font-size: 2.8em;
  color: var(--text-color);
  /* margin: 10px; */
  line-height: 1;
  border-radius: 100%;
  border: 2px solid var(--text-color);
  padding: 1em 1.2em 1em 1.2em;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 0 10px rgba(215, 230, 248, 0.7);
  cursor: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button1 {
  left: 25vw;
}
.button2 {
  left: 50vw;
}
.button3 {
  left: 75vw;
}

.image-container {
  width: 17vw;
  position: relative;
  height: 20vw;
  margin-top: 20px;
  margin-bottom: 20px;
  transform: translateX(-50%);
  left: 49%;
  /* border-radius: 100%; */
  /* border: 2px solid var(--text-color); */
  /* box-shadow: 0 0 10px rgba(215, 230, 248, 0.7); */
}
.image-container1 {
  width: 25vw;
  position: relative;
  left: 75vw;
  transform: translateX(-50%);
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 100%;
  border: 2px solid var(--text-color);
  box-shadow: 0 0 10px rgba(215, 230, 248, 0.7);
}
.image-container2 {
  width: 20vw;
  position: relative;
  left: 25vw;
  transform: translateX(-50%);
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 100%;
  border: 2px solid var(--text-color);
  box-shadow: 0 0 10px rgba(215, 230, 248, 0.7);
}

.img-home {
  width: 100%;
  height: auto;
  border-radius: 100%;
  border: 2px solid var(--text-color);
}

.popup {
  display: none;
  position: relative;
  z-index: 1000;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -5;
  /* filter: blur(10px); */
  backdrop-filter: blur(2px);
}
.popup.active,
.overlay.active {
  display: block;
}
.close-popup {
  position: fixed;
  top: 0%;
  right: 0%;
  /* transform: translate(-50%, -50%); */
  width: 30px;
  height: 30px;
  margin: 20px;
  cursor: none;
  background: none;
  border: none;
}
.close-popup::before,
.close-popup::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: var(--text-color);
  top: 50%;
  left: 50%;
  /* box-shadow: 10px 10px 10px rgba(215, 230, 248, 0.7); */
}
.close-popup::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-popup::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.only-mobile {
  display: none;
}

::-webkit-scrollbar {
  display: none;
}
/*firefox*/
* {
  scrollbar-width: none;
}

@media (max-width: 600px) {
  body {
    cursor: none;
  }
  #custom-cursor {
    background-image: none;
  }
  .mission-frame {
    width: 80vw;
    height: 60vh;
  }
  #container {
    width: 77vw;
    height: 57vh;
  }
  .beliefs-frame {
    width: 80vw;
    height: 60vh;
  }
  .history-frame {
    width: 80vw;
    height: 60vh;
  }
  .my-img {
    width: 25vw;
  }
  .img-container {
    transform: translate(-50%, -50%);
    width: 70vw; /* Adjust to your desired width */
  }
  h1 {
    font-size: 27vw;
    text-shadow: 0 0 10px rgba(215, 230, 248, 0.7);
  }
  h2 {
    font-size: 10vw;
  }
  h3 {
    font-family: "Koz", serif;
    font-size: 7vw;
  }
  h4 {
    font-family: "Koz", serif;
    font-size: 8vw;
  }
  h5 {
    font-family: "Koz", serif;
    font-size: 7vw;
  }
  .p1 {
    font-size: 4.5vw;
  }
  .large-box {
    margin: 15vh 0px;
  }
  #column3 {
    display: none;
  }
  #column4 {
    display: none;
  }
  #column2 .columns4 {
    position: relative;
    transform: translateX(-50%);
    left: 25vw;
  }
  #column2 .columns5 {
    position: relative;
    transform: translateX(-50%);
    left: 20vw;
  }
  .columns5 {
    width: 90%;
  }

  .image-container {
    position: relative;
    transform: translateX(-50%);
    left: 24vw;
    width: 18vw;
  }
  #column1 .image-container2 {
    position: relative;
    transform: translateX(-50%);
    left: 25vw;
  }
  .image-container2 {
    width: 18vw;
  }
  .image .buttonBig {
    font-size: 2.3em;
  }
  .button1 {
    left: 40vw;
  }
  #column2 .button1 {
    left: 15vw;
  }
  .button2 {
    left: 60vw;
  }
  #column2 .button2 {
    left: 35vw;
  }
  .button3 {
    left: 50vw;
  }
  #column2 .button3 {
    left: 25vw;
  }
  .not-mobile {
    display: none;
  }
  .image-container {
    width: 45vw;
    height: 50vh;
  }
  .img-home {
    width: 45vw;
  }

  .only-mobile {
    display: flex;
  }
}
