/* ═══════════════════════════════════════════════════════
   about.css — Section À Propos
   ═══════════════════════════════════════════════════════ */

#about {
  background: var(--bg2);
}

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
}

/* ── Image / Avatar ─────────────────────────────────────── */
.about-img-wrap {
  position: relative;
}

.about-img-frame {
  width: 280px;
  height: 320px;
  border: 1px solid var(--bord2);
  background: var(--surf);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, rgba(139, 43, 226, .08), rgba(226, 25, 43, .05));
}

.about-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vio), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 28px;
  font-weight: 900;
  color: var(--wh);
  box-shadow: 0 0 30px rgba(139, 43, 226, .5);
  user-select: none;
}

.about-img-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.6;
}

/* Coins décoratifs */
.about-img-corner {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-left: 30px solid transparent;
  border-top: 30px solid var(--vio);
}

.about-img-corner2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 0;
  border-right: 20px solid transparent;
  border-bottom: 20px solid var(--bord2);
}

/* Scan line animée */
.about-scan {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vio2), transparent);
  animation: scan 3s linear infinite;
}

/* Déco coins extérieurs */
.about-deco-tl,
.about-deco-br {
  position: absolute;
}

.about-deco-tl {
  top: -12px;
  left: -12px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--vio);
  border-left: 2px solid var(--vio);
}

.about-deco-br {
  bottom: -12px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--red);
  border-right: 2px solid var(--red);
}

/* ── Texte ──────────────────────────────────────────────── */
.about-text {
  font-size: 15px;
  color: var(--txt);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-text strong { color: var(--vio3); }

/* ── Infos liste ────────────────────────────────────────── */
.about-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.about-info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
}

.about-info-label {
  color: var(--muted);
  width: 120px;
  flex-shrink: 0;
}

.about-info-val { color: var(--txt); }

.about-info-dot {
  width: 4px;
  height: 4px;
  background: var(--vio2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-frame {
    width: 200px;
    height: 240px;
    margin: 0 auto;
  }
}
