/*/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////// GENERAL //////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////*/

*{
    font-family: 'Cardo-Regular', 'Courier New', Courier, monospace;   
    font-size: 20px;
    color: rgba(44, 43, 43, 0.685);
}
html{
    width: 100%;
    height: 100%;
    margin: 0%;
    padding: 0%;
}
body{
    margin: 0%;
    padding: 0%;
}
@font-face {
    font-family: "Androgina_Romantic";
    src: url(font/Androgina\ ✣\ Romantic.otf);
}
@font-face {
    font-family: "Cardo-Regular";
    src: url(font/cardo/Cardo-Regular.ttf);
}
a, a:visited{
    text-decoration: none;
    text-decoration: underline;
    color: rgba(70, 69, 69, 0.685);
}
.nav>ul>li>a, h2, h3 {
    font-family:"Androgina_Romantic";
    font-weight: normal;
}
h1, ul, h2{
      margin: 0%;
      padding: 0%;
}
h2{
    font-size: 20px;
    padding-top: 4%;
    padding-bottom: 5%;
    color: rgba(20, 19, 19, 0.685);
    font-weight: normal;

}
h3{
    color: rgba(128, 125, 125, 0.5);
    font-size: 20px;
    margin-top: 20px;
}



/*/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////// MAIN //////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////*/

main{
    height: 560px;
}
/*/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////// HEADER //////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////*/

header{
    min-height: 100vh;
    background-image: url(images/headersacho);
    background-size: cover;
    
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////// SECTION //////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////*/

section{
    min-height: 100vh;
    box-sizing: border-box;
    background-image: url(images/webstie2.png);
    background-size: cover;

}
.viewport{
    background-color: rgba(255, 244, 244, 0.3);      
    min-height: 100vh; /*prend tout l'écran*/
    padding-left: 12%;
    padding-right: 9%;
}


/*//////////////////////////////////////////NAVIGATION/////////////////////////////////////////////////////////*/


.nav{
    background-color: rgba(240, 236, 236, 0.7);
    padding-left: 10%;
    padding-right: 20%;
    /*
    bottom: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    */
    
}

.nav.fixed{
        position:fixed;
        top:0;
        z-index:1000;
      }
  
.nav>ul{
    padding-left: 0;
    display: flex;
    justify-content: space-between;
   

}

.nav>ul>li{
    display: inline;
    font-size: 20px;
    padding-top: 2.5%;
    
}


/*
#logo{
    
}
*/

/*//////////////////////////////////////////PROGRAMMATIONS/////////////////////////////////////////////////////////*/


#detail_progra{
    display: flex;
    justify-content: space-between;
    padding-right: 10%;
    padding-left: 10%;
      
}

li{
    list-style: none;
}



.artistes > li > a {
    font-family: 'Cardo-Regular', 'Courier New', Courier, monospace;   
    font-size: 20px;
    color: rgba(44, 43, 43, 0.685);
}

/*//////////////////////////////////////////INFOS/////////////////////////////////////////////////////////*/


#infos-pratiques, #acces, #contact{
    padding-bottom: 5%;
}
#titre_infos{
    padding-top: 15%;
}
#acces{
    display: flex;
    justify-content: space-between;
}
.text_acces{
    display: block;
    width: 43%;
}
/*
.text_acces>p{
    font-size: 16px;
}
*/
.text_acces>p>a{
    font-size: 20px;
}



/*//////////////////////////////////////////CONTACT/////////////////////////////////////////////////////////*/
#reseaux{
    display: flex;
    justify-content: space-between;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20%;
}
#contact>p>a{
    font-size: 20px;
}

/*//////////////////////////////////////////BILLETTERIE/////////////////////////////////////////////////////////*/
#box{
    border: solid;
    height: 250px;
    overflow: scroll;
    margin-bottom: 3%;
}



#lien_asso{
    padding-top: 1%;
    display: block;
    font-family: 'Cardo-Regular', 'Courier New', Courier, monospace;   
}
/*//////////////////////////////////////////BILLETTERIE/////////////////////////////////////////////////////////*/

#soutiens{
    margin-top: 10%;
}

/*//////////////////////////////////////////FIN/////////////////////////////////////////////////////////*/

#emoji{
    padding-top: 5%;
    text-align: center;
}

#fin{
    text-align: center;
    padding : 8%;
    margin-top: 5%;
    margin-bottom: 0%;

}

/*//////////////////////////////////////////TEXTE DEFILANT/////////////////////////////////////////////////////////*//* le block conteneur */
.marquee-rtl {
    max-width: 100%;                      /* largeur de la fenêtre */
    margin: 1em auto 2em;
    border:  solid #F0F0FF;
    overflow: hidden;                     /* masque tout ce qui dépasse */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 244, 244, 0.7);
    margin: 0%;

    /*
    box-shadow: 0 .25em .5em #CCC,inset 0 0 1em .25em #CCC;
    */
  }
  /* le bloc défilant */
.marquee-rtl > :first-child {
    display: inline-block;                /* modèle de boîte en ligne */
    padding-right: 2em;                   /* un peu d'espace pour la transition */
    padding-left: 100%;                   /* placement à droite du conteneur */
    white-space: nowrap;                  /* pas de passage à la ligne */
    animation: defilement-rtl 15s infinite linear;
  

  animation-name : defilement-rtl;       /* référence à la règle @keyframes mise en oeuvre */
  animation-delay : 3s;                 /* valeur à ajuster suivant la longueur du message */
  animation-iteration-count: infinite;  /* boucle continue */
  animation-timing-function: linear;    /* pas vraiment utile ici */
}
@keyframes defilement-rtl {
    0% {
      transform: translate3d(0,0,0);      /* position initiale à droite */
    }
    100% {
      transform: translate3d(-100%,0,0);  /* position finale à gauche */
    }
  }



  /*//////////////////////////////////////////MEDIA QUERIES/////////////////////////////////////////////////////////*/

  /*IPHONE*/
    /*Landscape Mode*/
        @media screen and (max-device-width: 480px) 
        { 
            #logo{
                height: 15%;

            }
        }
        /* Portrait Mode */
        
        @media screen and (max-device-width: 320px) 
        { 
            #logo{
                height: 15%;
            }
        }