/*
 * apropos.css — Page À propos
 * ═════════════════════════════
 * Layout deux colonnes : photo à gauche, texte + stats à droite.
 */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);   /* 120px = hauteur nav */
}

/* Colonne gauche : photo du photographe */
.about-photo {
  position: relative;
  overflow: hidden;
  /* Pas de max-height : l'image doit remplir toute la hauteur de la colonne.
     height: 100% sur un enfant de grid item fonctionne uniquement si le parent
     a une hauteur définie — on utilise donc position:absolute sur l'img. */
}

.about-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Colonne droite : biographie */
.about-content {
  padding: 80px 80px 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Trait de séparation décoratif */
.about-line {
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin: 28px 0;
}

/* Chiffres clés (mariages, années, pays) */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.about-stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.about-stat .label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Responsive ≤ 768px ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-photo {
    height: 80vw;
    max-height: 520px;
    min-height: 280px;
  }

  .about-photo img {
    object-position: center 18%;  /* Descend légèrement pour centrer le visage */
  }

  .about-content {
    padding: 40px 24px 48px;
  }

  .about-content h1 { font-size: 26px; }

  .about-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
}
