/* ============================================================
   About Page Styles — rushatsi.com
   ============================================================ */

/* ── Page layout ───────────────────────────────────────── */
.about-page {
  width: 100%;
  max-width: 820px;
  margin: 40px auto;
  padding: 0 24px 60px;
  text-align: left;
}

/* ── Hero section ──────────────────────────────────────── */
.about-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-border);
}

@media (max-width: 640px) {
  .about-hero {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
}

/* ── Avatar ────────────────────────────────────────────── */
.about-avatar-wrap {
  flex-shrink: 0;
  position: relative;
}

.about-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow:
    0 0 0 6px var(--accent-glow),
    0 0 32px var(--accent-glow);
  display: block;
  transition: box-shadow 0.3s ease;
}

.about-avatar:hover {
  box-shadow:
    0 0 0 8px var(--accent-glow),
    0 0 48px rgba(0, 229, 160, 0.28);
}

/* ── Hero text ─────────────────────────────────────────── */
.about-hero-text {
  flex: 1;
}

.about-greeting {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.about-name {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.1;
}

.about-title {
  font-family: var(--mono);
  font-size: 1rem;
  color: var(--accent-blue);
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.about-tagline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 520px;
}

/* ── CTA Button ────────────────────────────────────────── */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent) !important;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.about-cta:hover {
  background: var(--accent-glow);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-1px);
  color: var(--accent) !important;
}

.about-cta svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* ── Bio section ───────────────────────────────────────── */
.about-bio {
  margin-bottom: 52px;
}

.about-section-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--navy-border);
  max-width: 80px;
}

.about-bio p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-bio strong {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ── Skills section ────────────────────────────────────── */
.about-skills {
  margin-bottom: 52px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.skill-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.skill-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 160, 0.1);
}

.skill-card-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
}

.skill-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(139, 148, 158, 0.1);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.03em;
  transition: color 0.15s, border-color 0.15s;
}

.skill-card:hover .skill-tag {
  color: var(--accent);
  border-color: rgba(0, 229, 160, 0.3);
}

/* ── Highlights / stats bar ────────────────────────────── */
.about-highlights {
  margin-bottom: 52px;
}

.highlights-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-width: 640px) {
  .highlights-row {
    flex-direction: column;
  }
  .highlight-item:not(:last-child) {
    border-right: none !important;
    border-bottom: 1px solid var(--navy-border);
  }
}

.highlight-item {
  flex: 1;
  padding: 24px 28px;
  background: var(--navy-mid);
  text-align: center;
  transition: background 0.2s;
}

.highlight-item:not(:last-child) {
  border-right: 1px solid var(--navy-border);
}

.highlight-item:hover {
  background: rgba(0, 229, 160, 0.04);
}

.highlight-number {
  font-family: var(--mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.highlight-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Currently section ─────────────────────────────────── */
.about-currently {
  margin-bottom: 52px;
}

.currently-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.currently-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.55;
}

.currently-list li::before {
  content: '▸';
  font-family: var(--mono);
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.currently-list a {
  color: var(--accent-blue) !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.currently-list a:hover {
  border-color: var(--accent-blue);
}

/* ── Post-title override for about ────────────────────── */
.about-page .post-title {
  display: none;
}
