@import url('https://fonts.googleapis.com/css2?family=Leckerli+One&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}
html{
    font-size: 62.5%;
}
:root{
    --bg-color: #fff;
    --main-color: #f05675;
    --text-color: #010101;
    --second-color: #494949;
    --third-color: #666666;
    --big-font: 8rem;
    --h2-font: 4rem;
    --p-font: 1.8rem;
}
body{
    color: var(--text-color);
    background: var(--bg-color);
}
.container{
    max-width: 120rem;
    width: 100%;
    position: relative;
    margin: auto;
}
header{
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-color);
    box-shadow: 0 .1rem .6rem 0 rgb(32 33 36 / 10%);
    transition: all .5s ease;
}
.navbar-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}
.logo img{
    width: 100%;
    height: auto;
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 2.4rem;
    transition: all .5s ease;
}
.navbar a:hover{
    color: var(--main-color);
}
.h-icons{
    display: flex;
    align-items: center;
}
.h-icons i{
    font-size: 2.5rem;
    color: var(--text-color);
    margin-left: .5rem;
    margin-right: 2rem;
    transition: all .5s ease;
    display:inline-block; 
}
.h-icons i:hover{
    transform: translateY(-4px);
    color: var(--main-color);
}
#menu-icon{
    height: 3rem;
    width: 3rem;
    background: var(--text-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 101;
    cursor: pointer;
    display: none;
}
section{
    padding: 6rem 0 7rem;
}
.home{
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(../images/background.jpg);
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home-text h1{
    font-family: "Leckerli One", cursive;
    font-size: var(--big-font);
    color: var(--second-color);
    line-height: 1.3;
    margin-bottom: 2.5rem;
}
.home-text p{
    color: var(--third-color);
    font-size: var(--p-font);
    line-height: 3rem;
    margin-bottom: 6rem;
}
.home-text .btn{
    padding: 2rem 3.5rem;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3rem;
    transition: all .6s ease;
}
.home-text .btn:hover{
    background: var(--second-color);
}

/* banner section */
.banner{
    width: 100%;
    position: relative;
}
.banner-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, auto));
    align-items: center;
    gap: 3rem;
}
.banner-img{
    overflow: hidden;
    height: 22rem;
    box-shadow: 0 .1rem 2rem 0 rgb(32 33 36 / 10%);
}
.banner-img img{
    width: 100%;
    display: block;
    transition: transform .5s;
    cursor: pointer;
    object-fit: cover;
    height: 100%;
}
.banner-img:hover img{
    transform: scale(1.1);
}

/* arrivals */
.center-text h2{
    text-align: center;
    font-size: var(--h2-font);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-color);
}
.new-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, auto));
    align-items: center;
    gap: 3rem;
    margin-top: 4.5rem;
    text-align: center;
    flex-wrap: wrap;
}
.new-content .row{
    position: relative;
    cursor: pointer;
}
.new-content .row img{
    max-width: 100%;
    width: auto;
    height: auto;
    margin-bottom: 1.5rem;
}
.new-content .row h4{
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 400;
    transition: all .5s ease;
}
.new-content .row h4:hover{
    color: var(--main-color);
    cursor: pointer;
}
.new-content .row .row-image{
    width: 100%;
    height: 40rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color);
    box-shadow: 0 .1rem 2rem 0 rgb(32 33 36 / 10%);
    border-radius: .5rem;
    margin-bottom: 2rem;
}
.new-content .row h5{
    color: var(--third-color);
    font-size: var(--p-font);
    font-weight: 600;
}
.top{
    position: absolute;
    top: 2rem;
    left: 0;
    height: 3rem;
    width: 6rem;
    color: var(--bg-color);
    background: var(--main-color);
    font-size: 1.4rem;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row .bbtn a{
    position: absolute;
    bottom: 6.5rem;
    left: 0;
    right: 0;
    padding: 1.3rem;
    font-size: 1.4rem;
    background: rgba(0,0,0,0.8);
    color: var(--bg-color);
    transition: opacity .5s;
    opacity: 0;
}
.row:hover .bbtn a{
    opacity: 1;
}

/* blog */
.blog-content{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, auto));
    align-items: center;
    gap: 3rem;
    margin-top: 5rem;
}
.blog-content .box-img{
    overflow: hidden;
    height: 22rem;
}
.blog-content .main-box{
    height: 100%;
}
.blog-content .box-img img{
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s;
    cursor: pointer;
    height: 100%;
    object-fit: cover;
}
.blog-content .box-img:hover img{
    transform: scale(1.1);
}
.blog-content .in-bxx{
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.blog-content .in-text p{
    color: var(--third-color);
    font-size: 1.5rem;
    font-weight: 500;
}
.blog-content .in-icon i{
    vertical-align: middle;
    color: var(--third-color);
    font-size: 2.5rem;
    margin-right: .8rem;
}
.blog-content .in-icon a{
    color: var(--third-color);
    font-size: 1.5rem;
    font-weight: 500;
}
.blog-content .main-box h3{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 3rem;
    transition: all .5s ease;
    cursor: pointer;
}
.blog-content .main-box h3:hover{
    color: var(--main-color);
}

/* contact */
.contact{
    background: #1a1919;
}
.contact-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, auto));
    gap: 3rem;
}
.contact-box h4{
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--bg-color);
}
.contact-box li{
    margin-bottom: 1.8rem;
}
.contact-box li a{
    color: #999;
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all .5s ease;
}
.contact-box li a:hover{
    transform: translateX(-7px);
    color: var(--main-color);
}
.social{
    display: flex;
    flex-direction: row;
    margin-top: 2.4rem;
}
.social i{
    height: 3.5rem;
    width: 3.5rem;
    display: flex;
    background: transparent;
    border: .2rem solid var(--main-color);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2rem;
    margin-right: 1.6rem;
    color: var(--main-color);
    transition: all .5s ease;
}
.social i:hover{
    background: var(--main-color);
    color: var(--bg-color);
    transform: scale(1.1);
}

/* scroll top */
.scroll-top{
    position: fixed;
    bottom: 3rem;
    right: 3rem;
}
.scroll-top i{
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 2.4rem;
    padding: 1.2rem;
    border-radius: 50%;
}

@media (max-width: 1200px){
    .container{
        width: 94%;
    }
    section{
        padding: 6rem 0;
    }
}

@media (max-width: 992px){
    #menu-icon{
        display: block;
        height: 3rem;
        width: 3rem;
        background: var(--text-color);
        color: var(--bg-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        border-radius: 50%;
        z-index: 101;
        cursor: pointer;
    }
    .navbar{
        position: absolute;
        top: -800px;
        left: 0;
        right: 0;
        display: flex;
        flex-direction: column;
        text-align: left;
        background: var(--bg-color);
        box-shadow: 0 .5rem 2rem rgba(0,0,0,0.5);
        transition: all .5s ease;
    }
    .navbar a{
        display: block;
        padding: .5rem;
        margin: 1.5rem;
        font-size: 2rem;
        font-weight: 600;
        transition: all .5s ease;
    }
    .navbar a:hover, .navbar a:active, .navbar a:focus{
        color: var(--main-color);
    }
    .navbar.active{
        top: 100%;
    }
}

@media (max-width: 640px){
    :root{
        --big-font: 5rem;
        --h2-font: 3.2rem;
        --p-font: 2rem;
    }
    .home-text h1{
        line-height: 1.2;
    }
    .home{
        height: 85vh;
    }
}