@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

body {
  margin:0px;
  padding:0px;
background: rgb(245,101,32);
background: radial-gradient(circle, rgba(245,101,32,1) 14%, rgba(168,60,6,1) 77%);
}

p, div, td {
  color:#fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size:20px;
}

h1 {
    /*color:#444; */
    color:rgb(254,204,0);
    font-size:42px;
    font-weight:500;
    padding:0;
    margin:0 0 20px 0;
}

h2 {
    color:#fff;
    font-size:30px;
    font-weight:500;
    padding:0;
    margin:0 0 20px 0;
}
.spacer {
  clear:both;
}

a {
  color:#fff;
  text-decoration:none;
}
a:hover {
  color:#fff;
  text-decoration:underline;
}


/** structure **/
.conteneur {
  width:1024px;
  max-width:95%;
  margin:auto;
  position: relative;
}

main {
    min-height:60vh;
}


/* MenuBurger */
#menuBurger-conteneur {
    flex:1;
    background-image:url('../images/bg-menu.png');
    background-position:top center;
    background-repeat:no-repeat;   

    padding-top:20px;   
    margin-top:30px;  
    
}
.menuBurger {              
    background-image:url('../images/btn-menu.png');
    background-position:bottom center;
    background-repeat:no-repeat;   
    padding-bottom:12px;
    width:60px;
    margin:auto;
    display:flex;
    justify-content:center;
    cursor: pointer;
}
.menuBurger-content{
    /*margin: 5px 0 0 0;*/
    /*border-radius: 20px;  */
    /*background-color: #0d8b46;*/
    width: 40px;
    height: 40px;
    position: relative;
    
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    transition: all 0.3s;
    z-index: 99999; 
}

.menuBurger span{
    background-color:rgba(255,255,255,0.8);
    position: absolute;
    border-radius: 5px;
    transition: .3s cubic-bezier(.8, .5, .2, 1.4);
    width: 60%;
    height: 3px;
    transition-duration: 300ms
}
.menuBurger span:nth-child(1){
    top: 12px;
    left: 8px;
}
.menuBurger span:nth-child(2){
    top:19px;
    left: 8px;
}
.menuBurger span:nth-child(3){
    bottom:10px;
    left: 8px;
}
.menuBurger:hover{ 
    /*background: #ef7921;*/
}
.menuBurger:not(.clickMenuBurger):hover span:nth-child(1){
    margin-top: 0px;
    transform: rotate(-45deg) scaleX(0.7);
    -webkit-transform: rotate(-45deg) scaleX(0.7);
    -moz-transform: rotate(-45deg) scaleX(0.7);
    -ms-transform: rotate(-45deg) scaleX(0.7);
    -o-transform: rotate(-45deg) scaleX(0.7);
    top: 20px;
    left: 13px;
}
.menuBurger:not(.clickMenuBurger):hover span:nth-child(2){
    margin-top: 0px;
    transform: rotate(45deg) scaleX(0.7);
    -webkit-transform: rotate(45deg) scaleX(0.7);
    -moz-transform: rotate(45deg) scaleX(0.7);
    -ms-transform: rotate(45deg) scaleX(0.7);
    -o-transform: rotate(45deg) scaleX(0.7);
    top: 20px;
    left: 3px;
}
.menuBurger:not(.clickMenuBurger):hover span:nth-child(3){
    background: transparent;
}
.clickMenuBurger header li:nth-child(4) p {
    display: none;
}
.clickMenuBurger span:nth-child(1){
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    top: 18px;
}
.clickMenuBurger span:nth-child(2){
    background: transparent;
}
.clickMenuBurger span:nth-child(3){
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: 18px;
}

/* ------------------- POP IN : MENU (CLICK MENU) ------------------- */

#menu-respfond {
  display:none;
  background: rgba(0,0,0,0.9);
  width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;  
}
#menu-respliens {
    height: calc(100% - 200px);
    overflow-y:auto;
    padding: 20px 0 20px 0;
    margin-top: 80px;
    z-index: 1000;
}

#menu-respliens .conteneur {
     padding: 0;
}

#menu-principal {
	margin-bottom: 20px;
}

#menu-principal li {
    list-style: none;
    
}
#menu-principal li a {
    text-transform: uppercase;
    text-align: center;
    font-size:40px;
    color:#fff;
    
    display: block;
    width: 90%;
    max-width: 600px;
    text-decoration: none;
    margin: 8px auto;
    padding: 10px;
    transition: 0.3s ease-out;
}
#menu-principal li a:hover {
	color:#fecc00;
}

#menu-principal .ul_sousmenu li a {
  padding:5px;
  background-color: #C1B06B;
}
#menu-principal .ul_sousmenu li a:hover {
  padding:5px;
  background-color: #D0D092;
}


#header {
    margin-bottom:20px;
}

/* home */
#header-home {
    flex:4;
}

#header-slogan {
    width:400px;
    padding-top:40px;
}

#home-conteneur {
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:60vh;
}
#home {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

#home-logo {
    background-image:url('../images/symboles.png');
    background-position:left center;
    background-repeat:no-repeat;
    padding-left:140px;
}

#home-infos {
    display:flex;
    justify-content:center;
    align-items:center;  
    flex-direction:column;
    gap:50px;
}

#home-date {
    display:flex;
    justify-content:center;
    align-items:center;   
}

#home-date-content {

}

#home-date-content div {
    margin:0;
    padding:0;
}

#home-date div:nth-child(1){
    font-size:62px;
    line-height: 1;
}
#home-date div:nth-child(2){
    font-size:68px;
    line-height: 1;
}
#home-date div:nth-child(3){
    font-size:122px;
    line-height: 0.9;
}

