/* body */
body {
    margin: 0 auto;
    padding: 0;
    max-width: 1920px;
    font-family: 'Open Sans', sans-serif;
    color: #b8966c;
    background-color: #141313;
}

h1,
h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 50pt;
    text-align: center;
    text-shadow: 1px 1px 0.5px #ddc9b0;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 30pt;
    color: #ddc9b0;
    letter-spacing: 2px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ddc9b0;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #b8966c;
}


/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: fixed; */
    /* width: 100vw; */
    color: #b8966c;
}


.logo {
    padding: 20px;
}


/* NAV BAR */
.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 25%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.overlay a {
    padding: 8px;
    text-decoration: none;
    font-size: 36px;
    color: #ffffff;
    display: block;
    transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
    color: #ddc9b0;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 45px;
    font-size: 60px;
}

@media screen and (max-height: 450px) {
    .overlay a {
        font-size: 20px
    }

    .overlay .closebtn {
        font-size: 40px;
        top: 15px;
        right: 35px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
}


/* HERO */
#hero,
.bandeau {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-style: none;
}

.zoom {
    transition: transform .5s;
    margin: 0 auto;
}

.zoom:hover {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
}

/* PRESENTATION */
#presentation {
    padding: 0 15%;
}

.video{
    text-align: center;
    padding-bottom: 30px;
}

/* DEJA SORTIE */
#dejasortie a img{
    padding: 10px;
}
#dejasortie a img:hover {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
}

.album {
    margin-top: 30px;
    text-align: center;
}

.album h3 {
    font-size: 30pt;
    text-align: left;
}

/* PROCHAINES SORTIE */

.future{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future img {
    margin-bottom: 20px;
}

.future button{
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border-style: none;
    font-size: 20px;
    background-color: #b8966c;
    font-size: caps;
}

.future button:hover{
    background-color: #fff;
}

.future a:hover{
    color: #b8966c;
}

.future a{
    text-decoration: none;
    color: white;
}

/* BIOGRAPHIE */

.bio {
    padding: 20px 0;
}

.bio p {
    padding-left: 30px;
    text-align: justify;
}

/* AUTRES PROJETS */

.autres .projets{
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
}


/* RESEAUX SOCIAUX */
.reseaux {
    margin: 20px;
    text-align: center;
}

.reseaux a img{
    padding:10px;    
}

/* PLAYLIST
#playlist {
    padding: 0 15% 30px 15%;
}

.carte{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media screen and (max-height: 650px){
    .carte{
        display: block;
        align-items: center;
        justify-content: center;
    }
    .carte .soundcloud{
        padding-bottom: 30px;
    }
}

.soundcloud{
    text-align: center;
}

.soundcloud a{
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    color: #b8966c;
    font-style: none;
    font-size: 20px;
}

.itunes {
    text-align: center;
} */

/* CONTACT */
footer {
    width: auto;
    height: 600px;
    padding: 30px 15%;
    background-color: #f1f1f1;
}

footer h2 {
    margin-top: 0;
}

.coordonnes {
    text-align: center;
}

.coordonnes p a{ 
    color: #b8966c;
    font-weight: bolds;
}

.coordonnes h3 sup {
    font-size: 20px;
}

@media screen and (min-height: 491px){
    footer{
        padding-bottom: 30px;
    }
    footer .coordonnes h3{
    font-size: 20pt;    
    }
}
