@import url(https://fonts.googleapis.com/css?family=Arimo|Dosis:300,400,600&display=swap);
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

:root{
  --orange:#e98102;
  --jaune:#F2B705;
  --anis:#a7af37;
  --bleuvert:#5e8b88;
  --gris:#969696;
  --grisfonce:#29363B;

}

body{
    background-color: var(--grisfonce);
    font-family: 'Dosis', sans-serif;
}

ion-icon {
    font-size:22px;
    vertical-align: sub;
    padding-left:10px;
    padding-right: 5px;
}
.big{font-size: 24px; rotate: 10deg; vertical-align: sub; padding:0 3px 0 15px;}
.ion-small {font-size: 16px; vertical-align: sub; padding:0 3px 0 0px;} /* spécifique page compagnie*/

/*Header*/

nav{
    display: grid;
    grid-template-columns: 3% 1fr 1fr 3%; 
    /* 10% pour les col de droite et gauche, 1fr signifie que le reste est partagé équitablement entre 2 col pour un total de 4 col - si j'ajoute 
    un 1fr il y aura donc 5 col*/
    min-height: 8vh;
    color:white;
    align-items: center;
}

#logo{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    color:#fff;
    grid-column: 2 / 3; /* on place ce logo ds la colonne 2 - part du bord de la 2 jusqu'au bord de la 3*/
    font-size: 30px;
    line-height: 30px;
}

/*Titre page*/
#rubrique{
    display: grid;
    grid-template-columns: 3% 1fr 1fr 3%; 
    color:white;
    align-items: center;   
    min-height: 5vh;
}


.bandeau-couleur{background: var(--jaune); width:100%;} /*spectacles*/
.bandeau-couleur1{background: var(--orange); width:100%;} /*Musique*/
.bandeau-couleur2{background: var(--anis); width:100%;} /*actions culturelles*/
.bandeau-couleur3{background: var(--bleuvert); width:100%;} /*la compagnie*/
.bandeau-couleur4{background: var(--gris); width:100%;} /*contact*/

.titre{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    color:#000;
    font-size: 28px;
    text-transform: uppercase;
    grid-column: 2 / 3;
}

.titre a{
    text-decoration: none;
    color:#000;
}

.titre a:hover{
    color:#fff;
}

.ariane {
    display: block;
    margin: 12px 0px 0px 38px;
    color:#fff;
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}
.ariane a{
    color:#fff;
    text-decoration: none;
}

.ariane a:hover{
    color: var(--jaune);
}

.icone{
    cursor: pointer;
    justify-self: end;
    width: 35px;  
}



/* Menu rideau */

.overlay, .overlay1, .overlay2, .overlay3, .overlay4{ 
    /* Positionne le bandeau menu à droite avec une largeur de 290px - le right:-290px fait disparaitre le menu pr qu'il ne s'affiche qu'au clic sur le menu burger*/
    height: 100%;
    width: 290px;
    position: fixed;
    z-index: 10;
    right: -290px;
    top:0; 
    opacity:1;
    overflow-x: hidden; /* cache la scrollbar horizontale*/
}

/*couleur menu selon rubrique*/
.overlay{background: var(--jaune);} /*spectacles*/
.overlay1{background: var(--orange);} /*Musique*/
.overlay2{background: var(--anis);} /*la compagnie*/
.overlay3{background: var(--bleuvert);} /*actions culturelles*/
.overlay4{background: var(--gris);} /*contact*/

.overlay-content{ /* Positionne les éléments à l'intérieur du bandeau menu*/
    position: relative;
    top:20%;
    width: 100%;
    text-align: center;
}

.overlay a, .overlay1 a, .overlay2 a, .overlay3 a, .overlay4 a{
    padding:8px; 
    font-family: 'Dosis', sans-serif; 
    font-weight: 400; 
    text-decoration: none; 
    font-size: 30px; 
    color: #29363B ; 
    display: block; 
    transition: 0.3s;
}

