body.profil-artiste {
    font-family: 'Inria Serif', serif;
    background-color: #ece5cc;
    color: #252323;
    margin: 0;
    padding: 0;
  }

  .profil-header {
    text-align: center;
    padding: 40px 20px;
  }
  
  .profil-nom {
    font-size: 2.4em;
    color: #5c483a;
    margin-bottom: 10px;
  }
  
  .profil-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .profil-pays {
    font-size: 1.1em;
    color: #5a473a;
  }

  .message-erreur,
  .message-succes {
    padding: 12px 20px;
    margin: 0 auto 20px;
    max-width: 600px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
  }
  
  .message-erreur {
    background-color: #ffd2d2;
    color: #a33a3a;
    border: 1px solid #e59999;
  }
  
  .message-succes {
    background-color: #d2ffd8;
    color: #3a7a4f;
    border: 1px solid #9fe5b3;
  }

  .section-bio,
  .section-oeuvres {
    background-color: #fdfaf5;
    margin: 40px auto;
    padding: 30px;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
  
  .titre-section {
    font-size: 2em;
    color: #5c483a;
    margin-bottom: 20px;
    text-align: center;
  }

  .bio-affichage {
    margin-bottom: 20px;
  }
  
  .bio-extrait {
    font-style: italic;
    color: #7a695b;
    margin-bottom: 10px;
  }
  
  .bio-complete {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .bio-lien,
  .bio-reseau {
    margin: 6px 0;
  }
  
  .bio-lien a,
  .bio-reseau a {
    color: #5c483a;
    text-decoration: none;
    font-weight: bold;
  }
  
  .bio-lien a:hover,
  .bio-reseau a:hover {
    text-decoration: underline;
  }

  .formulaire-bio {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .formulaire-bio label {
    font-weight: bold;
    color: #5c483a;
  }
  
  .formulaire-bio textarea,
  .formulaire-bio input[type="text"],
  .formulaire-bio input[type="url"] {
    padding: 12px 15px;
    border: none;
    border-radius: 12px;
    background-color: #eadcc2;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1em;
    transition: box-shadow 0.3s ease;
  }
  
  .formulaire-bio textarea:focus,
  .formulaire-bio input:focus {
    outline: none;
    box-shadow: 0 0 0 3px #dbc7b1;
  }
  
  .btn-modifier-bio,
  .btn-enregistrer,
  .btn-annuler {
    padding: 10px 20px;
    border: none;
    background-color: #a08b79;
    color: white;
    border-radius: 12px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    max-width: 200px;
  }
  
  .btn-modifier-bio:hover,
  .btn-enregistrer:hover,
  .btn-annuler:hover {
    background-color: #8e7662;
    transform: scale(1.03);
  }

  .galerie-oeuvres {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .carte-oeuvre {
    background-color: #fff8ee;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
    width: 200px;
    transition: transform 0.2s ease;
  }
  
  .carte-oeuvre:hover {
    transform: scale(1.02);
  }
  
  .image-oeuvre {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .titre-oeuvre {
    color: #5c483a;
    font-weight: bold;
  }

  .lien-retour {
    display: block;
    text-align: center;
    margin: 40px 0;
    font-size: 1.1em;
    color: #5a473a;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .lien-retour:hover {
    color: #3d3027;
    text-decoration: underline;
  }
  
  .btn-message {
    padding: 8px 16px;
    font-size: 0.9em;
    background-color: #a08b79;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .btn-message:hover {
    background-color: #8e7662;
    transform: scale(1.03);
  }
  
  .btn-retour-styled {
    display: inline-block;
    margin: 20px 0 30px 40px; 
    padding: 8px 16px;
    background-color: #a08b79;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    position: relative;
    top: 20px; 
  }
  
  .btn-retour-styled:hover {
    background-color: #5c483a;
    color: #fff;
  }
  
  
  