/* --[ Global ]-- */
* {margin:0px; padding:0px; box-sizing: border-box;}

/* Titres */
@font-face {
    font-family: 'dknew';
    src: url('../fonts/dknew.woff2') format('woff2'),
         url('../fonts/dknew.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'futura';
    src: url('../fonts/futura.woff2') format('woff2'),
         url('../fonts/futura.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
.clear {clear:both;}

/* ============================================== Structure generale =====================================================================*/
html {
  background:#fff;
  font: 20px 'Roboto Condensed', sans-serif;
  font-weight:300; 
  line-height:30px;
  letter-spacing: 1px;
  text-align:justify;
  height: 100%;  
  box-sizing: border-box;
  /*text-transform: uppercase;*/
} 

body {height: 100%;}
.conteneur {max-width:1180px; margin:0px auto; padding: 0 40px}
header nav {position: fixed; top: 0; right: 0; width: 100%; z-index: 3; background: #fff; box-shadow: 0 0 5px rgba(0,0,0,0.2);}
header nav a {float: left; line-height: 26px; margin-bottom: 0; text-transform: uppercase; font-size: 20px; color: #666}
header nav ul {float: right; line-height: 0; margin: 11px 20px 0 0;}
header nav ul li {float: left; margin:0 10px;}
header nav ul li.rond {color: #333; font-family: arial; padding: 14px 0 0 0; float: left;}


/* VIDEO TOP */
header {background-color:#000; text-align: center; width: 100%; }
#header-accueil {background: #000 url('../img/bandeau.jpg') no-repeat center center; background-size: cover; text-align: center; width: 100%; height: 100%; display: table; margin-bottom: 60px}
#video-fond {width: 100%; height:100%; box-shadow:inset 0 0 10px rgba(0,0,0,0.7); background: #000 url('../img/bandeau.jpg') no-repeat center center; background-size: cover; display: block;}

#accueil-txt {
  text-align: center;
  width: 100%;
  top:35%;
  position: absolute;  
  z-index: 1
}
#accueil-txt h1 {font-size: 140px; text-transform: uppercase; letter-spacing: 14px; text-shadow: 0 0 10px rgba(0,0,0,0.5); line-height:120px; display: block; font-weight: bold}
#accueil-txt img {width:400px;}
#accueil-txt p {
  font: 25px 'catamaran', sans-serif;
  letter-spacing: 5px; 
  margin: 20px 10px 10px 10px; 
  text-shadow: 0 0 10px rgba(0,0,0,0.7); 
  color: #f0f0f0;
  text-transform: uppercase;
}

#accueil-flechebas {
  background:rgba(255,255,255,0.07) url('../img/fleche-bas1.png') no-repeat center 27px;
  background-size: 39px 18px;
  position: absolute;   
  left:50%; 
  margin-left: -39px; 
  width: 65px; 
  height: 65px;   
  border-radius: 65px;   
  z-index: 2;
  display: block;
  transition: 0.2s all ease-in-out;
  -webkit-animation: bounce 1.2s linear infinite;
  -moz-animation   : bounce 1.2s linear infinite;
  -o-animation     : bounce 1.2s linear infinite;
  animation        : bounce 1.2s linear infinite;
}
#accueil-flechebas:hover {background:rgba(255,255,255,0.1) url('../img/fleche-bas1.png') no-repeat center 27px; background-size: 39px 18px; bottom: 25px}

@-moz-keyframes bounce{
from{bottom:20px;}
10%{bottom:21px;}
20%{bottom:23px;}
30%{bottom:27px;}
40%{bottom:33px;}
50%{bottom:40px;}
60%{bottom:33px;}
70%{bottom:27px;}
80%{bottom:23px;}
90%{bottom:22px;}
to{bottom:20px;}
}
@-webkit-keyframes bounce{
from{bottom:20px;}
10%{bottom:21px;}
20%{bottom:23px;}
30%{bottom:27px;}
40%{bottom:33px;}
50%{bottom:40px;}
60%{bottom:33px;}
70%{bottom:27px;}
80%{bottom:23px;}
90%{bottom:22px;}
to{bottom:20px;}
}
@-o-keyframes bounce{
from{bottom:20px;}
10%{bottom:21px;}
20%{bottom:23px;}
30%{bottom:27px;}
40%{bottom:33px;}
50%{bottom:40px;}
60%{bottom:33px;}
70%{bottom:27px;}
80%{bottom:23px;}
90%{bottom:22px;}
to{bottom:20px;}
}

/* MENU Responsive */
#menuresp {width: 100%; height: 100%; display: none; background: rgba(0,0,0,0.6); z-index: 3}
#menuresp ul {float: none; position: absolute; top: 35px; left: 0; z-index: 2; width: 100%}
#menuresp ul li {float: none; margin:0; background: rgba(0,0,0,0.9); cursor: pointer; border-bottom: 1px #333 solid}
#menuresp ul li a {float:none; line-height: 26px; margin-bottom: 0; text-transform: uppercase; font-size: 20px; padding:20px; color: #fff; font-weight: bold}
#menuresp ul li a:hover {background:#f101a8; color: #fff}
#fond-logo {background:#fff; width: 100%; height: 56px; box-shadow: 0 0 10px rgba(0,0,0,0.5); z-index: 4; position: fixed; display: none}

#barres {
  display: none;
  width: 70px;
  height: 46px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 18px;
  cursor: pointer;
}
#barres span {
  display: block;
  background: #333;
  height: 7px;
  width: 100%;
  margin: 4px 0;
  border-radius: 1px;
}

.logo {
  font-weight: bolder;
  font-size: 20px;
  background: #000;
  padding: 10px;
  color: #fff;
  letter-spacing: 1px;
  transition: 0.3s all ease-in-out;
}
.logo:hover {color: #fff; background:#f101a8; padding-left: 20px}
.centre {text-align: center; width: 100%; margin: 0 auto}

.bandeau-concert {background: url('../img/presse2.jpg');}
.videos iframe {width: 100%; height:450px;}
.lecteur-audio {border: 0; width: 350px!important; height: 786px!important; margin-bottom: 30px}

#photo-presse {background: url('../img/presse2.jpg') no-repeat 50% 50% fixed; background-size: cover; width: 100%; height: 300px; box-shadow: inset 0 0 10px rgba(0,0,0,0.7)}
#shop {background: url('../img/shop.jpg') no-repeat 50% 50% fixed; width: 100%; height: 300px; box-shadow: inset 0 0 10px rgba(0,0,0,0.7)}
#bonhomme {background:#ba5d3b url('../img/bonhomme.gif') no-repeat 50% 200px fixed; width: 100%; height: 300px; box-shadow: inset 0 0 10px rgba(0,0,0,0.7); margin:40px 0;}
.titre {
  color: #fff;
  font: 70px 'catamaran', sans-serif;
  text-shadow: 0 0 5px rgba(0,0,0,0.8);
  padding-top: 14vh;
  text-transform: uppercase;
  font-weight: bolder;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.produits {background: #f2f2f2; padding: 20px 0}
.produits .col { width: 25%; padding: 30px; float: left}
.produits .produit {padding-bottom: 15px}
.produit {background: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.2); position: relative;}
.produit p {text-align: center; color:#999;}
.produit span {
  position: absolute;
  top: 0px;
  left: 0px;
  color: #868686;
  background: #efefef;
  font-size: 28px;
  padding: 10px 15px;
  border-bottom-left-radius: 5px;
}.prod-cd:hover > .commande-cd {opacity: 1;}
.prod-tshirt:hover > .commande-tshirt {opacity: 1;}
.prod-calin:hover > .commande-calin {opacity: 1;}
.commande-cd,.commande-tshirt,.commande-calin {
  background: rgba(0, 0, 0,0.95);   
  position: absolute; 
  top: 0; 
  left: 0; 
  z-index: 2; 
  width: 100%; 
  height: 100%;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.commande-cd a,.commande-tshirt a,.commande-calin a {
  border:1px #fff solid; 
  color: #fff; 
  text-transform: uppercase;   
  font-weight: bold;
  padding: 10px 30px;
  letter-spacing: 2px;
  box-shadow: 0 0 7px rgba(0,0,0,0.1);  
}
.commande-cd a:hover,.commande-tshirt a:hover,.commande-calin a:hover {background: #fff; color: #000}
.commande-cd em,.commande-tshirt em,.commande-calin em {font-size: 12px; line-height: 16px}

.bouton1 {color:#000; border: 1px solid #000; padding: 20px 50px; display: inline-flex; margin-top: 30px}
.bouton1:hover {color: #fff; border: 1px solid #000; background: #000}

/* ========== Concerts ========== */          
.concerts {padding: 50px 0 70px 0;}
.concerts p {text-align: center; text-transform: uppercase; font-size: 30px; line-height: 70px}
.concerts p b {background: #000; color: #fff; padding: 5px 10px; margin-right: 10px}
.concerts em {font-style: normal; font-size: 40px; font-weight: bolder;}


.presentation {margin:60px 0; text-align: center;}
#titre {text-align: center; margin-bottom: 30px}

/*h1 {font-size: 160px; line-height: 50px; letter-spacing: 10px; padding-top: 80px; margin-bottom: 8px;}
h1 span {  
  font-size: 20px;
  letter-spacing: 30.5px;
  color: #fff;
  font-weight: lighter;
  text-transform: uppercase;
  padding:40px 0 0 26px;
  display: block;
}*/
h1 {font: 150px 'catamaran', sans-serif; color:#000; text-align: center; text-transform: uppercase;}
h2 {font: 50px 'catamaran', sans-serif; color:#000; text-align: center; text-transform: uppercase;}
img {max-width: 100%}
a {color: #fff; text-decoration: none; display: block; }
a:hover {color: #000}

#audiovideos {margin-bottom: 50px}
.audios {margin:50px 0 10px;}
.audio iframe {float: left; margin-bottom: 50px}
.videos {margin:0 0 50px;}
.videos iframe {border: 10px #000 solid;}
.produit-bordure {position:absolute; bottom: 20px; right: 20px; width: 15%; min-width: 130px; max-width: 200px;}
.produit-bordure p {position: absolute; bottom: 20px; width: 100%; right: 0px; font-size: 12px}
.produit-bordure .commande-cd a {padding: 25px 30px}
.produit-bordure .produit {z-index: 2; box-shadow:0 0 0 5px rgba(255,255,255); line-height: 0;}
.sectiontitre {margin-bottom: 30px}

.btn {
  display: inline-block;
  margin-bottom: 10px;
  padding:8px 15px 7px 15px;
  text-transform: uppercase;
  text-shadow: 0px 1px 3px rgba( 0, 0, 0, 0.2);   
  text-align:center;
  transition: all 0.1s ease-in-out;  
  border:1px solid #fff;
  letter-spacing: 0.5px
}
.btn:hover {
  background:#fff;
  color: #a44835;
}

/* espace pro */
.documents1,.documents2 {    
  display: flex;
  align-items: center;
  justify-content: center;
}
.documents2 {margin-bottom: 50px}
.documents1 a {border: 1px #ba5d3b solid; color: #ba5d3b; margin: 10px 5px; padding: 10px 15px; transition: 0.2s all ease-in-out}
.documents1 a:hover {background-color: #ba5d3b; color: #fff}
.documents2 a {background: #fff; border: 1px #000 solid; color: #333; margin: 10px 5px; padding: 10px 15px; transition: 0.2s all ease-in-out}
.documents2 a:hover {background: #000; border: 1px #000 solid; color: #fff}
.presslow {border: 10px #fff solid; box-shadow: 0 0 5px rgba(0,0,0,0.3); position: relative;}
.pro {background: #f2f2f2; padding: 50px 0}
.pro em {
    font-size: 12px;
    text-align: right;
    width: 100%;
    display: block;
    color: #565656;
    margin-top: -10px;
}
.zikos span {color: #000}

#retour-top {
    background: rgba(0, 0, 0, 0.3) url(../img/retour_top.png) no-repeat center center;
    display: block;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index:4;
    color: #fff;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease-out;
}
#retour-top:hover {background: rgba(0, 0, 0, 0.5) url(../img/retour_top.png) no-repeat center center;}

/* FOOTER */
footer {background:#000; text-align: left; padding: 30px; position: relative; color: #fff;}
footer h2 {color: #fff; text-transform: uppercase; font-size:20px; text-align: left;}
footer ul li {line-height:28px; font-size: 16px}
footer ul li a:hover {color: #f101a8}
footer .col {float: left; margin-right: 40px; min-height: 164px;}
.logo-footer {position: absolute; bottom:0; right:10%}
footer .social {margin-top:-10px; float: right; min-height: inherit;}
footer .social ul li {display: inline-block; margin:0 5px 7px 0; }
footer .social ul li a {border-radius:30px; width: 45px; height: 45px; padding: 8px; transition: 0.2s all ease-in-out}
footer .social ul li a:hover {background-color:#f101a8;}
footer .social ul li a img {height: 30px; width: 30px}

.concerts {margin: 50px 0}
.bit-widget a {color: #000!important}
.bit-widget .bit-offers {background-color: #000!important; border: 1px solid #000!important; color: #fff!important}
.bit-widget .bit-offers:hover {border: 1px solid #333!important; background:#333!important;}
.bit-widget .bit-top-track-button,.bit-widget .bit-rsvp {display: none!important}
.bit-widget .bit-venue {color: #999!important}
.bit-widget.bit-layout-desktop .bit-date,.bit-widget.bit-layout-desktop .bit-location {color: #333!important}
.bit-widget .bit-upcoming-events-show-all-button, .bit-past-events-show-all-button {color: #fff!important; border: 1px solid #fff!important;}
.bit-widget .bit-logo {display: none!important;}
.references {margin: 50px auto}
.bit-widget .bit-event-list-title {color: #000!important; text-transform: uppercase;}

ul {margin-bottom: 30px}
ul li {list-style: none}

.legende {font-size: 14px; letter-spacing:1px; text-align: center;}
.legende2 {font-size: 12px; letter-spacing:1px; color: #999; float: right;}
.booking li a {display: contents;}

/* ------------ RESPONSIVE ------------ */
@media (max-width: 1600px) {  
  .produits .col {width: 33.3%; padding: 0px 20px 20px 20px}  
}
@media (max-width: 1100px) {  
  .commande-cd em, .commande-tshirt em, .commande-calin em {line-height: 11px!important}
}
@media (max-width: 950px) {  
  footer .col {float:none!important;}
}
@media (max-width: 870px) {  
  footer .social {float: none;}
}

@media (max-width: 850px) {   
  .concerts table tr td:nth-of-type(1) {max-width: inherit;}
  .produits {padding: 20px 0}
  .produits .col {width: 50%; padding: 0px 20px 20px 20px}  
  .prod-calin {display: none;}
}
@media (max-width: 800px) {   
  #barres {display: block;}
  .menu-liens {display: none;}
}
@media (max-width: 700px) {   
  footer .social {float: left;}
}
@media (max-width: 600px) {   
  #photo-presse h2 {padding-top: 60px}
  .produits .col {width: 100%; padding: 0px 20px 20px 20px}   
  .logo-footer,#mon-element-fixed {display: none;}
  #fond-logo {display: block;}
  .concerts {font-size: 13px}
  .conteneur {padding: 0 15px}
  .produit-bordure {display: none;}
  .videos iframe {height: auto}
}
@media (max-width: 500px) { 
  #photo-presse h2, #bonhomme h2, #shop h2 {font-size: 50px}  
  h1 {font-size: 20vw!important;}
  #titre p {font-size: 30px}
  h1 span {letter-spacing: 15px}
  footer .col {text-align: center; width: 100%; margin-right: 0}  
  footer h2 {text-align: center;} 
  #video-fond > video {display: none} 
  .titre {font-size: 9vw; padding-top: 17vh;}
  .documents1, .documents2 {display: block}
  #accueil-txt {top:30vh; padding: 0 30px;}
  .lecteur-audio {width: 100%!important}
  .concerts p {line-height: 60px}
  .concerts p b {display:block;}

  .videos {margin:0 0 20px;}
  .produits {margin:30px 0 0;}  
  footer {padding: 30px 10px;}  
  footer ul {clear: both;}
}