/* Container principal */
.biography-container {
  max-width: 700px;
  margin: auto;
  text-align: center;
  font-family: Georgia, serif;
  color: #333;
}

/* Titre principal */
.biography-title {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Image ronde avec animation glissement gauche */
.biography-image-wrapper {
  width: 200px;
  height: 200px;
  margin: auto;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 20px;
  animation: slideLeft 1.6s ease-out;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

.biography-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.biography-image-wrapper img:hover {
  transform: scale(1.1);
}

/* Nom de l'artiste */
.biography-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Texte biographie */
.biography-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  padding: 0 15px;
}

/* Icônes réseaux sociaux animés */
.biography-socials {
  margin-top: 30px;
  animation: slideUp 1.6s ease-out;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

.biography-socials a {
  margin: 0 10px;
  text-decoration: none;
}

.biography-socials img {
  width: 32px;
}

/* Bloc noir biographique */
.biography-black-block {
  display: flex;
  flex-wrap: wrap;
  background-color: #000;
  color: #fff !important;
  padding: 40px;
  margin-top: 50px;
  font-family: Georgia, serif;
  animation: fadeInUp 1.6s ease-out;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}

/* Forcer la couleur blanche dans tout le bloc noir */
.biography-black-block,
.biography-black-block * {
  color: #fff !important;
}

/* Textes gauche/droite dans le bloc noir */
.biography-black-text-left,
.biography-black-text-right {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
  line-height: 1.8;
  font-size: 16px;
}

/* Signature blanche */
.signature-image-bottom {
  display: block;
  margin-top: 20px;
  max-width: 150px;
  height: auto;
  filter: brightness(200%);
  opacity: 0.9;
  float: right;
}

/* 👇 Animation vers le haut */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 👇 Animation du bloc noir (fade + montée) */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 👈 Animation glissement gauche pour l’avatar */
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Animation au survol des icônes */
.biography-socials a img {
  transition: transform 0.3s ease;
}

.biography-socials a img:hover {
  transform: translateY(-6px) scale(1.2);
}
