/* Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #efe4e4;

}



.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}
nav{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6vw;
    height: 120px;
    line-height: 120px;
    z-index: 100;
}
.left_nav{
    display: flex;
    gap: 50px;
}
.nav_logo{
    display: flex;
    align-items: center;
}
.nav_logo img{
    width: 100px;
}
.nav_menu ul{
    display: flex;
    flex-direction: row;
}
ul li{
    position: relative;
    list-style: none;
    margin: 0 30px;
}
.link{
    text-decoration: none;
    padding: 10px 0;
    color: #000;
    font-size: 15px;
    font-weight: 500;
}
.nav_menu .link_border{
    height: 1px;
    width: 0;
    position: absolute;
    bottom: 43px;
    left: 0;
    background: #000;
    transition: .4s ease-in-out;
}
.nav_menu ul li a:hover ~ .link_border{
    width: 30px;
}
.nav_dropdown_menu{
    display: none;
}
.right_nav{
    display: flex;
    gap: 50px;
}

.menu_bars{
    display: flex;
    align-items: center;
}
.menu_bars_btn{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
}
.menu_bars_btn img{
   width: 30px;
}
.bar_1, .bar_2{
    transition: .3s ease-in-out;
}
.menu_bars_btn:hover .bar_1{
   margin-left: 5px;
}
.menu_bars_btn:hover .bar_2{
    margin-right: 10px;
 }
/* BODY ITEMS */
.item_1 img{
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 10;
}
.item_2 img{
    position: fixed;
    left: 50%;
    top: 50%;
    opacity: 0.1;
    transform: translate(-30%, -50%) rotate(-5deg);
    max-width: 550px;
    width: 100%;
    z-index: 20;
    background: transparent;
}

@media (max-width: 768px) { /* Pas de breedte aan naar wens */
    .item_2 img, .just_do_it {
        display: none;
    }
}

.just_do_it p{
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translate(-50% -50%);
    width: 200px;
    line-height: 100px;
    font-size: 100px;
    font-weight: 600;
    opacity: 0.1;
    z-index: 100;
}
.main{
    position: relative;
    display: flex;
    z-index: 100;
}
.left_col{
    width: 50%;
    padding-left: 70px;
    padding-top: 40px;
}
.left_col .shoe_title p{
    font-size: 4.2vw;
    font-weight: 600;
    letter-spacing: 7px;
}
.line hr{
    border: 1px solid #222;
    width: 200px;
    margin: 25px 0 35px 0;
}
.left_col .shoe_description p{
    font-family: 'Cascadia Code',sans-serif;
    font-weight: 300;
    line-height: 30px;
}

.price{
    font-family: 'Cascadia Code',sans-serif;
    font-weight: 500;
}

.shoe_img_box .shoe_img{
    position: absolute;
    left: 50%;
    top: 10%;
    width: 130px;
    transform: translate(-50%, -50%) rotate(-40deg);
    transition: .3s ease-in-out;
}
.shoe_name_price{
    display: flex;
    justify-content: space-between;
}
.shoe_name_price h3{
    font-family: Impact;
    font-weight: 400;
    width: 60px;
}

@media only screen and (max-width: 755px) {
    nav{
        z-index: 200;
    }
    .nav_menu{
        display: none;
    }
    .nav_dropdown_menu.responsive{
        display: flex;
    }
    .dropdown{
        position: relative;
    }
    .nav_dropdown_menu{
        position: absolute;
        top: 50px;
        right: 0;
        display: none;
        justify-content: center;
        align-items: center;
        background: rgba(0, 0, 0, 0.1);
        width: 300px;
        height: 380px;
        backdrop-filter: blur(25px);
        box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
        border-radius: 20px;
        transition: all .3s ease-in-out;
    }
    .nav_dropdown_menu ul li{
        line-height: 90px;
        margin: 0;
        text-align: center;
    }
    .dropdown:hover .bar_1{
        margin-left: 5px;
    }
     .dropdown:hover .bar_2{
         margin-right: 10px;
    }
    .main{
        flex-direction: column;
    }
    .left_col{
        width: 100%;
        padding: 0 8vw;
        order: 2;
    }
    .right_col{
        width: 100%;
        position: relative;
        height: 300px;
        order: 1;
    }
 
 
}
/* Zorg ervoor dat de footer aan de onderkant van de pagina blijft */
footer {
    margin-top: auto;
    padding: 10px 0;
    background: #efe4e4;
    text-align: center;
}

@media only screen and (max-width: 600px) {
    footer {
        padding: 20px 0;
    }
}

