@import url(./Root.css);

body {
  background-color: var(--bg_color);
  font-family: var(--en_font);
}

.container {
  width: 100%;
  height: 100vh;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
}

.container .page_part {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
}

/* ================================================== */
/* Page One Styles */

.page_part .page_one {
  position: relative;
  width: 100%;
  height: 100%;
}

.page_one .images_section {
  width: 100%;
  height: 100%;
  background-image: url("../Images/SpaceImg.jpg");
  background-size: cover;
}

.images_section .titles-sections {
  position: absolute;
  left: 50px;
  top: 100px;
  animation: float 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.titles-sections img {
  width: 250px;
  filter: drop-shadow(0 5px 15px rgba(10, 10, 10, 0.53));
}

.titles-sections p {
  max-width: 600px;
  font-size: 22px;
  font-weight: 400;
  padding: 5px 0 0 15px;
  color: white;
  filter: drop-shadow(0 5px 15px rgba(10, 10, 10, 0.712));
  line-height: 1.3;
}

.titles-sections .btn-wrapper {
  position: relative;
  margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.btn-wrapper a {
  text-decoration: none;
  height: 56px;
  width: 300px;
  padding: 8px 16px;
  background-color: #009029;
  border: 2px solid #ffffff94;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-wrapper a i {
  font-size: 24px;
}

.btn-wrapper button:hover {
  background-color: #00691e;
}

.btn-wrapper button i {
  margin-left: 10px;
}

.btn-wrapper img {
  position: absolute;
  top: -40px;
  left: 250px;
  width: 100px;
}
/* ================================================== */
/* Page Two Styles */

.page_part .page_two {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url("../Images/EARTH.png");
  background-size: cover;
}

.page_two .logo {
  position: absolute;
  right: -350px;
  top: -150px;
}

.logo img {
  width: 1000px;
  opacity: 0.1;
}

.page_two .content-page-two {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  padding: 60px 90px;
}

.content-page-two h2 {
  font-family: var(--bruno-font);
  font-size: 48px;
  font-weight: 400;
  color: white;
}

.content-page-two > p {
  font-family: var(--inter-font);
  max-width: 100%;
  font-size: 24px;
  font-weight: 400;
  color: white;
  filter: drop-shadow(0 5px 15px rgba(10, 10, 10, 0.712));
  line-height: 1.3;
}

.content-page-two .card-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 45px;
}

.level-card {
  flex: 1;
  width: 356px;
  height: 415px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid white;
}

.level-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

.card-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../Images/BOARD.svg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.image1 {
  background: url("../Images/eva-level.jpg") no-repeat center center / cover;
}

.image2 {
  background-image: url("../Images/cupola-level.jpg");
  background-position: top;
  background-size: auto;
}

.image3 {
  background: url("../Images/nbl-level.png") no-repeat center center / cover;
}

.card-content {
  width: 100%;
  height: 45%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 25px;
  background: linear-gradient(0deg, #000000, transparent);
  z-index: 2;
}

.level-card:hover .card-background {
  opacity: 0.9;
}

.card-title {
  font-family: var(--bruno-font);
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
  user-select: none;
}

.card-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, transparent);
  margin: 8px 0;
}

.card-description {
  font-family: var(--inter-font);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-align: left;
  font-weight: 200;
  user-select: none;
}
/* ================================================== */
/* Page Three Styles */

