
body {
  margin: 0;
  background: #000000;
  font-family: 'Inter Tight', sans-serif;
  overflow-x: hidden;
}

.heading-section {
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-heading {
  font-size: clamp(60px, 20vw, 240px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: rgb(255, 255, 255);

  opacity: 0;
  transform: translateY(150px);
  transition: all 1s ease-out;
}

.hero-heading.visible {
  opacity: 1;
  transform: translateY(0);
}


.about-section {
  padding: 60px 20px;
  background-color: rgb(255, 255, 255);
  font-family: 'Inter Tight', sans-serif;
}

.about-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  width: 500px;
}

.about-image img {
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}


.about-text {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  text-align: left;
}

.person-name {
  font-size: 36px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

.bio-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgb(0, 0, 0);
}

.cta-button {
  font-size: 28px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.underline {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: rgb(0, 0, 0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cta-button:hover .underline {
  transform: scaleX(1);
}





/* Responsive behavior */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}
