@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --yellow: #f3f70e;
}
*{
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
    outline: none;
    border: none;
    transition: all .2s linear;
    text-decoration: none;
}
h1, h3{
    font-family: 'Oswald', sans-serif;
}
*::selection{
    color: #fff;
    background: var(--yellow);
}
html{
    overflow-x: hidden;
    font-size: 62.5%;
}
body{
    overflow-x: hidden;
}
html::-webkit-scrollbar{
    width: 1.4rem;
}
html::-webkit-scrollbar-track{
    background: #333;
}
html::-webkit-scrollbar-thumb{
    background: var(--yellow);
}
section{
    min-height: 105vh;
    padding-top: 8.5rem;
    padding: 1rem 10%;
}
.heading{
    color: #333;
    font-size: 4rem;
    padding: 0 .5rem;
    text-align: center;
}
.heading span{
    color: var(--yellow);
    cursor: pointer;
    font-weight: 600;
}
header{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 10%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 .3rem 2rem rgba(0,0,0,.1);
    justify-content: space-between;
    align-items: center;
}
header .logo img{
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid var(--yellow);
}
header .logo img:hover{
    transform: scale(1.2);
}
header .navbar ul{
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
}
header .navbar ul li{
    margin-left: 3rem;
}
header .navbar ul li a{
    color: #666;
    font-size: 1.7rem;
}
header .navbar ul li a.active,
header .navbar ul li a:hover{
    color: var(--yellow);
}
header #menu-bar{
    display: none;
    color: var(--yellow);
    cursor: pointer;
    font-size: 3rem;
}
.home{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.home::before, .home::after{
    content: '';
    position: absolute;
    right: -6rem;
    top: 5rem;
    width: 70rem;
    height: 40rem;
    transform: rotate(-45deg);
    background: var(--yellow);
    border-radius: 3rem;
    z-index: -2;
    animation: animate 1s linear 1;
}
.home::before{
    box-shadow: 0 1rem 4rem rgba(0,0,0,.1);
    background: #fff;
    top: -7rem;
    z-index: -1;
}
@keyframes animate {
    0%{
        transform: rotate(45deg) translateY(-40rem);
    }

}
.home .content{
    flex: 1 1 39rem;
}
.home .content h3{
    font-size: 5rem;
    color: #333;
    padding: 1rem 0;
    margin-right: 2rem;
}
.home .content h3 span{
    color: var(--yellow);
    font-weight: 500;
    cursor: pointer;
}
.home .content h3 span:hover,
.home .content p span:hover{
    transform: scale(1.2);
    color: #f10808;
}
.home .content p{
    padding: 2rem 0;
    font-size: 2rem;
    color: #666;
    margin-right: 2rem;
}
.home .content p span{
    color: var(--yellow);
    font-weight: 600;
    cursor: pointer;
}
.home .image{
    flex: 1 1 39rem;
}
.home .image img{
    width: 300px;
    height: 300px;
    margin-top: 8rem;
    margin-left: 7rem;
    border-radius: 50%;
    border: 5px solid #cddac5;
}
.home .image img:hover{
    transform: scale(1.2);
    cursor: pointer;
}
.btn{
    padding: 1rem .5rem;
    border-radius: 10px 0 10px 0;
    margin-top: 1rem;
    background: none;
    cursor: pointer;
    color: #333;
    border: 1px solid var(--yellow);
    font-size: 1.7rem;
}
.btn:hover{
    background: var(--yellow);
    color: red;
    font-weight: 500;
}
.home .box{
    flex: 1 1 25rem;
}
.home .box h3{
    font-size: 2.5rem;
}
.home .box h3 span{
    color: var(--yellow);
}
.home .box h3 span:hover{
    color: red;
    cursor: pointer;
    font-weight: 500;
}
.home .box a i{
    font-size: 2.3rem;
    padding: .5rem;
}
.home .box a i:hover{
    cursor: pointer;
    transform: scale(1.5);
    margin-right: .5rem;
}
.about{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.about .image{
    flex: 1 1 40rem;
    background: url(../images/about.jpeg)no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: screen;
    height: 28rem;
    border: 5px solid #cddac5;
}
.about .image:hover{
    transform: scale(1.2);
    margin-right: 6rem;
    cursor: pointer;
}
.about .content{
    padding: 2rem;
    flex: 1 1 40rem;
}
.about .content h3{
    color: #333;
    font-size: 3.5rem;
}
.about .content p{
    color: #666;
    padding: 2rem 0;
    font-size: 1.6rem;
    margin-top: 20px;
}
.about .content h3 span{
    color: var(--yellow);
    cursor: pointer;
    font-weight: 500;
}
.about .content p span{
    color: var(--yellow);
    cursor: pointer;
    font-weight: 500;
}
.about .content h3 span:hover,
.about .content p span:hover{
    transform: scale(1.2);
    color: #f10808;
}
.menu .list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    justify-content: center;
    padding: 1rem 0;
    border-top: .3rem dashed rgba(0,0,0,.1);
    border-bottom: .3rem dashed rgba(0,0,0,.1);
    margin: 2rem 0;
}
.menu .list .btn{
    margin: 1rem;
}
.menu .list .btn.active,
.menu .list .btn:hover{
    cursor: pointer;
    background: var(--yellow);
    color: red;
}
.menu .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.menu .row .image{
    flex: 1 1 40rem;
    margin: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,21);
}
.menu .row .image:hover{
    transform: scale(1.2);
    margin-right: 7rem;
    cursor: pointer;
}
.menu .row .image img{
    object-fit: cover;
    width: 100%;
    border-radius: 1rem;
}
.menu .row .content{
    flex: 1 1 40rem;
}
.menu .row .content .info{
    padding: 1rem 0;
}
.menu .row .content .info h3{
    display: flex;
    font-size: 2.4rem;
    color: #333;
    align-items: center;
}
.menu .row .content .info h3 span{
    padding-right: 1rem;
    color: var(--yellow);
}
.menu .row .content .info p{
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
    padding-left: 4.5rem;
}
.popular{
    background: linear-gradient(rgba(255,255,255,.7), rgba(255,255,255,.7)), url(../images/imgh.avif) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.popular .box-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.popular .box-container .box{
    width: 35rem;
    padding: 2rem;
    background: #fff;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,2);
    border-radius: 1rem;
}
.popular .box-container .box img{
    width: 100%;
    object-fit: cover;
    height: 20rem;
}
.popular .box-container .box h3{
    font-size: 3rem;
    font-weight: normal;
    color: #333;
}
.popular .box-container .box h3 span{
    color: var(--yellow);
}
.popular .box-container .box .stars i{
    font-size: 2rem;
    padding: 1rem .1rem;
    color: var(--yellow);
}
.popular .box-container .box .price{
    font-size: 2.5rem;
    color: #666;
}
.popular .box-container .box:hover{
    box-shadow: 0 1rem .5rem rgba(0,0,0,2);
    transform: scale(1.06);
    cursor: pointer;
}
.gallery .box-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.gallery .box-container .box{
    margin: 2rem;
    height: 20rem;
    width: 30rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.gallery .box-container .box img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.gallery .box-container .box h3{
    top: 115%;
    left: 50%;
    position: absolute;
    color: #fff;
    text-align: center;
    font-size: 3rem;
    transform: translate(-50%, -50%);
}
.gallery .box-container .box h3 span{
    color: var(--yellow);
}
.gallery .box-container .box:hover h3{
    top: 50%;
    transition-delay: .2s;
    opacity: 1;
}
.gallery .box-container .box::before{
    content: '';
    top: -100%;
    left: 0;
    position: absolute;
    background: rgba(0,0,0, 0.7);
    transition: .2s linear;
    width: 100%;
    height: 100%;
}
.gallery .box-container .box:hover::before{
    top: 0;
}
.order{
    background: url(../images/1000039765.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
.order .row{
    align-items: center;
    background: #fff;
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.3);
    display: flex;
}
.order .row .image{
    flex: 1 1 40%;
    margin-right: 2rem;
}
.order .row .image img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.order .row form{
    flex: 1 1 60%;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
}
.order .row form .box{
    margin: 1rem 0;
    padding: 1rem;
    color: #333;
    font-size: 1.5rem;
    background: #f0f0f0;
    width: 100%;
    text-transform: none;
}
.order .row form .box::placeholder{
    text-transform: capitalize;
}
.order .row form .address{
    height: 15rem;
    resize: none;
}
.footer{
    padding: 1rem 7%;
    background: #282727;
}
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
}
.footer .box-container .box{
    margin: 2rem;
    flex: 1 1 25rem;
}
.footer .box-container .box h3{
    padding: 1rem 0;
    color: #fff;
    font-size: 2.5rem;
    font-weight: normal;
}
.footer .box-container .box p{
    color: #eee;
    padding: 1rem 0;
    font-size: 1.7rem;
}
.footer .box-container .box a{
    color: #eee;
    font-size: 1.7rem;
    display: block;
    padding: 1rem 0;
}
.footer .box-container .box a:hover{
    color: var(--yellow);
}
.footer .box-container .box p i{
    color: var(--yellow);
    padding-right: .5rem;
}
.footer .credit{
    border-top: .2rem solid rgba(255,255,255,.7);
    font-size: 2rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: .1rem;
    padding: 2rem 1rem;
    color: #fff;
}
.footer .credit a{
    color: var(--yellow);
}
.footer .credit span{
    color: var(--yellow);
}
.footer .credit span:hover{
    color: red;
    cursor: pointer;
    transform: scale(1.2);
}










@media(max-width:991px){
    html{
        font-size: 55%;
        padding-top: 10rem;
    }
    header .logo img:hover{
        transform: scale(1.5);
    }
    .home::before,
    .home::after{
        display: none;
    }
    .menu .row .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
        margin-bottom: 5rem;
    }
    .about .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
    }
}


