* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
}

body {
    background-color: rgb(250, 244, 244);
}

/* navigation */
nav {
    display: inline-flex;
    justify-content: space-evenly;
    gap: 70px;
    width: 100%;
    padding: 15px 20px;
    position: sticky;
}
nav>li>a {
            text-decoration: none;
            color: black;
        }


button>a {
    background-color: rgb(255, 115, 0);
    color: white;
    border: none;
    text-decoration: none;
}

button {
    padding: 5px 10px;
    background-color: rgb(255, 115, 0);
    border: none;
}

.explore {
    color: rgb(255, 153, 0);
}

.name,
.footer-box>h3 {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    color: rgb(255, 153, 0);
    font-size: xx-large;
}

/* Hero-section */
.hero {
    margin-bottom: 15px;
}

.text {
    position: absolute;
    color: white;
    margin-top: 120px;
    margin-left: 50px;
    line-height: 50px;
    font-size: larger;
    font-weight: 300;
}

.hero-image {
    width: 100%;
    height: 90vh;
}

.list {
    margin: auto;
    justify-content: center;
    margin-left: 20px;
    font-size: large;
    border-radius: 5px;
    font-weight: 300;
    line-height: 35px;
    margin-top: 30px;
    background-color: white;
    /* margin-bottom: 10px; */
    padding-left: 5px;
}

.list>p {
    margin-bottom: 5px;
    margin-top: 5px;

}

.list>ul>.different {
    background-color: rgba(218, 154, 72, 0.425);
    border-left: 2px solid red;
}
.list>ul>.different>a{
    text-decoration: none;
    color: black;
}

/* popular sections */
.popular {
    display: block;
    margin-top: 50px;
    width: 100%;
    padding-right: 15px;
}

.popularity {
    width: 100%;
    display: flex;
    /* justify-content: space-between; */
    left: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;


}

.writing {
    color: black;
    margin: 30px 20px;
    font-size: large;
    font-weight: 950;
    left: 70px;
}

.foodss {
    width: 300px;
    height: 350px;
    margin: auto;
    margin-top: 15px;
    padding-bottom: 25px;
    background-color: white
}

.food {
    width: 270px;
    height: 150px;
    margin-left: 10px;
}

.foodss>p {
    margin: 20px 20px;
    /* text-align: center; */
    font-size: large;
}

.foodss>h4 {
    align-items: center;
    left: 0;
    top: 0;
    font-size: small;
    font-weight: 500;
    padding-bottom: 10px;

}

.price {
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin: auto;
    margin-top: 10px;
}

.price>h6 {
    font-size: large;
    color: rgb(255, 123, 0);
}

.price>button {
    color: white;
    padding: auto;
    border-radius: 100%;
    /* padding: 15px 20px; */
}

.spave {
    background-color: white;
    width: 100%;
    height: 95px;
}

/* FOOTER */
.footer {
    background: #6b3f2a;
    width: 100%;
    color: white;
    display: flex;
    position: absolute;
    justify-content: space-around;
    padding: 40px;
    height: 70vh;
    z-index: 10000;
    flex-wrap: wrap;
    /* justify-content: flex-start; */
}

.footer-box {
    max-width: 300px;
    line-height: 25px;
}

.footer-box ul {
    list-style: none;
    margin-top: 10px;
}

.footer-box li {
    margin-bottom: 8px;
}
/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width:768px){

    /* NAVIGATION */
    nav{
        flex-wrap:wrap;
        gap:20px;
        justify-content:center;
        text-align:center;
    }

    /* HERO */
    .hero-image{
        height:60vh;
        object-fit:cover;
    }

    .text{
        margin-left:0;
        width:90%;
        left:50%;
        transform:translateX(-50%);
        text-align:center;
        line-height:35px;
        margin-top:80px;
    }

    /* LIST SECTION */
    .list{
        width:90%;
        margin:auto;
        margin-top:20px;
    }

    /* POPULAR FOOD SECTION */
    .popularity{
        flex-direction:column;
        align-items:center;
        padding-bottom:20px;
    }

    .foodss{
        width:90%;
        height:auto;
    }

    .food{
        width:100%;
        height:auto;
        margin-left:0;
    }

    .price{
        width:90%;
        flex-direction:row;
    }

    /* SPACING FIX */
    .spave{
        height:auto;
    }

    /* FOOTER */
    .footer{
        position:relative;
        height:auto;
        flex-direction:column;
        text-align:center;
        gap:25px;
        padding:25px;
    }

    .footer-box{
        max-width:100%;
    }
}


/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px){

    .text{
        font-size:14px;
        line-height:28px;
    }

    .writing{
        text-align:center;
        font-size:20px;
    }

}