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 {
  text-decoration: none;
  color: white;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  white-space: nowrap;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  margin: 4px 0;
  height: 2px;
  width: 25px;
  display: block;
}

.nav-menu {
  display: flex;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background: #333;
    padding: 10px;
    border-radius: 5px;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hamburger {
    display: flex;
  }
}

/* ----- 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 */
.histoire {
  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 */
}

/* MAIN */
.salon h2,
.engagements-section h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
}

.container {
  padding: 100px 20px 50px;
  max-width: 1200px;
  margin: auto;
}

.text-center {
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
  align-items: center;
}

.column {
  flex: 1;
  min-width: 300px;
}

.column.image img {
  width: 95%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.engagements-section {
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
  text-align: center;
}

.engagements-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.second-line {
  justify-content: center;
  gap: 30px;
}

.engagement {
  flex: 1 1 250px;
  max-width: 280px;
  margin: 0 10px;
}

.engagement img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.engagement p {
  font-size: 15px;
  margin: 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 {
  text-decoration: none;
  color: white;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 10px;
}
