@import url(chota.css);

@font-face {
    font-family: EtnaFont;
    src: url(ETNA.ttf);
}

:root {
    --color-primary: #eb1c24; /* brand color */
    --grid-maxWidth: 90rem; /* max container width 1080px */
    --bg-color: #eaeaeaec;
}

body {
    background-image: url(img/Couverture-FB.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

hr {
    background-color: var(--color-primary);
}

header {
    text-align: center;
    background-color: transparent;
}

header .logo {
    width: 500px;
    margin-top: -100px;
    margin-bottom: 100px;
}

h2 {
    font-family: EtnaFont;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: -0.2rem;
    word-spacing: 1.5rem;
}

.container {
    background-color: var(--bg-color);
    border-radius: 3px;
}

nav {
    padding-top: 10px;
}

.ligne_menu {
    margin-bottom: 30px;
}

main article {
    padding-left: 30px;
    padding-right: 30px;
}

/* CONCERTS */
#concerts ul {
    /* 1 2
     * 3 4
    display: grid;
    grid-template-columns: repeat(2, auto);
    */

    /* 1 3
     * 2 4
     */
    columns: 2;
}

.concerts-futur {
    list-style: url(img/volcano-12-red.png);
}

.concerts-passe {
    list-style: url(img/volcano-12.png);
}

/* MEDIA */
#media img {
    width: 200px;
    border: 2px solid white;
}

/* ETNA stylisé */
.etna sub, .etna sup {
    text-transform: uppercase;
}

.etna sub {
    vertical-align: -0.3ex;
    margin-left: -0.1667em;
    margin-right: -0.125em;
}

.etna, .etna sub {
    font-size: 1em;
    font-weight: bold;
}

.etna sup {
    font-size: 0.85em;
    vertical-align: 0.15em;
    margin-left: -0.36em;
    margin-right: -0.15em;
}

@media screen and (width < 1024px) {
    body {
        background-size: 100vw auto;
        background-position: top center;
        background-size: cover;
    }

    header .logo {
        margin: auto;
        
    }

    #concerts ul {
     grid-template-columns: 1fr;
    }

    #media {
        margin-bottom: auto;
    }



}

/* Pretty display for big screens */

@media screen and (width > 1024px) {

    #media {
        margin-bottom: -190px;
    }
    

    
    #media_01 {
        text-align: center;
    }
    
    #media_01 img {
        width: auto;
        height: 300px;
    }
    
    #media_02 img {
        float: left;
        position: relative;
        top: -200px;
        left: 50px;
    }
    
    #media_03 img {
        float: right;
        position: relative;
        top: -200px;
        right: 50px;
    }
    
    #media_04 img {
        clear: right;
        float: left;
        position: relative;
        top: -275px;
        left: 100px; 
    }
    
    #media_05 img {
        float: right;
        position: relative;
        top: -275px;
        right: 100px; 
    }
    
    #media_06 {
        text-align: center;
    }

    #media_06 img {
        position: relative;
        top: -30px;
    }
    
    #media_07 {
        position: relative;
        top: -200px;
        text-align: center;
    }
    
    #media_07 img {
        width: auto;
        height: 400px;
    }
    
    #media_08 img {
        float: right;
        position: relative;
        top: -400px;
        right: 50px;
    }
    
    #media_09 img {
        float: left;
        position: relative;
        top: -400px;
        left: 50px;
    }
    
}

@media screen and (max-width: 480px) {
    .nav,
    .nav > .container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
    }
}