.hero-section {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  background: var(--gradient-bg);
  margin: 0;
  box-sizing: border-box;
  gap: 6rem;
  padding: 80px 2rem 0;
}

.hero-content {
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}

.hero-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto 2rem;
  border: 4px solid transparent;
  background: transparent;
  padding: 4px;
  transition: transform 0.3s ease;
  box-shadow: var(--glow-shadow);
  animation: avatarFloat 3s ease-in-out infinite;
}

.hero-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-quote {
  font-style: italic;
  color: #bd0045;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 400px;
}

.hero-quote small {
  color: #cccccc !important;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.8);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-size: 1.4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-link:hover {
  color: black;
  transform: translateY(-6px);
  box-shadow: var(--glow-shadow);
}

.social-link:hover::before {
  left: 0;
}

.social-link i {
  transition: transform 0.3s ease;
}

.social-link:hover i {
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    gap: 2rem;
    padding: 100px 1rem 2rem;
    min-height: 100vh;
  }

  .hero-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .hero-left {
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-right {
    order: 2;
    gap: 1.5rem;
  }

  .hero-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-quote {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .social-links {
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
  }

  .social-link {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 90px 1rem 2rem;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-quote {
    font-size: 0.9rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}
