/*
*{
    outline: 1px solid hotpink;
}
*/

body{
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

figure{
    margin: 0;
}

.menu{
    display: flex;
}

.header-menu{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
    position: fixed;
    top: 0px;
    background-color: #000;
    width: 100%;
    transition: top 0.3s;
    z-index: 1;
}

.logo-ECK{
    color: #1a73e8;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 8px; 
    cursor: pointer;
}

.margin_header{
    margin-right: 60px;
    margin-left: 10px;
}

.display-footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accueil-bloc{
    background-image: url("../img/logo_bg_smooth.png");
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 40px;
}

.accueil-titre-accroche{
    padding: 0px 20px;  
}

.accueil-content{
    color: #fff;
}

.btn-menu{
    padding: 12px 20px;
    cursor: pointer;
    color: #004686;
    background-color: #fff;
    text-decoration: none;
    border-radius: 4px;
    width: 76px;
    text-align: center;
}

.cta-play{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 20px;
    cursor: pointer;
    color: #004686;
    border: solid 1px #004686;
    background-color: #fff;
    text-decoration: none;
    border-radius: 4px;
    width: 76px;
    text-align: center;
}

.cta-cv-socialmedia{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    cursor: pointer;
    color: #004686;
    border: solid 1px #004686;
    background-color: #fff;
    text-decoration: none;
    border-radius: 4px;
    width: 120px;
    text-align: center;
}

.btn-menu:hover, .cta-play:hover, .cta-cv-socialmedia:hover {
    background-color: #004686;
    color: #fff;
}

.accueil-elements{
    font-size: 26px;
    line-height: 50px;
}

.card{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 40px;
    border-radius: 6px;
    background-color: #e6f4fa;
}

.grand_titre{
    font-size: 46px;
    padding: 40px 0px;
    color: #f1f3f4;
    background-color: #585959;
    text-align: center;
}

.musique-element{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 130px;
    border-radius: 6px;
    background-image: linear-gradient(to left, rgba(255, 139, 4, 0.4), rgba(255, 139, 4, 0.8));
}

.musique-titre{
    padding: 10px 20px;
    color: #f1f3f4;
    background-color: #585959;
    min-width: 155px;
    text-align: center;
    border-radius: 16px;
}

.navigation-guide{
    font-weight: bold;
    color: #004686;
}

.explication-contenu{
    text-align: center;
    color: #696969;
}

.section-music-aboutMe{
    line-height: 1.55;
    color: #707070;
}

.about-me-content{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background-color: #f1f3f4;
    border-radius: 10px;
}

/* animation styles */
.animation-element {
    opacity: 0;
    position: relative;
}

.animation-element.slide-bottom {
opacity: 0;
-moz-transition: all 700ms ease-out;
-webkit-transition: all 700ms ease-out;
-o-transition: all 700ms ease-out;
transition: all 700ms ease-out;
-moz-transform: translate3d(0px, 200px, 0px);
-webkit-transform: translate3d(0px, 200px, 0px);
-o-transform: translate(0px, 200px);
-ms-transform: translate(0px, 200px);
transform: translate3d(0px, 200, 0px);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}

.animation-element.slide-bottom.in-view, .animation-element.slide-top.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-top {
opacity: 0;
-moz-transition: all 700ms ease-out;
-webkit-transition: all 700ms ease-out;
-o-transition: all 700ms ease-out;
transition: all 700ms ease-out;
-moz-transform: translate3d(0px, -200px, 0px);
-webkit-transform: translate3d(0px, -200px, 0px);
-o-transform: translate(0px, -200px);
-ms-transform: translate(0px, -200px);
transform: translate3d(0px, -200, 0px);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
backface-visibility: hidden;
}

/*
.animation-element.slide-left {
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        opacity: 0;
        -moz-transform: translate3d(-100px, 0px, 0px);
        -webkit-transform: translate3d(-100px, 0px, 0px);
        -o-transform: translate(-100px, 0px);
        -ms-transform: translate(-100px, 0px);
        transform: translate3d(-100px, 0px, 0px);
    }
    
    .animation-element.slide-right {
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
        opacity: 0;
        -moz-transform: translate3d(100px, 0px, 0px);
        -webkit-transform: translate3d(100px, 0px, 0px);
        -o-transform: translate(100px, 0px);
        -ms-transform: translate(100px, 0px);
        transform: translate3d(100px, 0px, 0px);
    }
    
    .animation-element.slide-left.in-view, .animation-element.slide-right.in-view {
        opacity: 1;
        -moz-transform: translate3d(0px, 0px, 0px);
        -webkit-transform: translate3d(0px, 0px, 0px);
        -o-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate3d(0px, 0px, 0px);
    }*/

/** Début - mobile menu **/

.menu-mobile {
    display: none;
    cursor: pointer;
  }
  
  .bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: #f1f3f4;
    margin: 6px 0;
    transition: 0.4s;
  }
  
  .change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
  }
  
  .change .bar2 {opacity: 0;}
  
  .change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
  }

  .dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    right: -20px;
    padding: 10px 0px;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  .dropdown-flex{
      flex-direction: column;
      align-items: center;
  }

