*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    width: 100%;
    min-height: 100vh;
    background-color: aliceblue;
}

header{
    height: 60px;
    width: 100%;
    background: rgb(27, 27, 27);
    color:white;
    display: flex;
    align-items: center;
}

.nav-list{
        display: none;
    }

.container{
    width: 70%;
    margin:0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



nav ul li{
    list-style: none;
    display: inline;
    margin-right: 20px;
    font-weight: 700;
}

.logo{
    font-size:24px;
}

/* Hero Section */

.hero{
    width: 100%;
    height: auto;
    background:url("Images/b.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position:center ;
    color:rgb(245, 37, 9);
    text-align:center;
    padding: 140px 0;
    margin-bottom: 20px;
}


.hero h2{
    font-size: 36px;
    margin-bottom:10px;
}
.hero p{
    font-size: 20px;
    margin-bottom:10px;
}
.search-box{
    max-width: 550px;
    margin: 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-box input{
    width: 70%;
    padding: 10px;
    outline: none;
    border: 0;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-box button{
    
    padding: 10px 20px;
    outline: none;
    border: 0;
    border-radius: 0px 5px 5px 0px;
    font-size: 1rem;
    background: rgb(245, 37, 9);
    color: #fff;
    cursor: pointer;
}

/* Product Section */

.recipes{
    padding: 50px o;
}
.recipes h2{
text-align: center;
margin-bottom: 30px;
}

.our-product{
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bolder;
    font-style: italic;
    color: rgb(255, 255, 255);
    background-color: #326328;
    padding: auto;
    font-size: auto;
}

.product-section{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: 10px;
}

.product-cart{
    background: #fff;
    margin: 30px 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-cart img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-cart h2{
    font-size: 22px;
    padding: 20px;
    text-align: center;
}

.product-cart p{
    font-size: 18px;
    padding: 20px;
    text-align: center;
}

.product-cart a{
    display: block;
    text-align: center;
    text-decoration: none;
    background: #333;
    color: #fff;
    padding: 15px 0;
    cursor: pointer;
}

.company-info{
    width: 100%;
    height: 500px;
    background-color: #333;
}

.about_us{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    float: left;
}

.about_us p{
    color: #ffffff;
    font-size: 35px;
    text-align: center;
    font-family: Blacksword;
}

.about_info{
    width: 30%;
    height: 450px;
    background-color: rgba(150, 210, 245, 0.1);
    margin-left: 20%;
    padding-top: 20px;
    box-sizing: border-box;
    float: left;
}

.about_info p{
    color: #ccc;
    text-align: center;
    font-size: 25px;
    text-overflow: clip;
    word-spacing: normal;
}

.about_pic{
    box-sizing: border-box;
    margin-right: 20%;
    width: 30%;
    height: 400px;
    background-image: url("Images/about_pic.jpg");
    float: left;
    background-size: cover;
}

footer{
    background: #333;
    padding: 20px 0;
    color: #fff;
    text-align: center;
}

.menu-icon{
    font-size: 24px;
    padding: 20px;
    text-align: right;
    cursor: pointer;
    display: block;
}

/* ................. Media Query ............... */

@media only screen and (min-width: 786px){
    .menu-icon{
        display: none;
    }

    .nav-list{
        display: block;
    }
}

@media only screen and (max-width: 786px){
    .hero h2{
        font-size: 28px;
    }

    .hero p{
        font-size: 15px;
    }

    .about_info{
        width: 60%;
        height: auto;
    }

    .about_info p{
        font-size: small;
    }

    .about_pic{
        width: 60%;
        height: 250px;
        margin-left: 20%;
        margin-top: 10px;
        background-size: cover;
    }
}

/*
.product-cart{
    width: auto;
    height: auto;
    float: left;
    margin: 2px auto;
    align-items: center;
}
*/
