.homePage .homeFixedContent {
  position: relative;
  margin: 0 auto;
  width: min(900px, 92%);
  text-align: center;
  left: auto;
  top: -70px;
  transform: none;
  padding-top: clamp(48px, 8vw, 140px);
}

.homePage .homeText {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.8;
}

.homePage .homeTextContent {
  max-width: 760px;
  margin: auto;
  text-align: left;
  line-height: 1.85;
  font-size: clamp(18px, 2vw, 22px);
}

.homePage .homeText,
.homePage .homeText p {
  color: #fff !important;
}

.homePage .homeTextContent p {
  margin-bottom: 30px;
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.9),
    0 6px 20px rgba(0, 0, 0, 0.8);
}

.heroTitle {
  text-align: center;
  font-size: clamp(28px, 4.2vw, 40px);
  opacity: 0;
  animation: fadeInTitle 1.2s ease forwards;
}

.fadeText {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInText .9s ease forwards;
}

.fadeText:nth-of-type(2) {
  animation-delay: .5s;
}

.fadeText:nth-of-type(3) {
  animation-delay: .9s;
}

.fadeText:nth-of-type(4) {
  animation-delay: 1.3s;
}

@keyframes fadeInTitle {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .homePage .homeFixedContent {
    width: 100%;
    padding-top: 28px;
  }

  .homePage .homeTextContent {
    line-height: 1.7;
  }
}
