/* Updated Social Link Styles */
.social-link {
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
}

.social-link:hover {
  color: var(--accent);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.25);
}

/* Add responsive styles for the hero section */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-name {
    font-size: 3.5rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .hero-name {
    font-size: 2.8rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stat-cards {
    grid-template-columns: 1fr;
  }
  
  .hero-tags {
    justify-content: center;
  }
  
  .hero-name {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .greeting {
    justify-content: center;
  }
  
  .hero-title {
    justify-content: center;
    text-align: center;
  }

  .hero-intro {
    align-items: center;
  }
}

/* Add animation for the dynamic title */
.title-dynamic {
  position: relative;
  min-width: 120px;
  transition: opacity 0.5s ease;
  display: inline-block;
}

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

/* Add hover effects for stat cards */
.stat-card {
  cursor: pointer;
}

.stat-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: rgba(59, 130, 246, 0.2);
}
