@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
body{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
h1{
    margin: 0;
    padding: 0;
}
h2{
    margin: 0;
    padding: 0;
}
h3{
    margin: 0;
    padding: 0;
}
h4{
    margin: 0;
    padding: 0;
}
h5{
    margin: 0;
    padding: 0;
}
h6{
    margin: 0;
    padding: 0;
}
p{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
.container{
    max-width: 1140px;
    margin: 0 auto;
}
.row{
    display: flex;
}
.justify-content{
    justify-content: center;
}
.col-lg-12{
    width: 100%;
}
.col-lg-9{
    width: 75%;
}
.col-lg-8{
    width: 65%;
}
.col-lg-6{
    width: 50%;
}
.col-lg-4{
    width: 33.333%;
}
.col-lg-3{
    width: 25%;
}

.navigation{
	width: 100%;
	background: #fff;
    z-index: 1;
}
.navigation .toggle-bar{
	display: none;
}
.navigation .row{
	display: flex;
}
.navigation .col-lg-6{
	width: 50%;
}
.navigation .logo{
    padding: 20px 0;
	text-align: left;
}
.navigation .row .toggle-bar{
	text-align: right;
}
.navigation .logo img{
	width: 160px;
	padding: 0;

}
.navigation .menu ul{
	list-style-type: none;
	width: 100%;
	overflow: hidden;
    margin: 0;
    padding: 0;
    text-align: right;
}
.navigation .menu ul li{
	display: inline-block;

}
.navigation .menu ul li a{
	display: inline-block;
    text-decoration: none;
    color: #000;
    padding: 32px 25px;
    font-size: 18px;
    font-weight: 400;
}
.navigation .menu ul li a:hover{
    color: #0074FF;
}

/* Hero section css */
.hero-section {
    height: 93vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #eee;
    background: url('../images/hero-bg.jpg');
    background-size: cover;

}
.hero-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-section .hero-content {
    text-align: center;
    height: 93vh;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.hero-section .hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    line-height: 1.5em;
}
.hero-section .hero-content a{
    margin-top: 20px;
}

/* Recipe section css */
.recipe-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}
.recipe-section .heading h2{
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}
.recipe-section .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    grid-gap: 20px;
    padding: 15px;
}
.recipe-section .content .item{
    width: 100%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}
.recipe-section .content .item .image{
    height: 180px;
    width: 100%;
    overflow: hidden;
}
.recipe-section .content .item img{
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recipe-section .content .item h3{
    font-size: 17px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}





/* Gallery */
.gallery {
    width: 100%;
    margin: auto;
    padding: 70px 0;
    box-sizing: border-box;
}
.gallery .heading h2{
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}
.gallery .gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}
.gallery .gallery-content  .item{
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.gallery .gallery-content  img {
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}
.gallery .gallery-content .item:hover img{
    transform: scale(1.3);
}

/* Footer */
#footer {
    background: #353535;
    color: #eee;
    padding: 30px;
    text-align: center;
}
#footer p{
    line-height: 1.6em;
}


/* Recipe page css */
.sub-hero-section{
    height: 200px;
    width: 100%;
    background: url('../images/single-page-banner.png');
}
.sub-hero-section .overlay{
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.6);
}
.sub-hero-section .caption{
    height: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sub-hero-section .caption h2{
    font-size: 40px;
    color: #fff;
}
.recipe-list-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 0;
    box-sizing: border-box;
}
.recipe-list-section .heading h2{
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}
.recipe-list-section .content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    grid-gap: 20px;
    padding: 15px;
}
.recipe-list-section .content .item{
    width: 100%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}
