/* Home Page Specific Styles */

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: var(--spacing-xl) 0;
  background-color: rgba(13, 13, 15, 0.7);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-xl);
}

.hero-content {
  max-width: 900px; /* Increased from 800px */
  width: 90%; /* Added for better responsiveness */
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg); /* Increased padding */
  background-color: rgba(20, 21, 26, 0.8);
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  border: 1px solid var(--color-border);
}

.greeting {
  display: block;
  font-size: 2rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xs);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  color: var(--color-primary);
}

.bio {
  margin-bottom: var(--spacing-lg);
  max-width: 700px; /* Increased from 600px */
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 0.8s;
  font-size: 1.1rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1s;
}

.hero-buttons .btn {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-size: 1rem;
  font-weight: 500;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
  animation-delay: 1.2s;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-bg-secondary);
  border-radius: 50%;
  transition: all var(--transition-speed);
}

.social-link:hover {
  background-color: var(--color-primary);
  transform: translateY(-3px);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: var(--spacing-lg) 0;
  }

  .hero-content {
    padding: var(--spacing-lg) var(--spacing-md);
    width: 95%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 200px;
  }
}