/**
 * Hero Section Styles
 */

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.hero-intro {
  font-size: var(--font-size-lg);
  color: var(--color-accent-primary);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.hero-subtitle {
  font-size: var(--font-size-2xl);
  color: var(--color-accent-secondary);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xl);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.hero-social {
  display: flex;
  gap: var(--space-lg);
}

.hero-social a {
  font-size: var(--font-size-xl);
  color: var(--color-text-secondary);
  transition: color var(--transition-base);
}

.hero-social a:hover {
  color: var(--color-accent-primary);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-bg-tertiary);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }
}
