/* Hero section */

.hero {
  padding: 5rem 0 2rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse; /* portrait above text */
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

.hero-text {
  flex: 0 1 auto;
  min-width: 320px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-photo {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  --hero-glow-angle: 135deg;
}

.hero-photo img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: linear-gradient(
    var(--hero-glow-angle, 135deg),
    rgba(210, 56, 120, 0.9),
    rgba(161, 119, 255, 0.9),
    rgba(102, 204, 254, 0.9)
  );
  opacity: 0.85;
  z-index: -2;
  filter: blur(2px);
  transition: filter 0.2s ease, opacity 0.2s ease;
  animation: hero-glow-shimmer 8s ease-in-out infinite alternate;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(255, 131, 216, 0.4),
    transparent 55%
  );
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.65),
    0 0 26px rgba(102, 204, 254, 0.35);
  z-index: -1;
  transition: box-shadow 0.25s ease;
}

.hero-photo.hero-glow-pulse::before,
.hero-photo.hero-glow-pulse::after {
  animation: hero-glow-pulse 1.6s ease-out forwards;
}

@keyframes hero-glow-pulse {
  0% {
    transform: scale(0.985);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.025);
    opacity: 0.96;
  }
  100% {
    transform: scale(1);
    opacity: 0.88;
  }
}

@keyframes hero-glow-shimmer {
  0% {
    filter: blur(1.8px);
    opacity: 0.82;
  }
  50% {
    filter: blur(3.4px);
    opacity: 0.95;
  }
  100% {
    filter: blur(2.1px);
    opacity: 0.88;
  }
}

.hero-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.hero-name {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin: 0 0 0.35rem;
  color: var(--text-main);
}

.hero-tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition:
    background-color 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease,
    transform 0.08s ease;
}

.hero-button.primary {
  background: var(--accent-pink);
  color: var(--bg-main);
}

.hero-button.primary:hover {
  background: var(--accent-pink-soft);
  transform: translateY(-1px);
}

.hero-button.secondary {
  background: transparent;
  color: var(--accent-blue);
  border-color: var(--accent-blue);
}

.hero-button.secondary:hover {
  background: rgba(102, 204, 254, 0.12);
  transform: translateY(-1px);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-links a {
  color: var(--accent-blue);
}

.hero-links a:hover {
  text-decoration: underline;
}

.hero-links .dot {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  margin: 0 0.1rem;
}

.about-body {
  display: grid;
  gap: 1.25rem;
}

.about-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  text-align: inherit;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}

.about-socials a {
  color: var(--accent-blue);
}
