/**
 * Hero Section
 *
 * @format
 */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-container {
  max-width: 600px;
  text-align: center;
}

.hero-greeting {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #1a1a1a;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid #e5e5e5;
  background: transparent;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-radius: 4px;
  display: inline-block;
}

.btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-secondary:hover {
  border-color: #1a1a1a;
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s ease;
  position: relative;
}

.social-link:hover {
  color: #1a1a1a;
}

.social-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1a1a1a;
  transition: width 0.2s ease;
}

.social-link:hover::after {
  width: 100%;
}

.divider {
  width: 40px;
  height: 1px;
  background: #e5e5e5;
  margin: 3rem auto;
}

@media (max-width: 768px) {
  .hero {
    padding: 1rem;
  }

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

  .btn {
    width: 200px;
    text-align: center;
  }

  .hero-social {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-greeting {
    font-size: 0.9rem;
  }

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

  .btn {
    width: 180px;
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }
}
