/*=======================

SETTING

========================*/


/*=======================

VIOLET
    --light: #e49cff;
    --blancCasse: #f5f5f5;
    --medium: #4d1a5f;
    --dark: #300b3d;

VERT
    --light: #49ff64;
    --blancCasse: #051a13;
    --medium: #04241a;
    --dark: #051a13;

VERT JAUNE
    --light: #9bff58;
    --blancCasse: #051a16;
    --medium: #04241e;
    --dark: #051a16;

    --font: #f5f5f5;

violet 2

    --light: #ff49de;
    --blancCasse: #1a050e;
    --medium: #240419;
    --dark: #1a050e;



:root {
    --light: #fe5ae0;
    --blancCasse: #100208;
    --medium: #1a050e;
    --dark: #100208;

    --font: #f5f5f5;

    --font: #f5f5f5;
    --footer: #ddd9d2;
  }


  :root {
    --light: #ea7dfd;
    --blancCasse: #ea7dfd;
    --medium: #c8c4bb;
    --dark: #ea7dfd;


    --lightB: #ea7dfd;

    --font: #f5f5f5;

    --font: #f5f5f5;
    --footer: #ffff;
  }
  #b8fb00
========================*/

:root {
    --light: #ea7dfd;
    --blancCasse: #ea7dfd;
    --medium: #ea7dfd;
    --dark: #ea7dfd;

    --fluo: #b323cc;

    --mediumB: #d7d5cf;
    --lightB: #dadada;

    --font: #f5f5f5;

    --font: #f5f5f5;
    --footer: #F5F5F5;
  }
  
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Carmen-light;
    flex-direction: column;

    background-color: var(--medium);
    transition: all 1s cubic-bezier(0.2, .84, .5, 1);
}

.animBody{
    animation: Body 1s;
    background-color: var(--dark);
}

body, header, #loader, main, .logo article, .textContainer article, footer, footer section, footer article, footer div, footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes Body {
    0% {
        background-color: var(--medium);
        }
    25% {
        background-color: var(--medium);
    }
    100% {
        background-color: var(--dark);
    }
  }


/*=======================

FONT

========================*/


@font-face {
    font-family: Carmen-demi;
    src: url(font/CarmenSans-SemiBold.woff);
    src: url(font/CarmenSans-SemiBold.woff2);
  }

@font-face {
    font-family: Carmen-med;
    src: url(font/CarmenSans-Medium.woff);
    src: url(font/CarmenSans-Medium.woff2);
  }

@font-face {
    font-family: Carmen-light;
    src: url(font/CarmenSans-Light.woff);
    src: url(font/CarmenSans-Light.woff2);
  }

p, h1, h2, h4, h5, a{
    color: var(--light);
}

h1{
    font-size: 30px;
    color: var(--font);
}

h1, h4{
    width: 60vw;
    max-width: 930px;
}

h4{
    font-weight: 200;
    opacity: 0.6;
    font-size: 16px;

    margin-top: 15px;
    
    color: var(--font);
}

h5{
    font-size: 12px;
    font-weight: 200;
    padding: 10px 12px;
    margin-bottom: 80px;

    color: var(--lightB);

    border: solid 0.5px;
    border-radius: 8px;
}

a {
    text-decoration: none;
}

/*=======================

HEADER

========================*/
  
header h5{
    position: absolute;
    top: 60px;
}  


/*=======================

MAIN

========================*/


main{
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    margin-top: -90px;
}

/*------- LOGO -------*/

#logo{
    overflow: hidden;
    /*height: 130px;*/
}

.logo article {
    width: calc(100vw - 60px);

    margin-top: 0%;
}

.logo article div{
    height: 9vw;
    width: 9.3vw;

    overflow: hidden;
    align-items: end !important;
}

.logo article div svg{
    margin-left: 0px;
    height: 100%;

    position: relative;
}

#I_logo{
    transition: transform 0.33s ease-out;
}

#S_logo{
    margin-left: -9.3vw;
}

#T_logo{
    margin-left: calc(-9.3vw * 2);
    transition: transform 0.33s ease-out;
}

