@charset "UTF-8";
*, ::before, ::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}

body {
  width: 100%;
  background-color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}

.main-menu {
  height: 10vh;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.main-menu img {
  width: 100%;
  max-width: 150px;
}
.main-menu ul {
  display: flex;
  list-style-type: none;
  width: 100%;
  max-width: 500px;
  align-items: center;
  margin-right: 25px;
}
.main-menu ul li {
  flex: 1;
  display: flex;
  justify-content: center;
}

.links-gold {
  background: linear-gradient(90deg, #d5a940 50%, #3c3c3c 50%);
  border-radius: 25px;
  color: #fff;
  padding: 10px 15px;
  transition: background-position 0.6s ease;
  cursor: pointer;
  background-size: 200% 100%;
  background-position: left bottom;
}
.links-gold:hover {
  background-position: right bottom;
}

/* Footer */
footer {
  background-color: #414141;
  color: #fff;
  height: 20vh;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Page à propos */
.entete-jaune {
  background-color: #d5a940;
  color: #fff;
  display: flex;
  min-height: 60vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Quicksand", sans-serif;
}


  .entete-jaune h2{
    font-size: 2.0em;
    font-family: 'Playfair Display', serif;
  }

  .titre-section{
    text-transform: uppercase;
    font-size: 0.8em;
    font-weight: 300;
    letter-spacing: 2px;
    /*margin-bottom: 50px;*/
  }

  .titre-sous-section{
    font-size: 2.2em;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
  }


.corps-text {
  width: 100%;
  max-width: 800px;
  padding: 15px;
    font-size: 1.1em;
    text-align: center;
}



.encart-valeur{
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: row;
  padding:25px 0;
}


.encart-valeur-left{
  flex: 1 1 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 25px;
}

.encart-valeur-left ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
    
}

.encart-valeur-left ul li{
  flex: 1 1 100%; /* Permet aux éléments de prendre toute la largeur */
  margin: 5px;
  display: flex;
  align-items: center;
}

.encart-valeur-left ul li:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.encart-valeur-left ul li:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 4;
}

.encart-valeur-left ul li:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.encart-valeur-left img{
  width:100%;
  max-width: 300px;
}

.image-container {
  overflow: hidden;
}

.hover-image {
  display: block;
  width: 100%;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(100%);
}

.image-container:hover .hover-image {
  transform: scale(1.1);
  filter: grayscale(0%);
}


.encart-valeur-right{
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 25px;
}

.encart-valeur-right ul{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 50px;
}

.encart-valeur-right ul li{
  position: relative;
flex:1 1 50%;
box-sizing: border-box; /* Assure que le padding et border ne sont pas inclus dans la largeur */
    padding: 10px;
    height: 15vh;
    display: flex;
    font-weight: 200!important;
    align-items: center;
    margin-bottom: 15px;
}


.encart-valeur-right ul li::before {
content: "";
width: 45px; /* Longueur du trait jaune */
height: 5px; /* Hauteur du trait jaune */
background-color: #d5a940; /* Couleur du trait */
position: absolute;
top: 0;
left: 0;
}



/* Encart Service */

.encart-service{
  width: 100%;
  min-height: 80vh;
  display: flex;
}

.encart-service-left{
  flex:1 1 40%;
  padding: 50px;
}

.encart-service-left ul{

}

.encart-service-left ul li{
  margin-bottom: 10px;
}


.encart-service-right{
  flex:1 1 60%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.encart-service-right img{
  width:100%;
  max-width: 600px;
}

