body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background-color: #f9f7f4;
  color: #111;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #ffffff;
}

.gold-title {
  font-family: 'Great Vibes', cursive;
  font-size: 3.5em;
  background: linear-gradient(to right, #b19777, #d8c28f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.slogan {
  font-size: 1.2em;
  color: #b19777;
  font-style: italic;
  margin-top: 10px;
}

main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

section {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.03);
}

h2 {
  color: #b19777;
  font-size: 2em;
  margin-bottom: 15px;
}

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

ul li {
  margin-bottom: 10px;
  padding-left: 1em;
  position: relative;
}

ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #b19777;
}

.contact-tel,
.contact-mail {
  font-size: 1.1em;
  margin: 5px 0;
}

.contact-mail a {
  color: #111;
  text-decoration: none;
  /* border-bottom: 1px solid #b19777; */
}

.contact-mail a:hover {
  color: #b19777;
}

/* Partenaires */
.partenaires {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.partenaires img {
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.partenaires img:hover {
  filter: none;
  transform: scale(1.05);
}

footer {
  text-align: center;
  font-size: 0.9em;
  padding: 40px 20px;
  color: #999;
  background-color: #f0edea;
}

.contact-tel a {
  /*color: #111 pour noir; ou #b19777 pour doré*/
  color:#111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-tel a:hover {
  color: #b19777; /* couleur dorée au survol */
}
.intro strong {

  color: #b19777;

}