/* === POLICES === */
@font-face {
  font-family: 'Helvetica';
  src: url('../font/Helvetica.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Stars&Love-BottomHeavy';
  src: url('../font/Stars&Love-BottomHeavy.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* === BASE === */
body {
  font-family: Helvetica, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  margin: 0;
}

header {
  background-color: #E6E6FA;
  padding: 10px;
  text-align: center;
}

header img {
  width: 80px;
}

h1, h2, h3 {
  font-family: 'Stars&Love-BottomHeavy', 'Helvetica', sans-serif;
  margin: 10px 0;
}

nav {
  background-color: #D8BFD8;
  padding: 15px;
}

.onglets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.onglets li {
  margin: 0;
}

.onglets a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  transition: background-color 0.3s;
}

.onglets a:hover,
.onglets a.active {
  background-color: #C695C6;
  color: white;
}

main {
  padding: 20px;
}

#content {
  background-color: #eee;
  padding: 20px;
  min-height: 200px;
}

footer ul {
  background-color: #D8BFD8;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  padding: 10px;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* === PRESTATIONS === */
.prestations {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.prestation {
  margin-bottom: 10px;
  flex: 1 1 250px;
}

.texte-prestation {
  padding-right: 10px;
}

.image-prestation {
  width: 100px;
  flex-shrink: 0;
}

/* === IMAGE DOTERRA === */
#logo-doterra {
  max-width: 150px;
  height: auto;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  header img {
    width: 60px;
  }

  .onglets a {
    padding: 6px 10px;
    font-size: 14px;
  }

  .prestations {
    flex-direction: column;
    align-items: center;
  }

  .image-prestation {
    width: 80px;
  }

  #content {
    padding: 15px;
  }
}
.image-huile {
  width: 100%;
  max-width: 400px; /* garde la taille sur grand écran */
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .image-huile {
    max-width: 100%; /* s’adapte mieux aux petits écrans */
  }
}
 /* Fenêtre modale de fermeture salon */
.modal-fermeture {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 2px solid #D8BFD8;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-align: center;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
}

.modal-fermeture h3 {
  margin-top: 0;
}

.modal-fermeture button {
  margin-top: 15px;
  padding: 8px 16px;
  border: none;
  background-color: #D8BFD8;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.modal-fermeture button:hover {
  background-color: #C695C6;
}
