/* ============================================================
   SiteBug — a-propos.css
   Page À propos — styles spécifiques
   ============================================================ */

/* ---- Profile widget (hero) ---- */
.ap-profile-id {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  margin-bottom: 18px;
}
.ap-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
  box-shadow: 0 0 0 3px rgba(37,99,235,.25);
}
.ap-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 3px;
}
.ap-title {
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  margin-bottom: 5px;
}
.ap-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #86efac;
}
.ap-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}

/* ---- Tags compétences (widget hero) ---- */
.ap-skills-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 10px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}
.ap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.ap-tag {
  padding: 4px 10px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(59,130,246,.25);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #93c5fd;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

/* ---- Bio skills block (section profil) ---- */
.ap-bio-skills {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 26px 24px;
  height: 100%;
}
.ap-bio-skills__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.ap-bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ap-bio-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  transition: background .15s ease, border-color .15s ease;
}
.ap-bio-tag:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}
.ap-bio-tag i {
  color: #22c55e;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Surcharge about-card pour la page ---- */
.about-section .about-card h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 0;
}
.about-section .about-card p {
  font-size: 15px;
}

/* ---- Value card icône ---- */
.value-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background .15s ease, color .15s ease;
}
.value-card:hover .value-card__icon-wrap {
  background: #2563eb;
  color: #fff;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  .ap-profile-id { padding: 12px; }
  .ap-avatar { width: 44px; height: 44px; font-size: 14px; }
}
@media (max-width: 767.98px) {
  .ap-bio-skills { padding: 20px 18px; }
}
