/* Hero Section Styles - Soft Ash Theme */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
  background: linear-gradient(160deg, #EDEAE5 0%, #E8E3DC 50%, #EDE8E0 100%);
}

/* Background Container */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle texture using layered gradients */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(160,82,45,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(47,83,115,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(26,23,20,0.03) 0%, transparent 50%);
}

/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.hero-greeting {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: var(--space-lg);
}

.hero-typed-wrapper {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: var(--space-lg);
  min-height: 2.5rem;
}

.typed-cursor {
  color: var(--accent);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

/* Hero Socials */
.hero-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md);
  color: var(--text);
  transition: all var(--transition-base);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--glow-gold);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}
