.home-hero {
  

  display: flex;
  align-items: flex-start;   /* 🔑 asta mută sus */
  justify-content: center;

  padding-top: 0px;
  padding-bottom: 60px;        /* spațiu sub navbar */
}


.hero-content {
  width: 100%;
  max-width: 1200px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 250px;
}
.hero-text {
  order: 1;
}

.hero-mascot {
  order: 2;
}


/* Mascot */
.hero-mascot img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* Text */
.hero-text h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;

  text-transform: uppercase;
  letter-spacing: 2px;

  background: linear-gradient(90deg, #ffffff, #ff6a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