.page_part .page_three {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_three .page-three-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.page-three-container .team {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0 0 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  z-index: 11;
}

.team .about {
  font-family: var(--inter-font);
  font-size: 21px;
  font-weight: 500;
  color: white;
  filter: drop-shadow(2px 5px 5px #000);
}

.team .team-name {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
  filter: drop-shadow(2px 5px 5px #000);
}

.team .description {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
  max-width: 565px;
  filter: drop-shadow(2px 5px 5px #000);
}

.page-three-container .scroll-up,
.page-three-container .scroll-down {
  background-color: transparent;
  animation: float 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 16px;
  color: white;
  filter: drop-shadow(2px 5px 5px #000);
  cursor: pointer;
  user-select: none;
}

.page-three-container .scroll-up p,
.page-three-container .scroll-down p {
  cursor: pointer;
}

.page-three-container .scroll-up {
  left: 50%;
  top: 20px;
}

.page-three-container .scroll-down {
  left: 50%;
  bottom: 20px;
}

#model-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 10, 20, 0.397);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: opacity 0.5s ease;
}

#model-loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

#model-loading p {
  color: #fff;
  margin-top: 15px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #00aaff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

/* ================================================== */
/* Page Four Styles */

.page_part .page_four {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page-four-container {
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.page-four-container h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-four-container p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
  max-width: 711px;
}

.page-four-container .image-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
}

.page-four-container .image-wrapper img {
  width: 266px;
  height: 225px;
  object-fit: cover;
  border-radius: 31px;
}

/* ================================================== */
/* Page Five Styles */

.page_part .page_five {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page_five .page-five-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 80px;
  padding: 50px;
}

.page-five-container .left-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 75px;
}

.left-side .titles {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.left-side .titles h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.left-side .titles p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
  max-width: 575px;
}

.left-side img {
  width: 830px;
  height: 246px;
  border-radius: 24px;
  object-fit: cover;
}

.right-side img {
  width: 290px;
  height: 514px;
  border-radius: 24px;
  object-fit: cover;
}

/* ================================================== */
/* Page Six Styles */

.page_part .page_six {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page_six .page-six-container {
  width: 100%;
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}

.page-six-container .image-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 35px 31px;
}

.page-six-container .image-gallery img {
  width: 188px;
  height: 189px;
  border-radius: 24px;
  object-fit: cover;
}

.page-six-container .image-gallery img:nth-child(4) {
  width: 625px;
  grid-column: 1 / -1;
}

.page-six-container .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.page-six-container .content h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-six-container .content p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
  max-width: 575px;
  line-height: 32px;
}

.page-six-container .tags {
  position: absolute;
  bottom: 68px;
  right: 68px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.page-six-container .tags img {
  width: 76px;
  aspect-ratio: 1/1;
}

/* ================================================== */
/* Page Seven Styles */

.page_part .page_seven {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page_seven .page-seven-container {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 28px;
}

.page-seven-container h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-seven-container .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  max-width: 612px;
}

.page-seven-container .content p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.page-seven-container .image-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.page-seven-container .image-gallery img {
  width: 400px;
  height: 188px;
  border-radius: 24px;
  object-fit: cover;
}

/* ================================================== */
/* Page Eight Styles */

.page_part .page_eight {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page_eight .page-eight-container {
  width: 100%;
  padding: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 100px;
}

.page-eight-container .content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  max-width: 625px;
}

.page-eight-container .content h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-eight-container .content p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.page-eight-container .level-card {
  flex: none;
  width: 410px;
  height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 1px solid white;
}

.page-eight-container .level-card .card-content {
  width: 100%;
  height: 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 25px;
  background: linear-gradient(0deg, #000000, transparent);
  z-index: 2;
}

/* ================================================== */
/* Page Nine Styles */

.page_part .page_nine {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.page_nine .page-nine-container {
  width: 100%;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.page-nine-container h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-nine-container p {
  font-family: var(--inter-font);
  font-size: 20px;
  font-weight: 400;
  color: white;
}

.page-nine-container .video-wrapper {
  height: 550px;
  overflow: hidden;
  width: 100%;
  background: #000;
  border-radius: 24px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* ================================================== */
/* Page Final Styles */

.page_part .page_final {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  background-image: url(../Images/EARTH.png);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.page_final .page-final-container {
  width: 100%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
}

.page-final-container h2 {
  font-family: var(--bruno-font);
  font-size: 60px;
  font-weight: 700;
  color: white;
}

.page-final-container ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  max-height: 500px;
  color: white;
  padding: 10px 30px;
}

.page-final-container ul li a {
  font-family: var(--inter-font);
  font-size: 24px;
  font-weight: 600;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