#header-content {
    display:flex;
    justify-content:space-between;
    gap: 100px;
}

#header-inter {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:15px;
    flex:3;
}


#header-logo {
    width:140px;
}



#header-panneau {
    width:200px;
}

#header-slogan img, #header-logo img , #header-panneau img  {
    max-width:100%;
} 

#header-date {
    width:200px;
    display:flex;
    justify-content:center;
    align-items:center;   
}

#header-date-content {
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-direction:column; 
}

#header-date div {
    margin:0;
    padding:0;
}

#header-date div:nth-child(1){
    font-size:28px;
    line-height: 1;
}
#header-date div:nth-child(2){
    font-size:35px;
    line-height: 1;
}
#header-date div:nth-child(3){
    font-size:56px;
    line-height: 0.9;
}

#header-reseaux {
    display:flex;
    justify-content:space-between;
    flex:1;
}

#header-reseaux-content {
    background-color:#000;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding:20px;
    padding-top:50px;
    width:120px;
}

#header-reseaux a {
    text-decoration:none;
    display:block;
}

#header-reseaux img {
    width:32px;
}

#footer {
    background-color:#000;
    padding:20px;
}

#footer-entete {
    margin-top:50px;
}

#footer-entete-content {
    display:flex;
    justify-content:space-between;
    align-items: baseline;
}

#footer-partenaires {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;    
}

#footer-partenaires a {
    display:block; 
    background-color:rgba(255,255,255,1);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    width:70px;
    height:70px;       
    border-radius:5px;
}

#footer-partenaires a:hover {
    background-color:rgba(255,255,255,1);
}

#footer-partenaires img {
    max-width:100%;
    max-height:100%;  
}

#footer-coordonnees {
    font-family:Arial;
    padding:5px;
    text-align:center;
    font-size:14px;
    margin-top:20px;
}

#footer-inscriptions {
    padding-bottom:15px;
    /*display:none;*/
}

/* page partenaires */
#partenaires {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;  
    gap:20px;
    
}

#partenaires a {
    width:calc(20% - 10px);   
    height:200px;
    padding:20px;
    background-color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:5px;
}

#partenaires img {
    max-width:100%;
    max-height:100%;  
}

/* page infos pratiques */
#infos-pratiques {

}

.info-pratique {
    display:flex;
    justify-content:space-between;
    gap:20px;   
    margin-bottom:30px; 
}
.info-pratique-visuel {
    flex:1;
}
.info-pratique-visuel img {
    max-width:100%;
}

.info-pratique:nth-child(odd) {
    flex-direction:row-reverse;
}
.info-pratique-texte {
    flex:2;
}

.info-pratique-texte div {
    color:#000;
}


/* page produits */
#produits {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:20px;   
}

#produits a {
    text-decoration:none;
}

#produits a img {
    max-width:100%;
}

#produits a div {
    font-size:24px;
    margin:10px 0;
    color:#000;
}

@media (max-width: 800px) {
  html, body {
    height:100%;
  }
  
  img {
    max-width:100%!important;
    height:auto;
  }

  .conteneur {
    width:94%;
    margin:auto;
  }
  
   #menu-respliens {
       height: 80%;
       margin-top: 10%;
   } 
   #menu-principal li a {
    font-size:24px;
   }
   
   #header-content {
    display:block;
   }
   
   #header-reseaux {
    position: absolute;
    right: 0;
    top: 0;   
   }
   #header-reseaux-content {
    padding:10px;
    width:40px;
   }
   
    #header-reseaux img {
        width:20px;
    }   
       
   
   #menuBurger-conteneur {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;   
   }
   
    #header-slogan {
        width: 100%;
        text-align:center;
        padding-top: 150px;
    }  
    
    #header-inter {
        margin-top:0;
        align-items: center;
        justify-content:center;
    } 
    #header-date, #header-panneau {
        display:none;
    }
   
   

    #home-conteneur {
        height:auto;
    }
    #home {
        flex-direction:column;
    }
    #home-logo {
        background:none;
        padding:0;
    }
    
    #home-infos {
        flex-direction:column-reverse;
        gap:30px;
        margin-bottom:50px;        
    }   
    
    #footer-entete-content {
        flex-direction:column-reverse;
    } 
    
    #footer-merci {
        margin-bottom: -15px;
    }
    
    #footer-partenaires img, #partenaires img {
        max-height:100%;   
        max-width:100%;
    }
    #footer-partenaires a {
        width:calc(33% - 20px);
    }    

    #partenaires a {
        width:calc(50% - 20px);
    }
    
    .info-pratique, .info-pratique:nth-child(odd) {
        flex-direction:column-reverse!important;
    }
    .info-pratique-visuel {
        margin-bottom:20px;
        flex:1;
        width:100%;
    }
    .info-pratique-texte {
        flex:1;
    }
}

/* galeries photos */
#galeries {
    display:flex;
    gap:50px;
    flex-wrap:wrap;
    justify-content:space-between;
    flex-direction:column;
}
.galerie {
    /*width:calc(50% - 20px);*/
    width:100%;
    
    
}

.galerie li {
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    width:100%;
    height:640px;
}

.lSAction>a {
    width: 60px!important;
    height: 60px!important;
    
}

.lSNext, .lSPrev {
    text-decoration:none;
    background-color:rgba(254,204,0,1);
    display:flex!important;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}
.lSNext:hover, .lSPrev:hover {
    text-decoration:none;
    background-color:rgba(255,255,255,1);
}
.lSNext::before {
    content: '\203A';
    color:#444;
font-size: 20px;
    font-family: arial;
    font-weight: 800;
}
.lSPrev::before {
    content: '\2039';
    color:#444;
    font-size:20px;
    font-family: arial;
    font-weight: 800;    
}

