@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Wendy+One&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lexend", sans-serif;
}

:root{
    --primary_300: #FF6000;
    --primary_p50: #FFEFE6;
    --grey_500:#2A2A2A;
    --grey_100: #939393;
    --white: #FFFFFF;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
}

ul{
    list-style: none;
}

header{
    background-color: var(--primary_p50);
}

nav .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0px;
}

nav .logo{
    width: 150px;
}

.logo img{
    width: 100%;
}

nav .links{
    display: flex;
    align-items: center;
    gap: 36px;
}

.links li{ 
    color: var(--grey_100);
    font-size: 20px;
    font-weight: 500;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    padding: 6px 7px;
    border-radius: 10px;
    z-index: 8;
}

.links li:hover{
    color: white;
}

.links li::after{
    position: absolute;
    content: " ";
    width: 20px;
    height: 2px;
    bottom: 0px;
    left: 0px;
    /* background-color: #ffd000; */
    background-color: #FFD1A0;
    transition: all .3s ease;
    border-radius: 10px;
    z-index: -1;
    transform: skew(-45deg);
}

.links li:hover::after{
    width: 100%;
    height: 100%;
}

.links li::before{
    position: absolute;
    content: " ";
    width: 20px;
    height: 2px;
    top: 0px;
    right: 0px;
    background-color: #FFD38A;
    transition: all .3s ease;
    border-radius: 10px;
    transform: skew(45deg);

    z-index: -1;
}

.links li:hover::before{
    width: 100%;
    height: 100%;
}

nav .icons{
    display: flex;
    align-items: center;
    gap: 20px;
}

.icons p{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    background-color: var(--primary_300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}

.search{
    position: relative;
}

.search1{
    border: 2px solid red;
    display: flex;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    top: 0px;
    left: -160px;
}

.search1 input{
    padding: 10px 5px;
    outline: none;
    border-radius: 20px;
    border: none;
}

.search1 label{
    padding: 5px 10px;
}

.icons img{
    width: 40px;
}

.hero .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 140px;
    position: relative;
}

