/* ----- INIT (settings) -----*/
* {
    color: #000;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Nunito", sans-serif;
    user-select: none;
}
span {
    display: block;
    margin-top: 30px;
    
    font-size: 25px;
    letter-spacing: 2px;
}
span p{
    color: #fcfcfc;
    font-size: 1em;
    margin-left: 30px;
    float: left;
    border-bottom: 2px solid #bf7add;
}
body{
    background: #141116;
}

/* ----------- Navbar ---------- */
header {
    width: 100%;
    position: fixed;
    z-index: 5;
}

.navbar {
    
    background: #18141a;
    list-style-type: none;
    height: 88px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.navbar li{
    margin-left: 2%;
}
.navbar a {
    
    font-size: 20px;
    color: white;
    padding: 14px 16px;
}


/* ---- Search bar ---- */
.search-bar {
    display: flex;
    align-items: center;
    background-color: #E4C8F0;
    border-radius: 30px 10px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    padding: 14px 16px;
}

.search-bar input {
    font-size: 17px;
    background: transparent;
    outline: none;
    border: 0;
    flex: 1;
    max-width: 200px;
    padding: 8px;
}

.logo-search {
    width: 25px;
    max-width: 100%;
}
::placeholder {
    font-size: 17px;
    color: whitesmoke;
}

.search-bar button {
    border: 0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background: #debcee;
    transition: .5s;
}
.top-search-bar{
    margin-left: auto;

}

/* Search-bar animation */
.search-bar button::before{
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #bf7add;
    transition: .5s;
    transform: scale(.9);
    z-index: -1;
}
.search-bar button:hover::before{
    transform: scale(1.1);
    box-shadow: 0 0 10px #bf7add ;
}
.search-bar button:hover{
    color: #bf7add;
    box-shadow: 0 0 5px #bf7add;
    text-shadow: 0 0 5px #bf7add;
    
}
.bo:hover{
  backdrop-filter:blur(30px);
}

/* ---- Under-line animation ---- */
.navbar a {
    position: relative;
    text-decoration: none;
  }
  
.navbar a:hover {
    color: white;
  }
  
.navbar  a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d190f0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
.navbar  a:hover::before {
    transform: scaleX(1);
  }


/* ---- Main ----*/
main{
    height: 1000vh;
    z-index: -1;
    text-align: center;
}

/* home page image */
.home{
    padding-top: 88px;
    width: 100%;
    background-position: center;
    background-size: cover;
    align-items: center;
}
.home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url("../img/giphy.gif");
    width: 100%;
    height: 500px;
    text-shadow: 1px 1px 2px black, 0 0 25px #832fa7, 0 0 5px #d190f0;
}
.home h1{
    font-family: 'Ubuntu', sans-serif;
    color: whitesmoke;
}
.home h2{
    font-family: 'Ubuntu', sans-serif;
    color: #E1BCF0;
}

/* Box ( NOUVEAUTE ) */
.Nouveautés ul li a{
    text-decoration: none;
}
.box-list{
    width: 100%;
    justify-content: space-evenly;
    display: flex;
    padding: 30px 20px;
    flex-direction: row;
    flex-wrap: wrap;
}
.box{
    display: flex;
    border-radius: 2%;
    width: auto;
}
.txt{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #dcadf0;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -15px;
}
.box a{
    text-decoration: none;
    
}
.box p{
    padding: 20px;
    color: #ffffff;
}
.box:hover p{
    visibility: visible;
}
.box img{
    z-index: 3;
    width: 260px;
    height: 460px;
}
.box img:hover{
    transform: scaleX(20px);
    transition: 0.5s;
}
.box:not(:hover){
}