#Y_logo{
    margin-left: calc(-9.3vw * 3);
}

#L_logo{
    margin-left: calc(-9.3vw * 4);
    transition: transform 0.33s ease-out;
}

#E_logo{
    margin-left: calc(-9.3vw * 5);
}

#EA_logo{
    margin-left: calc(-9.3vw * 6);
    transition: transform 0.33s ease-out;
}

svg{
    fill: var(--lightB);
    position: relative;
    transition: transform 0.2s ease-out;
}

/*------- TEXT -------*/

.textContainer{
    height: auto;
    margin-top: 120px;
    text-align: center;
    overflow: hidden;
}

.textContainer article {
    flex-direction: column;
    margin-top: 0px;
    animation: Animtext 2s;
}

@keyframes Animtext {
    0% {
        margin-top: -50px;
    }

    60% {
        margin-top: 0px;
    }
  }


.textContainer article a{
    margin-top: 50px;

    font-size: 16px;
    padding: 14px 220px 14px 14px;
    border: solid 0.6px var(--fluo);
    border-radius: 50px;
    transition: all 0.3s ease-out;
    color: var(--fluo);
}

.textContainer article a:hover {
    transition: all 0.3s ease-out;
    padding: 14px 200px 14px 14px;
    border: solid 0.6px var(--fluo);
}

/*=======================

FOOTER

========================*/


footer{
    width: calc(100vw - 60px);
    padding: 90px 0 50px 0;
    border-radius: 8px;
    margin-top: 25px;
    background-color: var(--footer);
    margin-bottom: 30px;
}

footer section {
    width: 100%;
    flex-direction: column;
}

footer section article{
    width: 85%;
    max-width: 1100px;
    justify-content: space-between;
}

.logoFooter{
    height: 23px;
    fill: var(--medium);
}

.insta{
    height: 35px;
}

footer p{
    color: var(--medium);
    margin-right: 20px;
}

.trait{
    width: 85%;
    max-width: 1100px;
    height: 1px;
    background-color: var(--mediumB);

    margin-top: 40px;
    margin-bottom: 40px;
}

footer ul{
    width: 100%;
    list-style-type: none;
    flex-wrap: wrap;
    margin-top: 50px;
}

footer ul li{
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--medium);

    margin: 5px 5px;
    padding: 8px 12px;
    border: solid 0.6px var(--mediumB);
    border-radius: 50px;
}

li:nth-child(3), li:nth-child(6), li:nth-child(9) {
    border-radius: 8px;
  }

  li:nth-child(2), li:nth-child(5), li:nth-child(8) {
    border-radius: 0px;
  }




/*=======================

RESPONSIVE

========================*/


@media only screen and (max-width: 740px) {
    
    h1{
        font-size: 30px;
    }

    h4{
        font-size: 14px;
    }

    h1, h4{
        width: 70vw;
        max-width: 930px;
    }

    h5{
        font-size: 10px;
    }


/*=======================

MAIN

========================*/


    #I_logo, #T_logo, #L_logo{
        transform: translateX(0px);
        animation: AnimlogoFooter 1.7s !important;

    }


    .logo article div svg{
        animation: AnimlogoFooter 2s;
    }

    @keyframes AnimlogoFooter {
        0% {
            transform: translateX(50%);

        }
    
        60% {
            transform: translateX(0px);

        }
      }

    .textContainer article a{
    
        font-size: 13px;
        padding: 14px 190px 14px 14px;
    }

    .textContainer article a:hover {
        padding: 14px 170px 14px 14px;
    }

    .textContainer{
        margin-top: 80px;
    }

    @keyframes Animtext {
        0% {
            margin-top: -100px;
        }
    
        60% {
            margin-top: 0px;
        }
      }


/*=======================

FOOTER

========================*/


    footer section article{
        justify-content: center;
    }   

    footer{
        padding: 50px 0 50px 0;
    }

    .logoFooter{
        height: 20px;
    }

    .insta{
        margin-left: 25px;
    }
    
    footer p{
        display: none;
    }  
    
    .trait{
        margin-bottom: 20px;
    }

  }