/* FONT */
@import url(https://fonts.googleapis.com/css?family=Smooch+Sans:100,200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

/*** GLOBAL STYLES ***/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #1e1e1e;
}

.header{
    padding-top: 10px;
    z-index: 12;
    text-align: center;
}

.header h1 img{
    width: 35px;
    height: auto;
}



/* PROFILE SECTION */
.profile-image{
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all;
}
.profile-image:hover{
    transform: scale(1.05);
    border-radius: 23px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile{
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    background-color: rgba(27, 27, 27, 0.827);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 90px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 25px;
}

.profile .title{
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    margin-bottom: 10px;
    color: #7d1a98;
    text-transform: uppercase;
}

.profile .bio{
    font-size: 16px;
    width: 50%;
    margin: 0 auto;
    line-height: 1.5em;
    color: #333;
    margin-bottom: 10px;
    color: #ffffff;
}

.profile .bio strong{
    color: #9a16c3;
}

.profile hr{
    width: 80%;
    border: 0;
    height: 1px;
    background-color: #ccc;
    margin: 20px auto;
}

/* BUTTON MORE */
.profile .more:disabled{
    display: none;
    background-color: #bbb;
    cursor: not-allowed;
    box-shadow: none;
}
.profile .more{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    background-color: #9a16c3;
    color: #ffffff;
    box-shadow: -1px 6px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile .more::after{
    content: '';
    display: inline-block;
    background-color: #ffffff;
    width: 50px;
    height: 1px;
    margin: 0px 0 -3px -47px;
    position: relative;
    left: -2px;
}


.profile .more:hover{
    background-color: #58126a;
    cursor: pointer;
    box-shadow: 3px 8px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
/* My links */
.menu-Links{
    padding: 13px 50px;
    margin-top: 12px;
    margin-bottom: 10px;
    gap: 15px;
    color: #ffffff;
    background-color: #333;
}

.menu-Links:hover{
    background-color: #444;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
/* LINKS */
.links{ 
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.hidden{
    margin-top: -25px;
    transition: all 0.3s ease;
    z-index: -1;
}
.links a{
    display: inline-block;
    background-color: #ffffff;
    border-radius: 5px;
    text-decoration: none;
    color: #000000;
    padding: 8px 25px;
    transition: all 0.3s ease;
}
/* ICONS*/
[data-icon]{
     /* Dimensions */
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
  /* Couleur de l'icône (modifiable à volonté) */
  background-color: currentColor;

  /* Application du masque SVG */
  mask: var(--svg) no-repeat center;
  mask-size: contain;
}

[data-icon="twitter"]{
    --svg: url('../assets/social-icons/twitter-brands-solid.svg');
}

[ data-icon="twitch"]{
    --svg: url('../assets/social-icons/twitch-brands-solid.svg');
}

[ data-icon="youtube"]{
    --svg: url('../assets/social-icons/youtube-brands-solid.svg');
}

.links a:hover{
    font-weight: 500;
    color: #fefdff;
    background-color: #42244f;
    transition: color 0.3s ease;
}

/* MEDIA QUERIES */
@media screen and (max-width: 900px){
    .profile{
        padding: 30px 50px;
    }
    .profile .bio{
        width: 70%;
    }
}

@media screen and (max-width: 600px){
    .profile{
        padding: 20px 30px;
    }
    .profile .bio{
        width: 90%;
    }
}

