body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* NAVBAR */
.navbar {
  background: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: top 0.3s;
}

.logo {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  height: 650px;
  background: url('Image/Salon.jpg') center / cover fixed no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Overlay sombre en arrière-plan */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25); /* intensité du filtre */
  z-index: 1; /* derrière le texte */
}

/* Texte au-dessus du filtre */
.services {
  position: relative;
  z-index: 2; /* au-dessus du filtre */
  color: #C4A654;
  font-family: 'Bebas Neue', cursive;
  font-size: 40px;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8); /* pour encore + de contraste */
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero p {
  color: #fff;
  font-family: 'Bebas Neue', cursive;
  font-size: 15px;
  margin-top: 10px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* MAIN */
main {
  padding: 3rem 1.5rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
}

/* HORAIRES */
.horaire-box {
  background-color: #dcdcdc;
  padding: 2rem;
  border-radius: 20px;
  margin: 0 auto 4rem;
  max-width: 600px;
}

.horaire-box img {
  width: 80px;
  margin-bottom: 1rem;
}

.horaire-box p {
  margin: 0.3rem 0;
  font-size: 1rem;
}

/* BOUTON */
.btn-noir {
  display: inline-block;
  background: black;
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 60px;
}

/* TARIFS */
.tarifs .tarif {
  background-color: #dcdcdc;
  padding: 2rem;
  border-radius: 20px;
  margin: 1rem auto;
  max-width: 600px;
}

.tarif img {
  width: 80px;
  margin-bottom: 1rem;
}

.tarif ul {
  list-style: none;
  padding: 0;
  font-weight: 500;
}

.tarif ul li {
  margin: 0.5rem 0;
}

/* FOOTER */
footer {
  background: #333;
  color: white;
  font-size: 14px;
}

.footer-container {
  background: #666;
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex-wrap: wrap;
}

.footer-left,
.footer-mid,
.footer-right {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  height: 150px;
  margin-bottom: 10px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-mid p {
  margin: 5px 0;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 10px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #555;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