.fasts{
    bottom: -80px;
    left: 0px;
    padding: 30px 24px;
    border-radius: 24px;
    background-color: white;
    filter: drop-shadow(3px 10px 10px #00000040);
    width: 1200px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fast{
    width: 397px;
    display: flex;
    align-items: center;
    gap: 10px;
}



.pizza{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.pizza img{
    width: 100%;
    height: 100%;
}

.fast .freash{
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 258px;
}

.freash h4{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 20px;
    color: var(--grey_500);
}

.freash p{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.25px;
    line-height: 20px;
    color: var(--grey_100);
}

.hero .info{
    width: 566px;
    align-items: center;
    flex-direction: column;
}


.info h1{
   font-size: 48px;
   font-weight: 800;
   color: var(--primary_300);
   padding-right: 19px;
   margin-bottom: 30px;
}

.info h1 span{
    color: var(--grey_500);
}

.btns{
    display: flex;
    align-items:baseline;
    justify-content: left;
    flex-direction: column;
}

.btns button{
    padding: 13px 70px;
    border: none;
    border-radius: 50px;
    margin-bottom:50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.25px;
}

.btns .oreder{
    background-color: var(--primary_300);
    color: var(--white);
    border: 2px solid var(--primary_300);
}

.btns .track{
    background-color:transparent;
    color: var(--primary_300);
    border: 2px solid var(--primary_300);
}

.hero .picture{
    width: 500px;
    height: 500px;
}

.picture img{
    width: 100%;
    height: 100%;
}



.about{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:140px;
    padding-bottom: 50px;
}

.about h1{
    font-size: 48px;
    font-weight: 700;
    color: var(--grey_500);
    width: 475px;
    line-height: 100%;
}

.about h1 span{
    color: var(--primary_300);
}

.about p{
    font-size: 20px;
    font-weight: 400;
    width: 456px;
    color: #B3B3B3;
}

.boxs{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.boxs .box{
    width: 354px;
}

.box .rasm{
    width: 100%;
    height: 354px;
    margin-bottom: 20px;
}

.rasm img{
    width: 100%;
    height: 100%;
}

.box p{
    font-size: 24px;
    font-weight: 600;
    color: var(--grey_500);
    text-align: center;
    padding: 0px 50px;
    margin-bottom: 20px;
}

.box h5{
    font-size: 24px;
    font-weight: 500;
    color: var(--primary_300);
    text-align: center;
}

.manzillar{
    
    background-color: var(--primary_p50);
}

.manzillar .container{
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.manzil{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 32px;
    font-weight: 500;
    color: #1A2716;
}

.menular{
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 60px;
}

.menular .anything{
    display: flex;
    align-items: baseline;
    flex-direction: column;
}

.anything h1{
    font-size: 48px;
    font-weight: 700;
    color: var(--grey_500);
    margin-bottom: 10px;
}

.anything h1 span{
    color: var(--primary_300);
}

.anything p{
    width: 280px;
    font-size: 16px;
    font-weight: 600;
    color: #B3B3B3;
}

.menular button{
    padding: 16px 36px;
    font-size: 20px;
    font-weight: 600;
    background-color: var(--primary_300);
    color: var(--white);
    border-radius: 50px;
    border: none;
}

.cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 150px;
    gap: 150px;
}

.cards .card{
    padding: 20px 20px;
    padding-top: 140px;
    border-radius: 16px;
    width: 300px;
    height: 350px;
    background-color: var(--primary_p50);
    position: relative;
    margin-bottom: 30px;
}

.card .imgs{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 6px dashed var(--primary_300);
    top: -130px;
    right: -80px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgs img{
    width: 200px;
    height: 200px;
}

.card h2, .card h3{
    font-size: 24px;
    font-weight: 500;
}

.card h2{
    color: var(--primary_300);
}

.card h3{
    color: var(--grey_500);
    margin-bottom: 10px;
}

.card .stars{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.star{
    color: #FFC700;
    letter-spacing: 1px;
    font-size: 18px;
}

.stars p{
    font-size: 24px;
    font-weight: 400;
    color: var(--grey_100);
}

.card .summa{
    display: flex;
    align-items: center;
    justify-content: space-between ;
}

.summa h1{
    font-size: 36px;
    font-weight: 500;
    color: var(--grey_500);
}

.summa button{
    padding: 16px 24px;
    background-color: var(--primary_300);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
}

.coupon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
    margin-bottom: 70px;
}

.coupon .asosiy{
    width: 504px;
    height: 504px;
}

.coupon .coup{
    width: 680px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.coup img{
    width: 650px;
    height: 240px;
}

footer{
    border-top: 5px dashed var(--primary_300);
    background-color: var(--primary_p50);
}

footer .container{
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 70px;
    padding-bottom: 100px;
}

footer .footer_top{
    width: 364px;
}


.footer_top h1{
    font-size: 32px;
    font-weight: 400;
    color: var(--grey_500);
    font-family: "Wendy One", sans-serif;
    margin-bottom: 40px;
}

.footer_top h1 span{
    color: var(--primary_300);
    font-family: "Wendy One", sans-serif;
}

.footer_top p{
    font-size: 20px;
    font-weight: 400;
    color: var(--grey_100);
    margin-bottom: 30px;
}

.footer_top h2{
    font-size: 32px;
    font-weight: 400;
    color: var(--primary_300);
    font-family: "Wendy One", sans-serif;
    margin-bottom: 40px;
    margin-top: 40px;
}

.footer_top .social{
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--grey_100);
    font-size: 19px;
}

footer .footer_bottom{
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contackts{
    line-height: 40px;
}

.contackts .muhim{
    color: var(--primary_300);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contackts li{
    font-size: 20px;
    font-weight: 400;
    color: var(--grey_100);
    margin-bottom: 20px;
}