/* ========== LANDING PAGE LAYOUT ========== */

#landing-section {
  display: flex;
  min-height: 90vh;
}

.flower-side {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flower-side img {
  max-width: 300px;
  height: auto;
}

.content-side {
  width: 70%;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.title-content h1 {
  font-size: 3rem;
  margin: 0;
  color: var(--incubation-gray-100);
}

.title-content p {
  font-size: 1.2rem;
  color: var(--incubation-gray-300);
  margin-top: 1rem;
}

#explanation-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  height: 80vh;
  margin: auto;
  text-align: center;
}

.explanation-content {
  display: block;
}

.explanation-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.explanation-content p {
  font-size: 1.1rem;
  color: var(--incubation-gray-200);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 480px) {
  #landing-section {
    flex-direction: column-reverse; /* key part! */
    align-items: center;
    min-height: 0;
  }

  .flower-side,
  .content-side {
    width: 100%;
  }

  .flower-side img {
    max-width: 200px;
    margin: 1rem 0;
  }

  .content-side {
    padding: 1rem;
  }

  .title-content h1 {
    font-size: 2.2rem;
  }

  .title-content p {
    font-size: 1rem;
  }

  .column-guide {
    display: none !important;
  }

  .nav-line-item {
    margin: auto;
  }
}
