/* Component-specific styles - All moved to main.css to avoid conflicts */

/* Bio Section */
.bio-section {
  margin-bottom: var(--space-8);
}

.hero-tagline {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-md);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
