h2 {
  text-transform: uppercase;
  border-bottom: 2px solid #799316;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #799316;
}
#contact {
  padding: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-item {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.contact-label {
  font-weight: bold;
  color: #333;
}

.contact-value {
  color: #777;
}

*{
  margin : 0;
  padding: 0;
}
body {
  background-color: white;
  font-family: Arial, sans-serif;

}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #799316;
  color: white;
}

section {
  padding: 40px;
}

.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 300px;
}

.carousel img {
  width: 100%;
  height: auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
  padding-left: 50px;
  padding-right: 50px;
}

.gallery-left{
  display: flex;
  flex-direction: row;
  width: 70%;
  margin: auto;
}

.gallery-right{
  display: flex;
  flex-direction: row-reverse;
  width: 70%;
  margin: auto;
}

.gallery-right .img{
  display: flex;
  justify-content: flex-start;
}

.gallery-left .img{
  display: flex;
  justify-content: flex-end;
}

.gallery-left .gallery, .gallery-right .gallery{
  display: flex;
  flex-direction: column;
  width: 200%;
}

.contact-form {
  text-align: center;
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
   z-index: 9999;
}

.navbar {
  /*position: fixed;*/
  top: 0;
  left: 0;
  width: 100%;
  background-color: #799316;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* Style du logo */
.navbar .logo {
  margin-right: 10px;
}

.navbar .logo img {
  height: 60px; /* Même taille que la font-size des liens */
}

/* Style des liens de la navbar */
.navbar .nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.navbar .nav-links li {
  margin-left: 10px;
  margin-right: 50px;
}

.navbar .nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  transition: color 0.3s;
}

/* Style des liens de la navbar au survol */
.navbar .nav-links a:hover{
  color: #ddd;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
  margin-top: 40px;
}

.img-right{
  max-width: 30%;
  margin-left: auto;
  margin-right: 0;
}

.bubble {
  background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  color: #799316;
  border-radius: 50px;
}

.map{
  width: 100%;
  height: 450px;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 20px;
}

.footer-left p {
  margin: 0;
  padding-right: 10px;
}

.footer-right img {
  width: 30px;
  height: 30px;
}

.footer-right img:hover {
  opacity: 0.8;
}

  @media screen and (max-width: 900px) {
      .gallery-left,
      .gallery-right {
        flex-direction: column;
        align-items: center;
        width: 50%;
      }

      .gallery-left img,
      .gallery-right img {
        display: none;
      }
    }

    @media screen and (max-width: 665px) {
      .navbar {
        top: 0;
        left: 0;
        width: 1000%;
        background-color: #799316;
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        justify-content: center;
        align-items: center;
      }

      header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        background-color: #799316;
        color: white;
      }

    }



/* Style du conteneur du slider */
    .slider-container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }

    /* Style des images du slider */
    .slider-container img {
      width: 100%;
      display: none;
    }

    /* Style des boutons de navigation du slider */
    .slider-container .slider-navigation {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
    }

    .slider-container .slider-navigation button {
      background-color: rgba(255, 255, 255, 0.5);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 6px 6px;
      margin: 0 5px;
      cursor: pointer;
    }

    .slider-container .slider-navigation button:hover {
      background-color: rgba(255, 255, 255, 1);
    }

    .div_title{
      display: flex;
      justify-content: center;
    }

    .div_title .title{
      width: 30%;
      padding-bottom: 20px;
    }
