*{
     margin:0;
    padding:0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    max-width: 1920px;
    font-family: 'lucinda bright';
     background-color: rgba(20,20,18, 1);    
}

/* Header */

header{
    width: 100%;
    height: auto;
    background-color: transparent;
    display: flex;
    justify-content: space-evenly;
    position: absolute;
    z-index: 15;
    overflow:hidden; 
    background: rgba(0,0,0, .3);
}

#logo{
    position: relative;
    padding-right: 50px;
}


nav a{
    text-decoration: none;
    padding: 40px 15px;
    font-size: 40px;
    color:#f2f2f2;
    text-shadow: 2px 1px #1f1f1f;
    font-weight: 900;  
}

nav a:hover{
    color: #1f1f1f;
     text-shadow: 2px 1px #f2f2f2;
}

nav a.active{
   color: #1f1f1f;
     text-shadow: 2px 1px #f2f2f2; 
}

nav ul{
    list-style:none;
    display: flex;
    margin-top: 70px;
}



/* Image hero pour chaque page */


#imghero{
    background-image: url(../img/imghero1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    height: 700px; 
}

#imghero1{
    background-image: url(../img/imghero2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    height: 700px;   
}

#imghero2{
    background-image: url(../img/imghero3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    position: relative;
    height: 700px;    
}


/* Section À Propos */

#apropos{
    height: 300px;
    position: relative;
    justify-content: center;
    z-index: 1;
}

h1{
    width:800px;
    margin: auto;
    margin-top: 60px;
    color: #f2f2f2;
    background-color: rgba(20,20,18, 1);
    box-shadow: 2px 2px 8px 4px #888888;
    text-shadow: 2px 2px #1f1f1f;
    font-size: 50px;
    display: flex;
    justify-content: center; 
    padding: 20px 30px 20px 30px;    
}

#textpropos{
    width: 1000px;
    color: #f2f2f2;
    margin: auto;
    text-align: center;
    font-size: 20px;
    padding: 10px 115px 10px 115px;
    margin-top: 50px;    
}




/* Section Nos Services */

#container{
    margin-top:40px;
}

#container h1{
    font-size: 60px;
    text-shadow: 2px 2px #1f1f1f;
    margin-top: 60px;
    margin-bottom: 40px;
}

.services{
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0px 20px 0px;
    font-family: 'lucinda bright';
}




/* Section L'expéricence salon en vidéos */

#experience{
    height: 600px;
    margin-top: 50px;
}

#experience h1{
     width: 550px;
     margin-bottom: 60px;
}

.video-section{
     width:1000px;
     margin: auto;
     margin-top: 40px;
     margin-bottom: 70px;
}

.video-section .item{
  opacity:0.4;
  transition:.4s ease all;
  margin:0 0px;
  transform:scale(.8);
}

@media(max-width:1000px){
  .video-section .item{margin:0; transform:scale(.9)}
}

.video-section .active .item{
  opacity:1;
  transform:scale(1);
} 


.video-section .owl-item {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

.video-section video{
  height:100%;
    width:100%; 
}

.owl-nav{
    display: none;
}

.owl-dots{
    display: none;
}

#experience1{
     height: auto;
    width:100%;
    margin-top: 50px;
}

#experience1 h1{
     width: 950px;
    margin-bottom: 60px;  
}





/* Section Notre Équipe */

#equipecontainer{
    height: auto;
    width: auto;
}

#equipecontainer h1{
     font-size: 60px;
    text-shadow: 2px 2px #1f1f1f;
}

.equipes{
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 20px 0px 20px 0px;
    margin-top: 20px;
}





/* Section nos tarifs */
.tarif{
    height:auto;
}

#femme{
    height: auto;
    width: 1000px;
    background-color: #f5f5f5;
    margin: auto;
    font-size: 30px;
    margin-top: 30px;
    
}

#homme{
     height: auto;
     width: 1000px;
     background-color: #f5f5f5;
     margin: auto;
     font-size: 30px;
     margin-top: 50px;
    
}

#enfant{
     height: auto;
     width: 1000px;
     background-color: #f5f5f5;
     margin: auto;
     font-size: 30px;
     margin-top: 30px;
     padding-bottom:30px;

}

.style{
    display: block;
    text-align: left;
    position: absolute;
    margin: auto;
    margin-left: 180px;
}
.style div{
    padding: 15px 0px;
}

.prix{
    display: block;
    text-align: right;
    margin: auto;
    margin-right: 180px;
}

.prix div{
    padding: 15px 0px;
}
/* Bouton pour remonter en haut de page */

#bouton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #ccc;
  color: black;    
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 30px;
}

#bouton:hover {
  background-color: #555;
}



/* Section footer */

footer{
    box-shadow: 0px 0px 8px 1px #888888;
    background-color: rgba(20,20,18, 1);
    height: auto;
    display: flex;
    justify-content: center;
     margin:auto;
    width:auto;
}

#copyright{
    color: rgba(167, 146, 129, 0.6);
    font-size: 15px;
    text-align: center;
    margin-top: 100px;
    padding-bottom: 40px;
    width: 500px;
    margin-left: 0px;
    display:flex;
}





/* Icone Media Social */
.center {
  display: table;
  width: 100%; 
  position:absolute;
  z-index: 16;
  margin-top:0px;
  margin-left: 0px;
  overflow:hidden; 
}
#social-test {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
}

#social-test .social {
  padding-left: 0px;
}
#social-test li {
  color: rgba(167, 146, 129, 0.6);
  list-style-type: none;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  padding: 1%;
  border: 1px solid rgba(167, 146, 129, 0.4);
  cursor: pointer;
  margin-left: 10px;
  margin-bottom: 5px;
  transition: ease 0.3s;
}
#social-test li:hover {
  color: #a79281;
  border: 1px solid #a79281;
}
.social:hover > li {
  opacity: 0.5;
}
.social:hover > li:hover {
  opacity: 1;
}