@import url('https://fonts.cdnfonts.com/css/chronicle-display');
@import url('./font.css');

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

body, html {
  font-family: "Chronicle Display", sans-serif;
  background-color: #0B1D26;
  user-select: none;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 32px 40px;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

header ul {
  display: flex;
  gap: 40px;
  list-style: none;
  font-family: "Gilroy", sans-serif;
  color: #fff;
  font-weight: 700;
}

header ul li {
  cursor: pointer;
}

header ul li:hover {
  text-decoration: underline;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 180vh;
}

.HG, .MG, .VG {
  position: absolute;
  width: 100%;
  object-fit: cover;
  transition: 1s ease;
}

.HG {
  top: 0;
  right: 0;
  z-index: 2;
  animation: infiniteSky 10s linear infinite;
}

.MG {
  top: 150px;
  right: 0;
  z-index: 3;
  animation: fadeup 0.6s ease forwards;
}

.VG {
  top: 500px;
  right: 0;
  z-index: 4;
  animation: fadeup 0.6s ease forwards;
  animation-delay: 150ms;
  filter: blur(10px);
  transform: translateY(300px);
}

@keyframes infiniteSky {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fadeup {
  from {
    filter: blur(10px);
    transform: translateY(300px);
  }

  to {
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes blurDisplay {
  from {
    filter: blur(5px);
  }

  to {
    filter: blur(0);
  }
}

@keyframes spin {
  0% {
    filter: blur(10px);
    transform: rotate(0deg);
  }

  100% {
    filter: blur(0);
    transform: rotate(360deg);
  }
}

.arrow-dawn {
  animation: spin 1s ease forwards;
}

.fadeUp.show {
  filter: blur(0);
  transform: translateY(0);
}

.blur-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Covers entire container */
  background: linear-gradient(330.24deg, rgba(11, 29, 38, 0) 31.06%, #0B1D26 108.93%);
  z-index: 5; /* Ensures it covers all images */
  pointer-events: none; /* Prevents it from blocking interactions */
}

.blur-dark-bottom {
  position: absolute;
  width: 100%;
  height: 400px;
  left: 0px;
  bottom: 0;
  background: linear-gradient(180deg, #0b1d2600 0%, #0b1d26 71.38%);
  z-index: 5;
}

.hero-welcome {
  position: absolute;
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
  z-index: 6;
  font-family: "Gilroy", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: blurDisplay 0.6s ease forwards;
}

h4 {
  font-weight: 800;
  color: #FBD784;
  display: flex;
  gap: 24px;
  align-items: center;
}

h4 span:nth-child(1) {
  width: 36px;
  height: 2px;
  background-color: #FBD784;
}

h4 span:nth-child(2) {
  font-size: 14px;
  letter-spacing: 4px;
  font-family: "Gilroy", sans-serif;
  text-transform: uppercase;
}

h1 {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 100%;
  font-family: "Chronicle Display", sans-serif;
  font-weight: 300;
  font-size: 64px;
}

p {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  gap: 10px;
  align-items: center;
}

.slider {
  color: #fff;
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  display: flex;
  gap: 16px;
}

.slides {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  left: -19px;
}

.slides .slide {
  text-align: right;
}

.progress-line {
  width: 3px;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: -8px;
  right: 0;
}

.line {
  height: 100%;
  width: 3px;
  background-color: #fff;
}

.section-01 {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 200px;
  position: absolute;
  bottom: -350px;
  z-index: 6;
  flex: 2 1 0%;
}

.section .hero {
  width: 100%;
  z-index: 6;
  font-family: "Gilroy", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section .img-01,
.section .img-02 {
  width: 100%;
  object-fit: cover;
  scale: 0.7;
}

.section .img-03 {
  width: 100%;
  object-fit: cover;
  scale: 0.8;
}

.section .hero h4 {
  font-weight: 800;
  color: #FBD784;
  display: flex;
  gap: 24px;
  align-items: center;
}

.section .hero h4 span:nth-child(1) {
  width: 48px;
  height: 2px;
  background-color: #FBD784;
}

.section .hero h4 span:nth-child(2) {
  font-size: 14px;
  letter-spacing: 4px;
  font-family: "Gilroy", sans-serif;
  text-transform: uppercase;
}

.section .hero h1 {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 100%;
  font-family: "Chronicle Display", sans-serif;
  font-weight: 300;
  font-size: 64px;
}

.section .hero h6 {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 24px;
  color: #fff;
}

.section .hero p {
  font-family: "Gilroy", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FBD784;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  transition: .3s ease;
}

.section .hero p:hover {
  gap: 3px;
  margin-left: 3px;
}

.numbering-01 {
  position: absolute;
  top: 80px;
  left: 100px;
  font-size: 180px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  color: #fff;
  opacity: 0.1;
}

.section-02,
.section-03 {
  display: flex;
  gap: 42px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 100px;
  position: relative;
  bottom: -350px;
  z-index: 6;
  flex: 2 1 0%;
}

.section-03 {
  padding-left: 200px;
}

.numbering-02 {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 180px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  color: #fff;
  opacity: 0.1;
}

.numbering-03 {
  position: absolute;
  top: 90px;
  left: 50px;
  font-size: 180px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  color: #fff;
  opacity: 0.1;
}

.line {
  transform: scaleY(0);
  transform-origin: top;
  animation: scrollWatcher linear;
  animation-timeline: scroll();
}

@keyframes scrollWatcher {
  to {
    transform: scaleY(1);
  }
}


/* animations */

.fadeInLeft {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(-100px);
  transition: all 0.8s ease;
}

.fadeInLeft.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.fadeInRight {
  opacity: 0;
  filter: blur(10px);
  transform: translateX(100px);
  transition: all 0.8s ease;
}

.fadeInRight.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.autoBlur {
  filter: blur(20px);
  transition: all .8s ease;
}

.autoBlur.show {
  filter: blur(0);
}

footer {
  margin-top: 400px;
  padding: 150px 200px;
  display: flex;
  justify-content: space-between;
  height: auto;
}

.hero-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #fff;
  height: 100%;
}

.hero-footer img {
  width: 88px;
}

.hero-footer h3 {
  display: flex;
  flex-direction: column;
  line-height: 26px;
  font-family: "Gilroy", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.hero-footer p {
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.5;
  margin-top: 115px;
}

footer section {
  display: flex;
  gap: 170px;
}

footer section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

footer section ul li {
  font-size: 16px;
  cursor: pointer;
}

footer section ul li:hover {
  text-decoration: underline;
}

footer section ul li:nth-child(1) {
  font-weight: 700;
  color: #FBD784;
  font-size: 20px;
  pointer-events: none;
}
