/* Corps général */
body {
  font-family: Garamond;
  line-height: 1.6;
  background-color: #fff;
  color: #48494C;
}

/* Navigation */
.navbar {
  font-weight: bold;
  font-size: large;
  text-align: center;
}

.navbar .nav-link:hover {
  color: #FFFFFF;
  background-color: #BD9D7E;
  border-radius: 5px;
}

/* Section Informations */
.info-section .section-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  color: #3B2715;
}

.info-section {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

/* Membres */
.member-card {
  display: flex;
  flex-direction: row;
  border: 1px solid #D0D8E3;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.member-info {
  flex: 1;
  padding: 20px;
  color: #48494C;
}

.member-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

.member-info p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 1rem;
}

.member-info a {
  color: #BD9D7E;
  text-decoration: none;
  font-weight: bold;
}

.member-info a:hover {
  text-decoration: underline;
}

.member-photo-container {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E9EAEE;
}

.member-photo {
  width: 100%;
  max-height: 200px;
  height: auto;
  display: block;
  object-fit: cover;
  border-left: 1px solid #ddd;
}

.photo-adjust {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
}


/* Partenaires scientifiques */
#partenaires {
  margin: 40px 0;
  padding: 20px;
}

#partenaires h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #3B2715;
  font-size: 2rem;
  font-weight: bold;
}

.partners-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}

.partner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.3s;
}

.partner:hover {
  background-color: #D0D8E3;
}

.partner:last-child {
  border-bottom: none;
}

.partner-name {
  font-weight: bold;
  color: #48494C;
  font-size: 1.2rem;
}

.partner-establishment {
  font-style: italic;
  color: #BD9D7E;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Adresse */
#adresse {
  margin: 40px 0;
  text-align: center;
  position: relative;
}

#adresse h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #3B2715;
  font-weight: bolder;
}

.adresse-text {
  display: inline-block;
  position: relative;
  font-size: 1.2rem;
  color: #48494C;
  padding: 0 10px;
  background-color: #fff;
  font-weight: bold;
  z-index: 1;
}

#adresse::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  border-top: 1px dashed #ccc;
  transform: translateY(-50%);
  z-index: 0;
}

/* FOOTER */
footer {
  padding: 40px 0;
  color: white;
}

footer.bg-primary {
  background-color: #48494C !important;
}

footer h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: #ffffff;
  text-underline-offset: 10px;
  color: #ffffff;
  font-weight: bold;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Section droits d'auteurs */
.footer-copyright {
  text-align: center;
  font-weight: bolder;
  color: #E9EAEE;
  display: inline-block;
  background-color: rgba(108, 117, 125, 0.75);
  border-radius: 50rem;
  padding: 0.25rem 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-copyright a {
  color: #BD9D7E; 
  font-weight: bold;
  text-decoration: none; 
  transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

.footer-copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Logos */
.logos-section {
  text-align: center;
  margin: 40px 0;
  position: relative;
  background: #E9EAEE;
  border: 1px solid #d3c7b5;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.logos-section::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 100%;
  height: 40px;
  background: #E9EAEE;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  z-index: -1;
}

.footer-logo {
  max-height: 60px;
  margin: 0 50px;
}

/* Alignement du menu déroulant */
.dropdown-menu-end {
  right: 0;
  left: auto;
}

@media (max-width: 768px) {
  .info-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }
  .partner:hover {
    background-color: inherit;
  }

  .partner-establishment {
    font-size: 15px;
  }

  .partner-name {
    font-size: 15px;
  }
  .navbar .nav-link:hover {
    color: inherit;
    background-color: transparent;
  }
  .footer-logo {
    max-height: 50px;
    margin: 0 8px;
  }
  #themes .card,
  #themes .card:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: none;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-height: 40px;
    margin: 0 5px;
  }
  .logos-section {
    margin-top: 15px;
  }
}
