/* ═══════════════════════════════════════════════════════════════
   SHP-ART — About / Biography Page
   ═══════════════════════════════════════════════════════════════ */

/* ─── ABOUT HERO ──────────────────────────────────────── */
.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 5% 4rem;
  position: relative;
}

.about-hero .avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(212,175,112,0.45);
  object-fit: cover;
  margin-bottom: 1.5rem;
  animation: avatarPulse 5s ease-in-out infinite;
}

.about-hero h1 {
  margin-bottom: 0.5rem;
}

.about-hero .tagline {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}

.about-hero .location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,175,112,0.05);
  border: 1px solid rgba(212,175,112,0.16);
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

/* ─── TIMELINE ────────────────────────────────────────── */
.timeline-section {
  padding: 2rem 5% 6rem;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding-left: 3rem;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(155,109,255,0.3) 8%,
    rgba(212,175,112,0.35) 50%,
    rgba(155,109,255,0.3) 92%,
    transparent 100%
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Dot on the line */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  box-shadow: 0 0 12px var(--glow-g), 0 0 4px rgba(212,175,112,0.4);
  z-index: 2;
}

.timeline-item:nth-child(even)::before {
  border-color: var(--accent2);
  box-shadow: 0 0 12px var(--glow-p), 0 0 4px rgba(155,109,255,0.4);
}

.timeline-year {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-item:nth-child(even) .timeline-year {
  color: var(--accent2);
}

.timeline-title {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.timeline-desc strong {
  color: var(--text);
  font-weight: 600;
}

/* ─── QUOTE ───────────────────────────────────────────── */
.about-quote {
  padding: 4rem 5%;
  text-align: center;
}

.about-quote blockquote {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(212,175,112,0.55);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.about-quote cite {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ─── SOCIALS ─────────────────────────────────────────── */
.about-socials {
  padding: 3rem 5% 6rem;
  text-align: center;
}

.about-socials .section-label {
  text-align: center;
}

.about-socials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: rgba(11,11,24,0.65);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(155,109,255,0.4);
  box-shadow: 0 8px 24px rgba(155,109,255,0.12);
}

.social-link .social-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.social-link .social-handle {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── BACK BUTTON ─────────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.back-link:hover {
  color: var(--accent);
}

.back-link svg {
  transition: transform 0.3s;
}

.back-link:hover svg {
  transform: translateX(-3px);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .about-hero {
    padding: 7rem 5% 3rem;
    min-height: 50vh;
  }

  .about-hero .avatar {
    width: 100px;
    height: 100px;
  }

  .timeline {
    padding-left: 2.2rem;
  }

  .timeline-item {
    padding-left: 1.2rem;
    margin-bottom: 2.2rem;
  }

  .timeline-item::before {
    left: -2.2rem;
    width: 12px;
    height: 12px;
  }

  .timeline-title {
    font-size: 1.05rem;
  }

  .timeline-desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .social-row {
    flex-direction: column;
    align-items: stretch;
  }

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