body {
    background-color:#e0cfe0;
    font-family: 'Jersey 15', sans-serif;
}

header {
    padding: 20px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
  position: relative;
  display: flex;
  height: 70px;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20%;
  background-color: #7d5a7b;
  overflow: visible;
}


.nav-logo {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.nav-logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 8px solid #7d5a7b;
  background-color: #7d5a7b;
}

/* -- media-queries responsive pour nav -- */
@media (max-width: 768px) {
  nav {
    padding: 8px 8%;
    text-align: center;
  }
  .nav-portfolio,
  .nav-links {
    font-size: 1.4em;
  }
}
@media (max-width: 480px) {
  nav {
    padding: 9px 9%;
  }
  .nav-portfolio,
  .nav-links {
    font-size: 1.4em;
  }
}

.nav-accueil {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-accueil:hover {
    color: #b07fa1; /* Une nuance plus foncée pour l'effet hover */
}

.nav-links {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links:hover {
    color: #b07fa1;
}

header {
    margin-top: 1.5%;
    font-size: 2em;
    font-weight: 300;
}

header h1 {
    font-family: 'Jersey 15', sans-serif;
    font-weight: 300;
}

header h2 {
    font-family: 'Jersey 15', sans-serif;
    font-weight: 300;
}

.info-section {
    background-color: #f4e7f4;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.info-title {
    font-size: 2em;
    color: #7d5a7b;
    margin-bottom: 20px;
}

.info-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.info-image {
    margin-right: 70px; /* Espace entre l'image et le texte */
    margin-left: 0; /* Supprime tout espacement à gauche */
    height: 80px;
    justify-content: center; /* Centre l'image horizontalement */
    align-items: center; /* Centre l'image verticalement */
}

.info-text {
    max-width: 600px; /* Limite la largeur du texte pour une meilleure lisibilité */
    line-height: 1.6; /* Améliore l'espacement entre les lignes */
    color: #0b0b0bd0;
}

.info-buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    background-color: #7d5a7b;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #b07fa1;
}

.info-image {
    text-align: center; /* Centre l'image horizontalement */
    margin: 20px 0; /* Ajoute un espace au-dessus et en dessous de l'image */
}

.info-image img {
    max-width: 90px; /* Taille maximale de l'image */
    height: auto; /* Maintient les proportions de l'image */
}

a {
    text-decoration: none; /* Supprime le soulignement */
    color: #b07fa1; /* Adopte la couleur du texte environnant */
}