/* ==============  FONTS IMPORT  ============== */
@import url('https://fonts.googleapis.com/css2?family=Krub:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  font-family: "Krub";
  padding: 0;
  margin: 0;
}

body {
  font-family: "Krub", sans-serif;
  background: #fff;

  color: #5e8c8c;
}

/* ==============  QUI SOMMES NOUS DESC  ============== */

.desc-asso {
  display: block;
  text-align: center;
  font-size: 25px;
  max-width: 800px;
  margin: 50px auto 0 auto;
  line-height: 1.6;
}

.text-desc {
  display: block;
  margin-top: 30px;
  font-size: 20px;
}

/* ==============  SECTION TEAM  ============== */
.team-container {
  max-width: 800px;
  margin: auto;
}

.member {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.member:hover {
  transform: translateY(-2px);
}

.member-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 15px;
}

/*.member-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }*/
.member-header img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.member-header img:hover {
  transform: scale(1.1);
}

.member-header h3 {
  margin: 0;
  font-size: 20px;
  color: #5e8c8c;
}

.member-header p {
  margin: 2px 0 0 0;
  font-size: 14px;
  color: #555;
  /*color: #5E8C8C;*/
}

.member-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.member-content p {
  margin: 18px 0;
  line-height: 1.5;
  color: #5e8c8c;
}

.member.active .member-content {
  max-height: 500px;
  padding-bottom: 15px;
}

.title-team-section {
  display: flex;
  justify-content: center;
  font-size: 25px;
  margin-top: 70px;
  margin-bottom: 30px;
}

.member-desc {
  display: block;
  text-align: center;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  line-height: 1.6;
  margin-top: 30px;
  font-size: 20px;
}

.inscription-btn-waw {
  display: block;        /* important pour que margin auto fonctionne */
  margin: 20px auto 0;   /* centre horizontalement */
  padding: 10px;
  background-color: #5e8c8c;
  font-family: inherit;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}


