/* ----- 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 */
.contact {
  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 */
}

/* ----- CONTENU -----*/
.localisation {
  text-align: center;
  padding: 50px 20px;
}

h2 {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  max-width: 900px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 0 auto 40px auto;
  display: block;
}

.infos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-block {
  background-color: #dcdcdc;
  padding: 20px;
  border-radius: 5px;
  width: 250px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-block img {
  width: 40px;
  margin-bottom: 10px;
}

.info-block h3 {
  font-family: 'Bebas Neue', cursive;
  font-size: 18px;
  margin-bottom: 5px;
}

.info-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  margin: 0;
}

.formulaire-contact {
  background-color: #aaa;
  padding: 50px 20px;
  text-align: center;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.input-row input {
  flex: 1;
  min-width: 48%;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

textarea {
  resize: vertical;
}

.consentement {
  font-size: 12px;
  text-align: left;
}

.contact-form button {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 25px;
  font-family: 'Bebas Neue', cursive;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #C4A654;
  color: black;
}

/* --- NOTIFICATION --- */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #fff;
  color: #000;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-family: 'Montserrat', sans-serif;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification .progress-bar {
  height: 4px;
  background-color: #4CAF50;
  width: 100%;
  animation: progress 4s linear forwards;
  border-radius: 0 0 8px 8px;
  margin-top: 10px;
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 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-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;
  }
}