.overlay a:hover, a:focus { color:#fff;}
.overlay1 a:hover, a:focus{ color:#fff;}
.overlay2 a:hover, a:focus{ color:#fff;}
.overlay3 a:hover, a:focus { color:#fff;}
.overlay4 a:hover, a:focus { color:#fff;}

.overlay a.active { color:#fff;}
.overlay1 a.active{ color:#fff;}
.overlay2 a.active{ color:#fff;}
.overlay3 a.active{ color:#fff;}
.overlay4 a.active { color:#fff;}

.overlay .closeBtn, .overlay1 .closeBtn, .overlay2 .closeBtn, .overlay3 .closeBtn, .overlay4 .closeBtn{
    position: absolute;
    top:5px;
    right:45px;
    font-size: 60px;
    color:#29363B ;
}

/*Contenu*/
#contenu{
    display: flex;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    padding: 30px 0px;
    margin: 0 auto;
    justify-content:center;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}

#contenu img{
    width:25%;
    padding: 5px 5px;
}

#contenu a img{
    width:100%;
    transition:ease-in-out 1s;
}

#contenu a:hover img{
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}

#contenu2{
    display:flex;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    padding: 18px 30px;
    margin: 0 auto;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}

#contenu2 p{
    display: block;
    text-align: justify;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color:#fff;
    line-height: 22px;
    padding-bottom: 8px;
}
#contenu3{
    display: flex;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    padding: 30px 0 30px 0;
    margin: 0 auto;
    justify-content: center;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
    color: #fff;
}
.p1{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    text-align: justify;
    font-size: 18px;
    line-height: 1.3em;
    margin: 0 auto;
    width:90%;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #fff;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}
.p1 p{
    padding-bottom: 15px;
}

.p1 p.retrait{
    text-align: center;
}

.p2{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 22px;
    line-height: 1.3em;
    margin: 0 auto;
    width:90%;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}
.p2 p{
    padding-bottom: 15px;
}


#contenu-actions{
    display: flex;
    flex-direction: column;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    padding: 30px 0 30px 0;
    margin: 0 auto;
    justify-content: center;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}

.p3{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    text-align: justify;
    font-size: 19px;
    line-height: 1.25em;
    margin: 0 auto;
    width:90%;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}

.p3 p{
    padding-bottom: 10px;
}

.p3 ul {
    padding:5px 20px 20px 40px;
    list-style: none;
}

.p3 li::before{
    content:"■";
    color: var(--jaune);
    padding-right:5px;
}

.p3 h3{
    font: 18px 600;
    text-transform: uppercase;  
}
.p3 h4{
    margin:10px 0px;
}
.p3 h4::before{
    content:"■";
    color: var(--jaune);
    padding-right: 5px;
}

.parcours{background-color: var(--bleuvert); border-radius: 10px;}

.p4{ margin:0px 15px; padding-top: 10px;}
.ion-ul{
    color:var(--jaune);
    font-size: 16px;
    font-style: italic;
}

.extrait{
    font-style: italic;
    margin : 15px 0 15px 30px;
    font-size: 16px;
    line-height: 18px;
    padding-left:10px;
    border-left: dotted #fff 1px;
}

#contenu2 p.distrib{
    font-size: 1em;
    line-height: 1em;
}

.public{
    margin: 15px 0 15px 0;
}

#contenu2 p.soutiens{
    font-size: 0.98em;
    line-height: 1.05em;
}

#contenu2 p.telechargements{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    text-transform:uppercase;
    color: #fff;
    padding-top: 10px;
}

#contenu2 p.black{color: #000;}


#clean{
    display: block;
    clear: both;
}


@keyframes pcontenu{
    from {opacity:0;}
    to {opacity:1;}
}

.column {
    float: left;
    width: 25%;
    padding: 20px;
  }

.column img{width:100%;}
  
.column2 {
    float: left;
    width: 75%;
    padding: 20px;
  }
/* p.last{
    margin-bottom:15px;
} */
  
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
  }

/*/////////////// MUSIQUE ////////////////////////*/
.cd{
    display:flex;
    justify-content:center;
    flex-wrap: wrap;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    gap: 10px;
    margin: 0 auto;
    max-width:fit-content;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}
.cd img{
    width:90%;
    margin-bottom: 5px;
    border-radius: 10px;
    box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.59);
    -webkit-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.59);
    -moz-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.59);
    transition:ease-in-out 1s;
}
.cd p{
    text-align: left;
    padding-left:20px;
    margin-bottom: 25px;
    color:#fff;
    text-transform: uppercase;
}

