@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomIn {
  from {
    transform: scale(0.6);
    opacity: 0.8;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomOut {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.2);
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.3s ease-out 0s forwards;
}

.fade-out {
  opacity: 1;
  animation: fadeOut 0.3s ease-out 0s forwards;
}

.page-enter {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.page-enter.active {
  opacity: 1;
}

.page-exit {
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.page-exit.active {
  opacity: 0;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  position: relative;
}

.home-link-container {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.home-link {
  color: #ffffff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}
.home-link:hover {
  opacity: 0.8;
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
  height: 100%;
}

#main-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/home.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  will-change: background-image;
  transition: background-image 0.3s ease-out;
}
#main-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  z-index: -1;
}

.navigation-container {
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 16.6666666667%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-container {
  margin-left: calc(16.6666666667% + 24px);
  width: calc(83.3333333333% - 24px);
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.secondary-image-container {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 4;
  pointer-events: none;
}

.secondary-image {
  height: auto;
  width: 553px;
  opacity: 0;
  border-radius: 8px;
  transform: translateX(30px);
  will-change: opacity, transform;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.secondary-image.entering {
  opacity: 0;
  transform: translateX(30px);
}
.secondary-image.visible {
  opacity: 1;
  transform: translateX(0);
}
.secondary-image.leaving {
  opacity: 0;
  transform: translateX(30px);
}
.secondary-image.zoom-out {
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform: scale(1.2);
  opacity: 0;
}

.nav-main-description-container {
  position: fixed;
  left: 26%;
  top: 55%;
  transform: translate(0, -50%);
  width: 25%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}
.nav-main-description-container.visible {
  opacity: 1;
}

.nav-main-description {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.3;
  margin: 0;
}

.nav-description-container {
  position: fixed;
  left: 60%;
  top: 25%;
  transform: translate(-50%, -50%);
  width: 40%;
  margin-top: 60px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}
.nav-description-container.visible {
  opacity: 1;
}

.nav-description {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.transition-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.transition-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.transition-image.zooming-in {
  position: absolute;
  height: 500px;
  width: auto;
  right: 40px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  opacity: 0.8;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, width 0.3s ease-out, height 0.3s ease-out, right 0.3s ease-out, top 0.3s ease-out;
}
.transition-image.zoomed-in {
  width: 83.3333333333%;
  height: auto;
  right: auto;
  top: 50%;
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

#page-content {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
#page-content.visible {
  opacity: 1;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
}

#main-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/home.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: background-image;
}
#main-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.01);
  z-index: -1;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  align-items: flex-start;
}

.nav-item {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(186, 186, 186, 0.2);
  cursor: pointer;
  text-align: left;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
  white-space: nowrap;
}
.nav-item:hover, .nav-item.active {
  background-color: transparent;
  border-color: #ffffff;
}
.nav-item.active {
  font-weight: 700;
}

.fade-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  will-change: opacity, transform;
  backface-visibility: hidden;
  perspective: 1000;
}

.fade-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

h1 {
  font-size: 64px;
  margin-bottom: 20px;
  color: #ffffff;
}

.intro {
  font-size: 48px;
  margin-bottom: 40px;
  max-width: 1000px;
  line-height: 1.2;
  font-weight: 400;
}

p:not(.intro) {
  font-size: 16px;
  max-width: 800px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.content-container {
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

body {
  background-color: black;
}

.content-image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.page-title {
  margin: 2rem 0;
  font-weight: 700;
}

.vertical-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
}/*# sourceMappingURL=main.css.map */