/* import des fonts Google */
@import url('https://fonts.googleapis.com/css?family=Limelight|Poiret+One');

/* header */
h1 {
	font-family: "Limelight", cursive;
}

.header-bg {
	background: url('./images/header-bg.jpg') no-repeat center top;
	background-size: auto;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
	z-index: -1;
}

/* polices pour tout le site */
body, h2, h3, h4, h5 {
	font-family: "Poiret One", cursive;
	font-weight: bold;
}

text-black, a.text-black {
	color: #212529;
}

a.text-black:hover, a.text-black:focus {
	color: #343a40;
}

/* lignes à fond blanc */
.row-sepia, a.row-sepia {
	background-color: #fffce0;
	color: #212529;
	text-decoration: none;
}

a.row-sepia:hover, a.row-sepia:focus {
	text-decoration: underline;
}

/* menu et autres lignes à fond noir */
.row-black, a.row-black {
	background-color: #212529;
	color: white;
	text-decoration: none;
}

a.row-black:hover, a.row-black:focus {
	text-decoration: underline;
}

/* discotheque */

.album {
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}

.pochette {
  -webkit-filter: sepia(100%); /* Safari */
  filter: sepia(100%);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.nomalbum {
  background-color: white;
  opacity: 0;
  filter: alpha(opacity=0); /* For IE8 and earlier */
  z-index: 100;
  text-align: center;
  -webkit-transition: 1.5s;
  -moz-transition: 1.5s;
  -o-transition: 1.5s;
  transition: 1.5s;
}

.listetitres {
  display: none;
}

#boutonpause {
	display: none;
	font-weight: bold;
}

.album:hover>.pochette, .album:focus>.pochette, .album:active>.pochette {
    -ms-transform: scale(1.5, 1.5); /* IE 9 */
    -webkit-transform: scale(1.5, 1.5); /* Safari */
    transform: scale(1.5, 1.5);
    -webkit-filter: sepia(0%); /* Safari */
    filter: sepia(0%);
}

.album:hover>.nomalbum, .album:focus>.nomalbum, .album:active>.nomalbum {
  opacity: 0.7;
  filter: alpha(opacity=70); /* For IE8 and earlier */
  -ms-transform: scale(1.5, 1.5); /* IE 9 */
  -webkit-transform: scale(1.5, 1.5); /* Safari */
  transform: scale(1.5, 1.5);
}

.album:hover {
  z-index: 10;
}

.titre:hover {
  cursor: pointer;
}

/* Fin section discotheque */