.cd img:hover{
    cursor: pointer;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
  }

.credits{
    text-align: center;
    margin-left:25px;
    color:#fff;
    font-size: 1em;
}

.artiste{
    font-family: 'Dosis', sans-serif;
    margin-top:20px;
    display: grid;
    grid-template-columns: 5% 1fr 1fr 5%;
}

.artiste h2{
    font-family: 'Dosis', sans-serif;
    font-weight: 600;
    color:#fff;
    font-size: 25px;
    text-transform: uppercase;
     grid-column: 2 / 3;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
    margin-bottom: 15px;
}

.artiste h2:before{
    content:"\2771 \00A0"; 
    color:var(--orange);
}

.style-artiste{
    font-family: 'Dosis', sans-serif;
    font-weight: 400;
    color: var(--bleuvert);
    font-size: 20px;
}

.bandeau-artiste{
    display: flex;
    flex-wrap: wrap;
    font-weight: 300;
    font-size: 20px;
    margin:0 auto;
    width: 92%;
    padding-top:15px;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
  }
  
.pave-artiste{
  padding: 0px;
  flex: 30%;
  padding-top: 6px;
  padding-left: 15px;
  padding-right: 10px;
}

.pave-artiste img{
    width:100%;
    border-radius: 15px;
    margin-bottom: 10px;
}

.pave-artiste2{
    flex: 30%;
    font-family: 'Dosis', sans-serif;
    color:#fff;
    font-weight: 300;
    text-align: justify;
    font-size: 18px;
    line-height: 1.3em;
    padding-left:10px;
    padding-right: 20px;
    padding-bottom: 15px;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
}

.pave-artiste2 p{
    padding-bottom: 8px;
}

.pave-artiste .sous-texte{
    padding: 5px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    border-radius: 30px;
}

.concerts{
    margin-top:10px;
    padding:5px;
    border-radius: 30px;
    text-align: center;
    font-family: 'Dosis', sans-serif;
    font-size: 18px;
    font-weight: bold;
    color:#fff;
    width:100%;
}

.infosmall{font-size: 0.9em; font-style: italic;}
.sous-texte a{
    color:#fff;
    font-weight: bold;
    text-decoration: none;
}

.sous-texte a:hover{
    color:var(--orange);
    
}


.concerts a{
    color:#fff;
    font-weight: bold;
    text-decoration: none;
}

.concerts a:hover{
    color:var(--orange);

}


#concerts{
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    text-align: center;
    margin-left:25px;
    color:#fff;
    text-transform: uppercase;
    font-size: 1.4em;
    width: 100%;
    margin-bottom: 15px;
}

/*/////////////// LIENS ////////////////////////*/

a.one{
    color:#a7af37;
    font-family: 'Dosis', sans-serif;
    text-decoration: none;
    font-weight: 600;
}

a.one:hover{
    text-decoration: underline;
}

a.two{
    color:#F2B705;
    font-family: 'Dosis', sans-serif;
    text-decoration: none;
    font-weight: bold;
}

a.two:hover{
    text-decoration: underline;
}

a.three{
    color:#5e8b88;;
    font-family: 'Dosis', sans-serif;
    text-decoration: none;
    font-weight: bold;
}

a.three:hover{color:var(--orange);}

a.four{
    color:var(--orange);
    font-family: 'Dosis', sans-serif;
    text-decoration: none;
    font-weight: bold;
}
a.four:hover{
    color: var(--gris);
}


/*///////////////////CONTAINER/////////////////*/

#container{
    display: grid;
    grid-template-columns: 3% 94% 3%;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    color:#fff;
    align-items: center;
    margin-top:10px;
    animation: pcontainer 2s ease-in-out 2s;
    animation-fill-mode: backwards;
    margin-bottom: 20px;
}

#container>p{
    grid-column: 2 / 3;
    font-family: 'Dosis', sans-serif;
    font-size:1.1rem;
    line-height:2rem;
    font-weight: 300;
    text-transform: uppercase;
    color:#fff;
    word-spacing:2px;
}

