body {
  background-color: #87ceeb;
  height: 100%;
  margin: 0;
}

/* Hero section */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  /* Upper atmosphere on a sunny day at noon */
  background: linear-gradient(
    to bottom,
    #87ceeb 0%,     /* Bright noon sky blue */
    #a8d8f0 20%,    /* Light sky */
    #c2e3f6 40%,    /* Pale sky */
    #d4ebf7 60%,    /* High atmosphere fade */
    #e3f2f8 80%,    /* Very light sky */
    #f0f6fa 100%    /* Almost white horizon */
  );
}

/* Subtle clouds in the noon sky */
.hero::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 70%; 
  opacity: 0.12;
  pointer-events: none;
  background-image: 
    radial-gradient(ellipse at 20% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 45% 45%, rgba(255, 255, 255, 0.4) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 25%, rgba(255, 255, 255, 0.45) 0%, transparent 48%);
}

/* No forest texture needed - we're in the sky */

.over-title {
    font-family: "Fira Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    margin: auto;
    color: #47658a;
    padding-bottom: 0;
    letter-spacing: 50px;
    text-indent: 50px; /* Match your letter-spacing value */
    /* margin-bottom: -5px; */
    font-size: 2rem;
    z-index: 2;
    height: 50%;
    margin-bottom: -25%;
}

.title {
  padding-top: 0;
  font-family: "Ibarra Real Nova", serif;
  font-size: 6rem;
  color: #47658a;
  /* text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 1px 3px rgba(0, 0, 0, 0.4); */
  z-index: 4;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 0;
  height: 50%;
}

.title-container {
  margin: 30%;
  padding-bottom: 50px;
  align-items: center;
}

.cloud-1 {
  position: absolute;
  /* top: -10%;      Position it in the sky */
  width: 1500%;  /* Adjust size as needed */
  z-index: 3;
  
  /* Apply the animation */
  animation: driftClouds 150s linear infinite;
}

@keyframes driftClouds {
  0% {
    transform: translateX(20%); /* Start completely off-screen to the left */
  }
  100% {
    transform: translateX(1vw); /* End completely off-screen to the right */
  }
}

.skyline {
    position: absolute;
    top: -3%;
    width: 100%;
    z-index: 5;
}

/* Transition */

.highest-altitude {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #e3f2f8 0%,     /* Picks up from skyline */
    #c8e4f3 50%,    
    #afd9ed 100%    
  );
}
/* Animations */
@keyframes drift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(2%, 3%);
  }
}

/* Responsive Design */
@media (min-width: 1800px) {
  .deer-hero-image {
    width: 700px;
  }
}

@media (max-height: 950px) {
  .skyline {
    top: -1%;
  }
  .title {
    height: 60%
  }
}

@media (max-width: 890px) {
  .title {
    font-size: 2.5rem;;
  }
  .over-title {
    font-size: 1rem;
    letter-spacing: 25px;
    text-indent: 25px; /* Match your letter-spacing value */
    margin-bottom: -95%;
  }
  .skyline {
    top: 60%;
  }
}