/* ── about_me.html — Light Theme ────────────────────────── */

.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  z-index: 1;
}

.big-initial {
  width: 120px;
  height: 120px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(0, 0, 0, 0.12);
  position: relative;
}

.big-initial::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  animation: spin-ring 15s linear infinite;
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.cert-card {
  padding: 1.2rem 1.4rem;
  border-left: 3px solid rgba(0,0,0,0.25);
}

.cert-card.purple { border-color: #888; }
.cert-card.green  { border-color: #555; }
.cert-card.yellow { border-color: #777; }

.edu-card {
  padding: 1.4rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.edu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--grad-primary);
}

.edu-year {
  font-family: var(--font-code);
  font-size: 0.72rem;
  color: var(--clr-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.skill-category-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-secondary);
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: var(--font-code);
}
