/* ============================================
   ERIN CELESTE — about.css
   Styles specific to the about page
   ============================================ */

/* ---- PAGE HEADER ---- */
.about-header {
  padding-top: 64px;
  border-bottom: 1px solid var(--border);
}
.about-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 48px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--black);
}

/* ---- MAIN CONTENT ---- */
.about-main {
  border-bottom: 1px solid var(--border);
}
.about-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

/* ---- LEFT ---- */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 88px;
}
.about-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.about-photo-initials {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
}
.about-photo-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}
.about-photo-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(196,211,0,0.2); }
  50% { box-shadow: 0 0 0 5px rgba(196,211,0,0.1); }
}

/* QUICK FACTS */
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.about-fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.about-fact:last-child { border-bottom: none; }
.about-fact-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray);
}
.about-fact-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

/* ---- RIGHT ---- */
.about-right {
  padding-top: 4px;
}
.about-intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-body {
  font-size: 17px;
  font-weight: 300;
  color: #444;
  line-height: 1.9;
}
.about-body:first-child {
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.7;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--pink);
  padding-bottom: 3px;
  margin-top: 8px;
  transition: color 0.2s, border-color 0.2s;
  width: fit-content;
}
.about-cta:hover { color: var(--pink); }

/* ---- SKILLS ---- */
.about-skills {
  border-bottom: 1px solid var(--border);
  background: #FAF8F3;
}
.about-skills-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  background: var(--cream);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: default;
}
.skill-tag:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--lime);
}

/* ---- BOTTOM CTA STRIP ---- */
.about-strip {
  background: var(--black);
}
.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.about-strip-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--cream);
}
.about-strip .btn-dark {
  background: var(--lime);
  color: var(--black);
  white-space: nowrap;
}
.about-strip .btn-dark:hover { opacity: 0.85; }

/* ---- NAV ACTIVE ---- */
.nav-link.active {
  color: var(--black);
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-header-inner { padding: 48px 24px 36px; }
  .about-main-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px;
    gap: 40px;
  }
  .about-left {
    position: static;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: start;
  }
  .about-photo-placeholder { aspect-ratio: 1; }
  .about-skills-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 20px;
  }
  .about-strip-inner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .about-left {
    grid-template-columns: 1fr;
  }
  .about-photo-placeholder { aspect-ratio: 3/4; max-width: 240px; }
}
