/* ============================================
   FILE: about.css
   PURPOSE: About section — grid, bio, stats, interests, photo
   ============================================ */

/* ── Grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
}

/* ══════════════════════════════════
   LEFT SIDE
══════════════════════════════════ */
.about-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: sticky;
  top: 100px;
}

/* Photo Frame */
.about-photo-frame {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer glow ring */
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), transparent, var(--accent-primary));
  padding: 3px;
  animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px dashed var(--border-hover);
  animation: rotateBorder 20s linear infinite reverse;
}

.about-photo {
  width: 228px;
  height: 228px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg-main);
}

/* Quick Info */
.about-quick-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.about-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 8px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
}

.about-location i { color: var(--accent-primary); }

/* Social Quick Links */
.about-social-quick {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-social-quick a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.about-social-quick a:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

/* ══════════════════════════════════
   RIGHT SIDE
══════════════════════════════════ */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* Bio Paragraphs */
.about-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-paragraphs p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 16px;
  border-left: 2px solid var(--border-color);
  transition: var(--transition);
}

.about-paragraphs p:hover {
  border-left-color: var(--accent-primary);
  color: var(--text-main);
  padding-left: 20px;
}

/* Interests */
.about-interests-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.interests-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.interest-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-elevated);
  border: 1px solid var(--border-color);
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  cursor: default;
  transition: var(--transition);
}

.interest-tag:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
 background: var(--bg-elevated);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.interest-tag i {
  color: var(--accent-primary);
  font-size: 0.85rem;
}

/* ══════════════════════════════════
   STATS ROW
══════════════════════════════════ */
.about-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 22px 14px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

/* Subtle shine line */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  box-shadow: var(--shadow-card), var(--glow);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}

.stat-card:hover::before { opacity: 1; }

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 15px var(--accent-dim);
}

.stat-placeholder {
  color: var(--text-faint);
  text-shadow: none;
}

.stat-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}