/** Fin - mobile menu **/

/** Début - carroussel pour la section about me **/
.carousel-items {
    display: flex;
    overflow-x: scroll;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
    list-style-type: none;
}

.carousel-item {
    align-items: stretch;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 450px;
    scroll-snap-align: start;
    list-style-type: none;
}

.card-item{
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    max-width: 450px;
    border-radius: 6px;
    border: solid 2px #A0A0A0;
    background-color: #fff;
}

.card-img{
    width: 77px;
    height: 88px;
    margin-left: auto;
    margin-right: auto;
}

.card-img-profile{
    width: 200px;
    height: 200px;
    border-radius: 100px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #585959;
}

.card-title{
    color: #004686;
}

.skills-enumeration{
    color: #585959;
}

.skills-title{
    font-weight: bold;
    color: #004686;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #3d4852;
    border-radius: 3px;
}

/** Fin - carroussel pour la section about me **/

.card-item-profil{
    display: flex;
    flex-direction: column;
    padding: 20px 40px;
    max-width: 450px;
    border-radius: 6px;
}

.card-img-social{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.cv-socialmedia{
    display: flex;
    align-items: center;
}

.linkedIn_btn{
    margin-left: 20px;
}

.container{
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer{
    width: 100%;
    height: 300px;
    background-color: #000;
}

.text_align_center{
    text-align: center;
}

.uppercase{
    text-transform: uppercase;
}

.margin_l16{
    margin-left: 1rem;
}

.margin_r5{
    margin-right: 5px;
}

.margin_r20{
    margin-right: 20px;
}

.margin_r60{
    margin-right: 60px;
}

.margin_b5{
    margin-bottom: 5px;
}

.margin_b20{
    margin-bottom: 20px;
}

.margin_b40{
    margin-bottom: 40px;
}

.margin_t20{
    margin-top: 20px;
}

.margin_t40{
    margin-top: 40px;
}

@media screen and (max-width: 768px)
{
    .menu{
        display: none;
    }

    .menu-mobile {
        display: inline-block;
    }

    .margin_header{
        margin-right: 0px;
        margin-left: 20px;
    }

    .header-menu{
        justify-content: space-between;
    }

    .about-me-content{
        flex-direction: column;
    }

    .musique-element{
        flex-direction: column;
    }

    .musique-titre{
        margin-bottom: 5px;
    }

    .accueil-elements{
        text-align: center;
    }

    .card-item-profil{
        max-width: none;
    }

    .card-content-profile{
        text-align: center;
    }
}

@media screen and (max-width: 480px)
{
    .menu{
        display: none;
    }

    .menu-mobile {
        display: inline-block;
    }

    .margin_header{
        margin-right: 0px;
        margin-left: 20px;
    }

    .header-menu{
        justify-content: space-between;
    }

    .about-me-content{
        flex-direction: column;
    }

    .musique-element{
        flex-direction: column;
    }

    .musique-titre{
        margin-bottom: 5px;
    }

    .cv-socialmedia{
        flex-direction: column;
    }

    .linkedIn_btn{
        margin-top: 10px;
        margin-left: 0px;
    }

    .cta-cv-socialmedia{
        width: 85%;
    }

    .accueil-elements{
        text-align: center;
        font-size: 25px;
    }

    .card-item{
        padding: 5px 10px;
        max-width: 350px;
        border-radius: 6px;
        border: solid 2px #A0A0A0;
        background-color: #fff;
    }

    .carousel-item {
        flex-basis: 350px;
    }
}