.hero {
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* overflow: hidden; */
  padding: 0 1rem;
  /* padding-top: 30px; */
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://raw.githubusercontent.com/gigihko/web-portofolio/main/static/background-image.jpg') center/cover no-repeat;
  filter: brightness(0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero-content h1,
.hero-content p {
  color: #ffffff !important;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.hero-content h2,
.hero-content p {
  color: #ffffff !important;
}
.hero-content h2 {
  font-size: 2rem;
  font-weight: 500;
}
.hero-content p {
  font-size: 1.2rem;
}
.profile-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero::before {
    background-position: center top;
    background-size: cover;
  }
}
