@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --gradient: linear-gradient(#ff54a2, #ff575a);
}

*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

.container{
    width: 100%;
    min-height: 100vh;
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
}

section{
    scroll-behavior: smooth;
    overflow-y: scroll;
}

.navbar{
    width: 100%;
    display: flex;
    align-items: center;
}

.logo{
    width: 50px;
    cursor: pointer;
    margin: 30px 0;
}

.menu-icon{
    width: 25px;
    cursor: pointer;
    display: none;
}

nav{
    flex: 1;
    text-align: right;
}

nav ul li {
    list-style: none;
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

nav ul li a:hover{
    color: #ff5ea2;
}

.row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
}

.col-1{
    flex-basis: 40%;
    position: relative;
    margin-left: 50px;
}

.col-1 h2{
    font-size: 54px;
}

.col-1 h3{
    font-size: 30px;
    color: #707070;
    font-weight: 300;
    margin: 20px 0 10px;
}

.col-1 p{
    font-size: 16px;
    color: #b7b7b7;
    font-weight: 200;
}

.col-1 h4{
    margin: 30px 0;
    font-size: 20px;
}

.texte{
    flex-basis: 100%;
}

button{
    width: 140px;
    border: 0;
    padding: 12px 10px;
    outline: none;
    color: #fff;
    background: linear-gradient(to right, #fb5283, #ff3527);
    border-radius: 6px;
    cursor: pointer;
    transition: width 0.5s;
}

button img{
    width: 30px;
    height: 12px;
    display: none;
}

button:hover img{
    display: block;
}

button:hover{
    width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col-1::after{
    content: '';
    width: 10px;
    height: 57%;
    background: linear-gradient(#ff469f, #ff6062);
    position: absolute;
    left: -40px;
    top: 8px;
}

.col-2{
    position: relative;
    flex-basis: 60%;
    display: flex;
    align-items: center;
}

.col-2 .controller{
    width: 90%;
}

.texte h3{
    text-align: justify;
    font-size: 20px;
    line-height: 1.4;
}

.color-box{
    position: absolute;
    right: 0;
    top: 0;
    background: linear-gradient(#ff54a2, #ff575a);
    border-radius: 20px 0 0 20px;
    height: 100%;
    width: 80%;
    z-index: -1;
    transform: translateX(150px);
}

.add-btn img{
    width: 35px;
    margin-bottom: 5px;
}

.add-btn{
    text-align: center;
    color: #fff;
    cursor: pointer;
}


.social-links a{
    text-decoration: none;
    color: #000;
}

.social-links i{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin: 20px;
    cursor: pointer;
    border-radius: 12px;
    background: #ffffff;
    box-shadow:  5px 5px 12px #bfbfbf,
                -5px -5px 12px #ffffff;
}

.social-links i:hover{
    box-shadow: inset 5px 5px 12px #bfbfbf,
                inset -5px -5px 12px #ffffff;
}

.social-links{
    text-align: center;
}

.row .decouvrir .img{
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row .decouvrir .img_choisi{
    width: 100%;
    height: 510px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row .decouvrir .img_results{
    width: 100%;
    height: 630px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.row .decouvrir .sneakers_scanner{
    width: 400px;
    height: 290px;
    margin-top: 20px;
}

.row .decouvrir .choix_image{
    width: 400px;
    height: 260px;
}

.row .decouvrir .image_choisi{
    width: 400px;
    height: 509px;
    margin-top: 20px;
}

.row .decouvrir .results{
    width: 400px;
    height: 625px;
    margin-top: 20px;
}

.form-contact{
    height: 400px;
}

.form-contact input, .form-contact textarea{
    width: 70%;
    padding: 10px;
    margin: 10px 0px 10px 30px;
    border-radius: 10px;
    transition: .3s;
}

.form-contact input{
    border: 1px solid #ff575a;
}

.form-contact input:focus, .form-contact textarea:focus{
    outline: none;
    transform: scale(1.05);
}

.form-contact textarea{
    height: 150px;
    resize: none;
    border: 1px solid #ff575a;
}

.form-contact button{
    margin-left: 30px;
}


@media only screen and (max-width:700px){

    nav ul {
        width: 100%;
        background: linear-gradient(#ff54a2, #ff575a);
        position: absolute;
        top: 85px;
        right: 0;
        z-index: 2;
    }

    nav ul li {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    nav ul li a {
        color: #fff;
    }

    .menu-icon{
        display: block;
    }

    #menulist{
        overflow: hidden;
        transition: 0.5s;
    }

    .row{
        flex-direction: column-reverse;
        margin: 50px 0;
    }

    .col-2{
        flex-basis: 100%;
        margin-bottom: 50px;
    }

    .col-2 .controller{
        width: 77%;
    }

    .color-box{
        transform: translateX(75px);
    }

    .col-1{
        flex-basis: 100%;
    }

    .col-1 h2{
        font-size: 35px;
    }

    .col-1 h3{
        font-size: 15px;
    }

    .row .decouvrir .img{
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .row .decouvrir .img_choisi{
        width: 100%;
        height: 255px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .row .decouvrir .img_results{
        width: 100%;
        height: 315px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .row .decouvrir .sneakers_scanner{
        width: 200px;
        height: 145px;
        margin-top: 20px;
    }
    
    .row .decouvrir .choix_image{
        width: 200px;
        height: 130px;
    }
    
    .row .decouvrir .image_choisi{
        width: 200px;
        height: 254px;
        margin-top: 20px;
    }
    
    .row .decouvrir .results{
        width: 200px;
        height: 312px;
        margin-top: 20px;
    }
}
