/* Index Page Specific Styles */
main {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --gradient-opacity: 0;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(30, 58, 138, var(--gradient-opacity)) 0%, transparent 70%);
  opacity: var(--gradient-opacity);
  transition: opacity 0.3s ease, background-image 0.1s ease;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] main::before {
  background-image: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(59, 130, 246, calc(var(--gradient-opacity) * 1.33)) 0%, transparent 70%);
}

main > * {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 800px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.hero-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--border);
  background-image: url('profile-photo.jpg');
  background-size: cover;
  background-position: center;
  margin: 0 auto 2rem;
  border: 1px solid var(--border);
  overflow: hidden;
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero-name {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-title {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-links {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}

.hero-links a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .hero-image {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
  }

      .hero-name {
        font-size: 3rem;
        letter-spacing: -0.03em;
      }

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

