/* ----- BASE ----- */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----- 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-menu {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  color: white;
  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 */
.accueil {
  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 */
}

/* ----- PRÉSENTATION ----- */
.presentation {
  padding: 60px 20px;
  text-align: center;
}

.presentation h2,
.avis-clients h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  margin-bottom: 20px;
}

.presentation-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.texte {
  max-width: 400px;
  font-size: 1rem;
}

.image-presentation {
  width: 300px;
  border-radius: 10px;
}

.btn-noir {
  display: inline-block;
  background: black;
  color: white;
  padding: 8px 15px;
  font-size: 14px;
  margin-top: 25px;
}

/* ----- AVIS CLIENTS ----- */
.avis-clients {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.avis-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.avis-card {
  flex: 0 0 280px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  scroll-snap-align: start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.avatar {
  background: #444;
  color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', cursive;
  margin: 0 auto 10px;
  font-size: 18px;
}

.stars {
  color: #f5c518;
  margin: 5px 0;
}

.avis-bouton {
  margin-top: 20px;
}

/* ----- 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-mid p {
  margin: 5px 0;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right a {
  color: white;
}

.footer-bottom {
  background: #111;
  text-align: center;
  padding: 10px;
}

/* ----- HAMBURGER MENU ----- */
.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;
  }
}
