/* ============================================================
   ABOUT.CSS — Page À propos / Hero
   ============================================================ */

.about-wrapper {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 10px;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.about-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-tag::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
}

.about-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.9;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
}
.about-name .highlight { color: var(--red); }

.about-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.about-bio {
  font-size: 15px;
  line-height: 1.9;
  color: var(--light);
  opacity: 0.75;
  max-width: 600px;
  margin-bottom: 48px;
}

.about-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stat {
  border-left: 2px solid var(--red);
  padding-left: 16px;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-top: 4px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1px solid var(--gray2);
  color: var(--gray-text);
  background: var(--dark2);
  transition: all 0.2s;
}
.skill-tag:hover { border-color: var(--red); color: var(--white); }

.accent-line {
  position: absolute;
  right: 60px;
  top: 120px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  opacity: 0.4;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .about-wrapper  { padding: 100px 24px 60px; }
  .about-stats    { gap: 28px; }
  .accent-line    { display: none; }
}