@media(max-width:768px){
    header #menu-bar{
        display: block;
    }
    header .navbar{
        position: fixed;
        width: 100%;
        top: 8rem;
        left: 0;
        border-top: .2rem solid rgba(0,0,0,.1);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        background: var(--yellow);
    }
    header .navbar ul{
        padding: 2rem;
        flex-flow: column;
    }
    header .navbar ul li{
        width: 100%;
        margin: 1.5rem;
    }
    header .navbar ul li a{
        border-left: .2rem solid #fff;
        font-size: 2rem;
        padding-left: 2rem;
        color: #fff;
        display: block;
    }
    header .navbar ul li a:hover,
    header .navbar ul li a.active {
        color: #333;
        border-color: #333;
    }
    header .logo img:hover{
        transform: scale(1.5);
    }
    .fa-times{
        transform: rotate(180deg);
    }
    header .navbar.nav-toggle{
        transform: scaleY(1);
        opacity: 1;
    }
    .home .content{
        text-align: center;
    }
    .home .content h3{
        font-size: 4.5rem;
    }
    .about .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
    }
    .menu .row .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
        margin-bottom: 5rem;
    }
}


@media(max-width:500px){
    html{
        font-size: 50%;
        padding-top: 15rem;
    }
    .about .content h3{
        font-size: 3.1rem;
    }
    .about .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
    }
    .menu .row .image:hover{
        transform: scale(1.2);
        margin-right: 0;
        cursor: pointer;
        margin-bottom: 5rem;
    }
}