.navbar {
  width: 100%;
  background-color: orange;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  height: 80px; 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  font-size: 1.4em; 
  line-height: 80px; 
}


.navbar a:hover {
  text-decoration: underline;
}

.banner {
  display: block;
  margin: 0;
  padding: 30px 0;
  width: 100%;
  height: auto;
}

.logo {
  display: block;
  margin: 40px auto;
  width: 100px;
  height: auto;
}

.citation {
  text-align: center;
  font-style: italic;
  font-size: 1.2em;
  margin: 40px auto;
  width: 80%;
  max-width: 800px;
  color: #333;
}

.groupe {
  display: block;
  margin: 0 auto;
  width: 80%; 
  padding: 20px;
  max-width: 1000px;
  height: auto;
}




.section-inspiration {
  width: 90%;
  max-width: 1000px;
  margin: 60px auto;
  font-family: Arial, sans-serif;
  color: #333;
}

.bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.bloc-1 .image {
  order: 1;
}

.bloc-1 .texte {
  order: 2;
}

.bloc-2 .texte {
  order: 1;
}

.bloc-2 .image {
  order: 2;
}

.image img {
  width: 250px;
  height: auto;
}

.texte {
  width: 60%;
  font-size: 1.2em;
  line-height: 1.6;
}

.initial {
  font-size: 1.5em;
  font-weight: bold;
  float: left;
  line-height: 1;
  margin-right: 5px;
  color: #000;
}


.logo-centre img {
  width: 60px;
  height: auto;
}

.sous-titre {
  font-size: 1.1em;
  font-weight: bold;
  color: #444;
  margin-bottom: 20px;
  text-align: center;
}

.liste-bilans {
    list-style: none;
    text-align: center;
}

.img-centree {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
}

.menu-bilans {
  position: relative;
  display: inline-block;
}


.menu-bilans > a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  line-height: 80px;
  padding: 0 10px;
  display: block;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background-color: orange;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  min-width: 220px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}


.orange {
  color : orange;
  display: flex;
  justify-content: center;

}

.submenu a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 1em;
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: background-color 0.2s ease;
}

.submenu a:hover {
  background-color: rgba(255,255,255,0.2);
}


/* Affiche le sous-menu au survol */
.menu-bilans:hover .submenu {
  display: block;
}



@media (max-width: 768px) {
  /* Barre de navigation */
  .navbar {
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 15px 0;
    width : 100%;
  }

  .navbar a {
  font-size: 1em;         
  line-height: normal;   
  padding: 10px 0;        
}


  /* Image du groupe */
  .groupe {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
  }

  /* Citation */
  .citation {
    font-size: 1em;
    width: 95%;
    margin: 20px auto;
  }

  /* Logo */
  .logo {
    width: 70px;
    margin: 30px auto;
  }

  /* Section inspiration */
  .section-inspiration {
    width: 95%;
    margin: 40px auto;
  }

  .bloc {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bloc .image,
  .bloc .texte {
    width: 100%;
    order: unset;
  }

  .image img {
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .texte {
    font-size: 1em;
    line-height: 1.5;
    padding: 0 10px;
  }

  .initial {
    float: none;
    font-size: 1.3em;
    margin-right: 0;
  }

  .logo-centre img {
    width: 50px;
    margin: 20px auto;
  }

  .submenu {
  position: static;
  box-shadow: none;
  background-color: #ffa733;
  width: 100%;
  border-radius: 0;
}

.submenu a {
  text-align: center;
  font-size: 1.1em;
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

}