#container .historique{
    grid-column: 2 / 3;
    font-family: 'Dosis', sans-serif;
    font-size:1.08rem;
    font-weight: 300;
    color:#fff;
    padding-bottom: 10px;
    text-align: justify;
}

#container h2{
    grid-column: 2 / 3;
    font-family: 'Dosis', sans-serif;
    margin-top:20px;
    font-size:1.6rem;
    line-height:2rem;
    font-weight: 400;
    text-transform: uppercase;
    color:#fff;
    padding-bottom:10px;
}

#container .rub{
    grid-column: 2 / 3;
    font-family: 'Dosis', sans-serif;
    font-size:18px;
    font-weight: 400;
    text-transform: uppercase;
    color:#a7af37;
    word-spacing:2px;
    padding-bottom: 5px;
    border-bottom:#a7af37 1px solid;
    margin: 20px 0px;
    width:38%;
}

.desc{
    font-family: 'Dosis', sans-serif;
    font-size:18px;
    text-transform: none;
    color: var(--anis);
}

.desc a{
    color: var(--jaune);
    text-decoration: none;
}

.desc a:hover{
    color:var(--anis);
    text-decoration: underline;
    text-underline-offset: 3px;
}

#container p::before{
    content:"\22B8 \00A0"; /* \22B8 = forme et \00A0 = espace sans retour à la ligne */
}

.creation:after{
    content: "> nouvelle création !";
}


@keyframes pcontainer {
    from {opacity:0;}
    to {opacity:1;}
}

#piedpage{
    width:94%;
    padding-top:10px;
    padding-bottom:15px;
    margin:0 auto;
    margin-top:50px;
    text-align: center;
    font-size: 1.02rem;
    font-family: 'Dosis', sans-serif;
    font-weight: 300;
    color: #fff;
    border-top: solid #969696 1px;
    animation: pcontenu 2s ease-in-out 2s;
    animation-fill-mode: backwards;
  }

.credit-zic{
    font-size: 11px;
    font-style: italic;
    color:#000;
    text-align: left;
    padding-bottom: 15px;
}

.credit-zic ul li{
    list-style-type:none;
    line-height: 1.2;
}

.credit-zic p::before{
    content: none;
}
#container .md-content p::before{content: none;}

#container .md-trigger {color:var(--jaune); font-weight: 300;}
#container .md-trigger:hover {color:var(--anis); font-weight: 300; text-decoration: underline; text-underline-offset: 2px;}

/*@ MEDIA*/
@media screen and (max-width: 992px) {

    #logo{font-size: 28px;}

    .titre{font-size: 26px;}

    /* .column { width: 35%;}
    .column2 {width: 65%;} */

    #container .rub{
        width:70%; 
        grid-column: 2 / 4;
        font-size:16px;
        line-height: 85%;
    }
    #contenu img{
        width:60%;
        margin: 0 auto;
    }

    #contenu a img{
        width:100%;
        text-align: center;
    }
    .credits{font-size: 0.85em;}
    .artiste h2{
        font-size: 22px; 
        grid-column: 2 / 4;
    }
    .style-artiste{font-size: 18px;}
    #concerts{font-size: 1.2em;}

    .bandeau-artiste{
        display: flex;
        flex-wrap: wrap;
        font-weight: 300;
        font-size: 20px;
        margin:0 auto;
        width: 92%;
        padding-top:15px;
        animation: pcontenu 2s ease-in-out 2s;
        animation-fill-mode: backwards;
      }
      
    .bandeau-artiste{
        display: block;
        margin: 0 auto;
    }

    .pave-artiste{
        padding:0;
        padding-bottom: 15px;
}

    .pave-artiste2{ 
      padding :0;
      }

  }


@media (max-width:480px){
    nav{
        display: grid;
        grid-template-columns: 3% 70% 24% 3%;
        min-height: 8vh;
    }
    
    #logo{
        grid-column: 2 / 3;
        font-size: 20px;
        line-height: 23px; 
    }

    .icone{
        width: 28px;  
    }

    .overlay a, .overlay1 a, .overlay2 a, .overlay3 a, .overlay4 a{
        font-size: 28px; 
    }

    .overlay .closeBtn, .overlay1 .closeBtn, .overlay2 .closeBtn, .overlay3 .closeBtn, .overlay4 .closeBtn{
        position: absolute;
        top:5px;
        right:25px;
        font-size: 50px;
        color:#29363B ;
    }   

