/* Destination : assets/css/a-propos.css */

.nh-about-img { aspect-ratio: 4 / 3.3; border-radius: var(--nh-radius-lg); }

/* ============================================================
   CHIFFRES CLÉS
   ============================================================ */
.nh-stats {
  position: relative;
  overflow: hidden;
  background: #050304;
  padding: 4.5rem 0;
}
.nh-stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(230, 57, 80, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(244, 169, 59, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(29, 138, 138, 0.14) 0%, transparent 55%);
  animation: nh-stats-aura 12s ease-in-out infinite alternate;
}
.nh-stats::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
}
@keyframes nh-stats-aura {
  0%   { transform: scale(1) rotate(0deg); opacity: 0.85; }
  100% { transform: scale(1.15) rotate(6deg); opacity: 1; }
}

.nh-stats-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--nh-gradient-primary);
  opacity: 0.28;
  filter: blur(40px);
  pointer-events: none;
  animation: nh-stats-float 9s ease-in-out infinite;
}
.nh-stats-shape-1 { width: 340px; height: 340px; top: -160px; left: -120px; animation-delay: 0s; }
.nh-stats-shape-2 { width: 300px; height: 300px; bottom: -160px; right: -100px; animation-delay: -4.5s; }
@keyframes nh-stats-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(24px, -18px) scale(1.12); }
}

.nh-stats .container { position: relative; z-index: 1; }

.nh-stat-item {
  position: relative;
  padding: 1.4rem 1rem;
  border-radius: var(--nh-radius-md);
  transition: var(--nh-transition);
}
.nh-stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.nh-stat-icon {
  position: relative;
  width: 56px; height: 56px; margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--nh-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  transition: var(--nh-transition);
}
.nh-stat-icon::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(244, 169, 59, 0.5);
  animation: nh-stat-pulse 2.6s ease-out infinite;
}
.nh-stat-item:nth-child(2) .nh-stat-icon::before { animation-delay: 0.4s; border-color: rgba(230, 57, 80, 0.5); }
.nh-stat-item:nth-child(3) .nh-stat-icon::before { animation-delay: 0.8s; border-color: rgba(29, 138, 138, 0.5); }
.nh-stat-item:nth-child(4) .nh-stat-icon::before { animation-delay: 1.2s; border-color: rgba(255, 122, 69, 0.5); }
@keyframes nh-stat-pulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  80%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}
.nh-stat-item:hover .nh-stat-icon {
  background: var(--nh-gradient-primary);
  color: var(--nh-white);
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 0 24px rgba(230, 57, 80, 0.5);
}
.nh-stat-number {
  position: relative;
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 900;
  background: var(--nh-gradient-primary);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  animation: nh-stat-shine 5s linear infinite;
}
@keyframes nh-stat-shine {
  to { background-position: 200% center; }
}
.nh-stat-label {
  font-size: 0.82rem;
  color: var(--nh-grey-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.4rem;
}

@media (min-width: 768px) {
  .nh-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%; right: 0;
    width: 1px; height: 60%;
    background: rgba(255, 255, 255, 0.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nh-stats::before, .nh-stats-shape, .nh-stat-icon::before, .nh-stat-number { animation: none; }
}

/* ============================================================
   NOS VALEURS
   ============================================================ */
.nh-value-card {
  position: relative;
  background: var(--nh-white);
  border-radius: var(--nh-radius-md);
  padding: 2.2rem 1.7rem;
  height: 100%;
  box-shadow: var(--nh-shadow-sm);
  transition: var(--nh-transition);
  overflow: hidden;
}
.nh-value-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--nh-gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.nh-value-card:hover { transform: translateY(-8px); box-shadow: var(--nh-shadow-md); }
.nh-value-card:hover::before { transform: scaleX(1); }
.nh-value-icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--nh-rose-light); color: var(--nh-rose);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: var(--nh-transition);
}
.nh-value-card:hover .nh-value-icon {
  background: var(--nh-gradient-primary);
  color: var(--nh-white);
  transform: rotate(-8deg) scale(1.05);
}
.nh-value-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.nh-value-card p { font-size: 0.9rem; color: var(--nh-grey-600); margin: 0; }

.nh-about-address-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.nh-about-address { display: flex; align-items: flex-start; gap: 0.9rem; }
.nh-about-address i { color: var(--nh-rose); font-size: 1.15rem; margin-top: 3px; }
.nh-about-address strong { display: block; font-size: 0.92rem; color: var(--nh-dark); }
.nh-about-address span { font-size: 0.88rem; color: var(--nh-grey-600); }

/* ---------- Équipe ---------- */
.nh-team-card { background: var(--nh-white); border-radius: var(--nh-radius-md); overflow: hidden; box-shadow: var(--nh-shadow-sm); transition: var(--nh-transition); text-align: center; height: 100%; }
.nh-team-card:hover { transform: translateY(-6px); box-shadow: var(--nh-shadow-md); }
.nh-team-photo-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.nh-team-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.nh-team-card:hover .nh-team-photo { transform: scale(1.06); }
.nh-team-photo-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 27, 30, 0.55) 100%);
  opacity: 0; transition: var(--nh-transition);
}
.nh-team-card:hover .nh-team-photo-wrap::after { opacity: 1; }
.nh-team-card h3 { font-size: 1rem; margin: 1.2rem 0 0.2rem; }
.nh-team-role {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; color: var(--nh-rose-dark);
  background: var(--nh-rose-light);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.nh-team-bio { font-size: 0.85rem; color: var(--nh-grey-600); padding: 0 1.2rem 1.4rem; margin: 0; }

/* ---------- Zones couvertes ---------- */
.nh-about-zone { text-align: center; padding: 1.5rem; }
.nh-about-zone i { font-size: 1.8rem; color: var(--nh-gold); margin-bottom: 1rem; }
.nh-about-zone h3 { color: var(--nh-white); }
.nh-about-zone p { color: var(--nh-grey-300); font-size: 0.9rem; }