
.hero-section {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 80px); 
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #e3e3e3;
  padding: 0 80px 40px 80px;
  
}


.bg-text-container {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  font-size: 6vw; 
  font-weight: 900;
  letter-spacing: -2px;
  z-index: 1; 
  white-space: nowrap;
  pointer-events: none;
}

.bg-text-outline {
  color: transparent;
  -webkit-text-stroke: 2px #111111;
}

.bg-text-solid {
  color: #111111; 
}


.hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between; 
  align-items: flex-end;
  z-index: 3; 
  margin-bottom: 40px;
}


.left-content {
  max-width: 350px;
}

.left-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111111;
}

.left-content p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-collaborate {
  display: inline-block;
  background-color: #111111;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 500;
}


.right-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #111111;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #f9f9f9;
  border-color: #111111;
}

.picture {
  position: absolute;
  bottom: 0;
  right: 80px; 
  z-index: 2; 
}
.profile-picture {
  width: 475px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
 transform: translateY(60%);
 transform: translateX(-55%);
 margin-bottom: -100px;
}

/* --- EFEK REVEAL (KEADAAN AWAL) --- */
.reveal-element {
  opacity: 0;
  transform: translateY(40px); /* Elemen agak turun ke bawah di awal */
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform; /* Optimalisasi performa browser */
}

/* --- KEADAAN SETELAH DI-SCROLL (MUNCUL) --- */
.reveal-element.active {
  opacity: 1;
  transform: translateY(0); /* Elemen kembali ke posisi asli */
}