/*Titre page*/
#rubrique{
    display: grid;
    grid-template-columns: 3% 94% 3%;
    min-height: 5vh;
}

.titre{
    grid-column: 2 / 3;
    font-size: 18px;
}


.cd img{
    width:100%;
    margin-bottom: 10px;
    }

.cd{
     gap:0px;
     padding: 0 20px;
    }
   
.cd p{
    text-align: center;
    padding-left:0px;
    margin-bottom: 25px;
    font-size: 0.9em;
    color:#fff;
    text-transform: uppercase;
    }

/*container / contenu*/
#container>p{
    font-size:0.95rem;
    line-height:1.4;
    }

#container .rub{
    grid-column: 2 / 4;
    font-family: 'Dosis', sans-serif;
    margin-top:20px;
    font-size:16px;
    line-height:85%;
    font-weight: 400;
    text-transform: uppercase;
    color:#a7af37;
    word-spacing:2px;
    padding-bottom: 5px;
    border-bottom:#a7af37 1px solid;
    margin-bottom: 10px;
    width:100%;
}

#container .historique{
        grid-column: 2 / 3;
        font-family: 'Dosis', sans-serif;
        font-size:1rem;
        font-weight: 300;
        color:#fff;
        padding-right: 8px;
        padding-bottom: 10px;
        text-align: justify;
    }
    
#container h2{
        grid-column: 2 / 3;
        font-family: 'Dosis', sans-serif;
        margin-top:20px;
        font-size:1.4rem;
        line-height:2rem;
        font-weight: 400;
        text-transform: uppercase;
        color:#fff;
        padding-bottom:10px;
    }

#contenu{
        display:block;
        text-align: center;
        padding: 10px 15px 12px 0;
    }

#contenu img{
        width:60%;
        margin: 0 auto;
    }

#contenu a img{
        width:90%;
        text-align: center;
    }

 #piedpage{
        padding-top:5px;
        font-size: 0.75rem;
        margin-top:20px;
      }

    #contenu2>p{
        text-align: justify;
        font-family: 'Dosis', sans-serif;
        font-weight: 300;
        font-size: 15px;
        line-height: 18px;
        color:#fff;
    }
    
    .column {
        width: 100%;
      }
        .column2 {
        width: 100%;
      }

    #clean{
        clear: both;
    }

    .extrait{
        font-size: 14px;
        font-style: italic;
        margin : 10px 0 10px 10px;
        padding-left:5px;
        border-left: dotted #fff 1px;
    }

    #contenu2 p.distrib{
        font-size: 1em;
        line-height: 1em;
    }
   
    #contenu2 p.soutiens{
        font-size: 0.8em;
        line-height: 1.05em;
    }
    
    #contenu2 p.telechargements{
        font-family: 'Dosis', sans-serif;
        font-weight: 300;
        font-size: 0.88em;
        text-transform:uppercase;
        color: #fff;
        padding-top: 8px;
    }
 
    .credits{font-size: 0.80em;}
    .artiste h2{font-size: 22px;}
    .style-artiste{font-size: 16px;}
    #concerts{font-size: 1.2em;}

    .p1 p{
        padding-bottom: 10px;
    }
    .p1 p.retrait{
        padding-left: 10px;
        text-align: left;
    }
    
   .retrait2{
        padding-left: 20px;
    }
    .concerts{
        padding:5px;
        border-radius: 20px;
        font-size: 16px;
    }

    .pave-artiste .sous-texte{
        font-size: 16px;
        border-radius: 20px;
    }

    ion-icon {
        font-size:18px;
        vertical-align: sub;
        padding-left:5px;
        padding-right: 2px;
    }

    .p3{
        margin-top: 10px;
        margin-bottom: 5px;
        font-size: 17px;
    }
    
    .p3 ul {
        padding:10px 10px 5px 15px;
        list-style: none;
    }
    
    .p3 li::before{
        content:"■";
        color: var(--jaune);
        padding-right:5px;
    }

    .desc{
        font-size:16px;
    }
}

