/* ========== PAGE 1 – HERO ========== */

.hero {
  min-height: 100vh;
  background: #f4b740;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 96px 6% 40px; /* top/right-left/bottom */
}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Dancing Script", cursive;
  font-weight: 700;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.hero-avatar {
  width: 250px;
  margin-bottom: 25px;
}

/* ========== RESPONSIVE – PAGE 1 ========== */
@media (max-width: 1000px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-avatar{
  width: min(250px, 70vw);
  height: auto;
  }
}

