.project-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6%;
  /* background: radial-gradient(circle at top, #1a1a22, #0b0b0e); */
  color: #fff;
}

.project-hero-inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  justify-content: center;
}


.hero-top {
  display: flex;
  align-items: center;
  gap: 32px;
}


.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* AVATAR */
.hero-avatar {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg,#B16CEA,#FF5E69,#FF8A56);
}

.hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #000;
}

/* HI BADGE */
.hero-wave {
  position: absolute;
  left: -12px;
  bottom: 32px;
  background: linear-gradient(135deg,#8b5cf6,#ff8a00);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  border: solid black 4px;
}

/* CONTENT */
.hero-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 18px;
  margin-left: 30px;
}

.hero-title span {
  background: linear-gradient(90deg,#B16CEA,#FF5E69,#FF8A56);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  max-width: 900px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #FCFCFC;
}


/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.hero-btn {
  padding: 20px 34px;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  
  transition: .3s ease;
}

/* PRIMARY */
.hero-btn.primary {
  background: linear-gradient(135deg,#8b5cf6,#ff8a00);
  color: #fff;
}

.hero-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}

/* SECONDARY */
.hero-btn.secondary {
  background: transparent;
  padding: 20px 36px;
  color: #fff;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#0b0b0e,#0b0b0e) padding-box,
    linear-gradient(90deg,#B16CEA,#FF5E69,#FF8A56) border-box;
}

.hero-btn.secondary:hover {
  background:
    linear-gradient(#15151d,#15151d) padding-box,
    linear-gradient(90deg,#B16CEA,#FF5E69,#FF8A56) border-box;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .project-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-avatar {
    margin: 0 auto;
    width: 260px;
    height: 260px;
  }

  .hero-desc {
    margin: 0 auto 28px;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .hero-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
    margin-left: 0;
  }

  .hero-desc {
    font-size: 18px;
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .hero-avatar {
    width: 220px;
    height: 220px;
  }
}
