
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
 

*{
    margin: 0px;
    padding: 0px;
}


body{

    background-color:#494000;
}


header {
    height: 101px;
    background-color: #494000;
    padding: 10px 0;
    position: relative;
    text-align: center;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
  
}

.icones {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
}

.icones li {
    list-style: none;
}

.icones li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: absolute;
    top: 73px;
    color: #ffffff;
    font-size: 10px;
    height: 73px;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;


}

.icones li a img {
    position: absolute;
    top: 69px;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.menu::after {
    content: "";
    position: absolute;
    top: 58px; 
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ffffff;
    z-index: 0;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    border-radius: 50%;
    z-index: 1;
}

.logo img {
    width: 60px;
    height: auto;
    border-radius: 50%;
    
}



/* partie 2*/

.sectionHeroique {
    text-align: center;
    color: #ffffff;
}

#sectionHeroique{
   
background-image: url("../images/massages.jpg");
background-repeat: no-repeat;
background-size: cover;
height: 284px;
width: 430px;

}



.sectionHeroique-text h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn-rendez-vous {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.btn-rendez-vous:hover {
    background-color: #ffffff;
    color: #333333;
}

/* Style pour la section About */
.QuiSommesNous {
    
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.about h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.about p {
    font-size: 1em;
    margin-bottom: 10px;
}

/*section services*/

.services {
    padding: 20px;
    text-align: center;
  }
  
  .services h2 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .service-item {
    text-align: center;
  }
  
  .service-item img {
    width: 100%;
    border-radius: 50%;
  }
  
  .service-item p {
    font-size: 14px;
    margin-top: 5px;
  }



  footer{
    color: #ffffff;

    background-color: #494000;
    height: 101px;
  }