.home-hero {
  

  display: flex;
  align-items: flex-start;   /* 🔑 asta mută sus */
  justify-content: center;

  padding-top: 0px;
  padding-bottom: 20px;        /* spațiu sub navbar */
}


.hero-content {
  width: 100%;
  max-width: 1400px;

  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 120px;
}
.hero-text {
  order: 1;
}

.hero-mascot {
  order: 2;
}


/* Mascot */
.hero-mascot img {
  width: 100%;
  max-width: 780px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

@media (max-width: 900px) {
  .home-hero {
    padding: 32px 18px 56px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    justify-items: center;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-mascot img {
    max-width: 630px;
  }
}

/* Home text card spacing */
#home .blurred-bg {
  margin-top: 0;
}

/* Text */
.hero-text h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;

  text-transform: uppercase;
  letter-spacing: 2px;

  background: none;
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