.recipe-list-section .content .item .image{
    height: 180px;
    width: 100%;
    overflow: hidden;
}
.recipe-list-section .content .item img{
    display: inline-block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recipe-list-section .content .item .details{
    padding: 20px;
}
.recipe-list-section .content .item h3{
    font-size: 18px;
    margin-bottom: 15px;
}
.recipe-list-section .content .item p{
    line-height: 1.5em;
}
.recipe-list-section .content .item a{
    display: inline-block;
    background: #353535;
    padding: 10px 20px;
    color: #fff;
    border-radius: 5px;
    margin-top: 20px;
}
.recipe-list-section .content .item a:hover{
    background: #000;
}
.about-section .about-info{
    width: 100%;
    padding-top: 80px;
}

.about-section .about-info .image img{
    width: 95%;
    border-radius: 10px;
}
.about-section .about-info .details{
    padding-left: 20px;
}
.about-section .about-info .details h2{
    font-size: 30px;
    margin-bottom: 20px;
    margin-top: 30px;
}
.about-section .about-info .details p{
    line-height: 1.6em;
}
.team-section{
    margin-top: 70px;
    margin-bottom: 70px;

}
.team-section .heading h2{
    text-align: center;
    font-size: 35px;
    margin-bottom: 40px;
}
.team-section .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.team-section .card{
    border: 1px solid #ddd;
}
.team-section .image{
    height: 220px;
}
.team-section .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.team-section .card .details{
    padding: 20px;
    text-align: center;
}
.team-section .card .details h3{
    font-size: 20px;
    margin-bottom: 10px;
}
.team-section .card .details p{
    font-size: 18px;
    color: #f17c00;
}

.recipe-view{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 70px;
}
.recipe-view .image img{
    width: 100%;
}
.recipe-view h2{
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 50px;
}
.recipe-view .details1{
    display: flex;
    width: 100%;
}
.recipe-view .details1 .item{
    width: 33.333%;
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
}
.recipe-view .details1 .item p{
    font-size: 20px;
}
.recipe-view .details2 p{
    margin: 30px 0;
    font-size: 18px;
    line-height: 1.6em;
}
.recipe-view .details3 h3{
    font-size: 20px;
    margin-bottom: 20px;
}
.recipe-view .details3 {
    margin-bottom: 50px;
    margin-top: 30px;
}
.recipe-view .details3 ul li{
    font-size: 18px;
    margin-bottom: 10px;
}





.mobile-view{
    display: none;
}

.navigation input{
    display: none;
}
.navigation label{
    display: none;
}

@media only screen and (max-width: 768px){
    .mobile-view{
        display: block;
    }
    .desktop-view{
        display: none;
    }
    .col-lg-4{
        width: 100%;
    }
    .col-lg-6{
        width: 100%;
    }
    .col-lg-3{
        width: 100%;
    }
    .navigation .menu ul .btn a{
        display: none;
    }
    .navigation{
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .navigation .row{
        display: flex;
    }
    .navigation .col-lg-6{
        width: 50%;
    }
    .navigation .col-lg-9{
        width: 100%;
    }
    .navigation img{
        width: 25%;
        padding-top: 0px;
        padding: 17px;
    }
    .navigation .nav-order-btn{
        display: inline-block;
        vertical-align: sub;
    }
    .navigation .nav-order-btn a{
        display: inline-block;
        font-size: 14px;
        text-align: center;
        padding: 12px 12px;
        background: #f17c00;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 5px;
        vertical-align: super;
    }
    .navigation .toggle-bar{
        display: block;
        text-align: right;
    }
    .navigation-bar{
        
    }
    .navigation .fa{
        font-size: 27px;
        color: #000;
    }
    .navigation .menu ul{
        list-style-type: none;
        width: 100%;
        overflow: hidden;
        background: #252525;
        position: absolute;
        margin-left: 0;
        left: 0;
        text-align: left;
        margin: 0;
        padding: 0;
        z-index: 1;
        margin-top: 4px;
    }
    
    .navigation-bar-show{
    }
    .navigation .menu ul li{
        display: block;
        border-bottom: 1px solid #828282;
    }
    .navigation .menu ul li a{
        display: inline-block;
        color: #fff;
        text-decoration: none;
        padding: 20px 16px;
        font-size: 18px;
        font-weight: 600;
        width: 100%;
        margin: 0;
    }
    .navigation .logo img{
        width: 113px;
        padding: 0;
    }





    .navigation input{
        display: block;
    }
    .navigation label{
        display: block;
    }
    .navigation .col-lg-9{
        text-align: right;
    }

    .navigation label {
        display: inline-block;
        background-color: #ccc;
        margin-bottom: 10px;
        padding: 10px;
        border-radius: 4px;
        margin-top: 15px;
      }
      
      .navigation input[type=checkbox] {
        display: none;
      }
      
      .navigation :checked + .menu {
        display: block;
      }
      
      .navigation .menu{
        display: none;
      }

      .hero-section .hero-content{
        padding: 15px;
        box-sizing: border-box;
      }
      .hero-section .hero-content h2{
        font-size: 30px;
      }
      .hero-section .hero-content p{
        font-size: 16px;
      }
      .recipe-section .content{
        grid-template-columns: repeat(1, 1fr);
      }
      .recipe-section .content .item .image{
        height: 200px;
      }
      .gallery .gallery-content{
        padding: 15px;
        grid-template-columns: repeat(1, 1fr);
        box-sizing: border-box;
      }
      .recipe-list-section .content{
        grid-template-columns: repeat(1, 1fr);
      }
      .about-section .row{
        display: block;
      }
      .about-section .about-info .details{
        padding-left: 0;
      }
      .about-section .about-info .image img{
        width: 100%;
        margin-top: 30px;
      }
      .about-section .about-info {
        padding: 15px;
        box-sizing: border-box;
      }
      .team-section {
        padding: 15px;
        box-sizing: border-box;
      }
      .team-section .row{
        grid-template-columns: repeat(1, 1fr);
      }
      .recipe-view{
        padding: 15px;
        box-sizing: border-box;
      }
      .recipe-view h2{
        font-size: 30px;
      }
      .recipe-view .details3 .row{
        display: block;
      }
      .recipe-view .details3 ul li{
        font-size: 16px;
      }

}






