@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
}

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all 0.2s linear;
}
html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}
section{
    padding:2rem 9%;
}
section:nth-child(even){
    background: #eee;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 7%; 
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
    z-index: 1000;
    box-shadow: var(--box-shadow);
}
header .logo{
    color: var(--black);
    font-size: 2.5rem;
    font-weight: bolder;
}
header .logo i{
    color: var(--green);
}
header .navbar a{
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    color:var(--light-color);
}
header .navbar a.active,
header .navbar a:hover {
    color: #fff;
    background: var(--green);
}
header .icons i, 
header .icons a{
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
}
header .icons i:hover, 
header .icons a:hover{
    color:#fff;
    background: var(--green);
    transform: rotate(360deg);
}
header .icons #menu-bars{
    display: none;
}
#search-form {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1004;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    transition: top 0.5s ease; 
}

#search-form.active {
    top: 0; 
}

#search-form #search-box {
    width: 50rem;
    border-bottom: 0.1rem solid #fff;
    padding: 1rem 0; 
    color: #fff;
    font-size: 3rem;
    text-transform: none;
    background: none;
}

#search-form #search-box::placeholder {
    color: #fff;
}

#search-form #search-box::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

#search-form label {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
}

#search-form label:hover {
    color: var(--green);
}

#search-form #close {
    position: absolute;
    color: #fff;
    cursor: pointer;
    top: 2rem;
    right: 3rem;
    font-size: 5rem;
}
.home .home-slider .slide{
    display:flex;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem;
    padding-top: 9rem;
}
.home .home-slider .slide .content{
    flex:1 1 45rem;
}
.home .home-slider .slide .image{
    flex: 1 1 45rem;
} 
.home .home-slider .slide .image img{
    width: 100%;
}
.home .home-slider .slide .content span{
    color: var(--green);
    font-size:2.5rem;
}
.home .home-slider .slide .content h3{
    color: var(--black);
    font-size:7rem;
}
.home .home-slider .slide .content p{
    color: var(--light-color);
    font-size:2.2rem;
    padding: 5rem 0;
    line-height: 1.5;
}
.btn{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color:#fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: 1rem 7%;
}
.btn:hover{
    background:  var(--green);
    letter-spacing: .1rem;
}
.swiper-pagination-bullet-active{
    background: var(--green);

}
.sub-heading{
    text-align: center;
    color:var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}
.heading{
    text-align: center;
    color:var(--black);
    font-size: 3rem;
    padding-bottom: 2rem;
    text-transform: uppercase;
}
 .dishes {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #f9f9f9;
}

.dishes .sub-heading {
    font-size: 1.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.dishes .heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 600;
}

.dishes .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.dishes .box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-align: center;
}

.dishes .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.dishes .box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease-in-out;
}

.dishes .box:hover img {
    transform: scale(1.05);
}

.dishes .box h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0.5rem 0;
}
.dishes .box .stars {
    color: #ffbc00;
    margin: 0.5rem 0;
}

.dishes .box .stars i {
    margin-right: 2px;
}
.dishes .box span {
    font-size: 1.2rem;
    color: #555;
    font-weight: 500;
    display: block;
    margin: 0.5rem 0;
}
.dishes .box .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    color: #fff;
    background: #ff7f3f;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.dishes .box .btn:hover {
    background: #ff5714;
}

.dishes .box .fas {
    position: absolute;
    font-size: 1.2rem;
    color: #ff7f3f;
    background: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 10;
}

.dishes .box .fas.fa-heart {
    top: 10px;
    right: 10px;
}

.dishes .box .fas.fa-eye {
    top: 10px;
    left: 10px;
}

.dishes .box .fas:hover {
    color: #ff5714;
    transform: scale(1.1);
}
.about .row{
    display: flex;
    flex-wrap:wrap;
    gap:1.5rem;
    align-items: center;
}
.about .row .image{
    flex: 1 1 45rem;
}
.about .row .image img{
    width: 100%;
}
.about .row .content{
    flex: 1 1 45rem;
}
.about .row .content h3{
    color: var(--black); 
    font-size: 4rem;
    padding: 2 rem 0 ;
}
.about .row .content p{
    color: var(--light-color);
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 2;
}
.about .row .content .icons-conatiner{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding:2rem;
    margin-top: .5rem;
}
.about .row .content .icons-conatiner .icons{
    background: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex: 1 1 17rem;
 
}
.about .row .content .icons-conatiner .icons i{
    font-size: 2.5rem;
    color: var(--green);
}
.about .row .content .icons-conatiner .icons span{
    font-size: 1.5rem;
    color: var(--black);
}
.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    background: #fff;
    border: 0.1rem solid rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    box-shadow: var(--box-shadow, 0px 4px 8px rgba(0, 0, 0, 0.1));
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu .box-container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.menu .box-container .box .image {
    height: 25rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.menu .box-container .box .image img {
    height: 100%;
    width: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
    transition: transform 0.3s ease; 
}
.menu .box-container .box .image img:hover {
    transform: scale(1.05);
}

.menu .box-container .box .image .fa-heart {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color: var(--black, #333); 
    transition: background-color 0.3s ease, color 0.3s ease;
}

.menu .box-container .box .image .fa-heart:hover {
    background-color: var(--green, #28a745); 
    color: #fff;
}
.menu .box-container .box .content {
    padding: 2rem;
    padding-top: 0;
}
.menu .box-container .box .content .stars {
    padding-bottom: 1rem;
}

.menu .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--green, #28a745);
}

.menu .box-container .box .content h3 {
    color: var(--black, #333);
    font-size: 2.5rem;
    margin: 0;
}
.menu .box-container .box .content p {
    color: var(--light-color, #666);
    font-size: 1.6rem;
    padding: 0.5rem 0;
    line-height: 1.8rem;
}
.menu .box-container .box .content .price {
    color: var(--green, #28a745);
    font-size: 2.5rem;
    margin-left: 1rem;
}
.review .slide{
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    border-radius: .5rem;
    position: relative;
}
.review .slide .fa-quote-right{
    position: absolute;
    top:2rem;
    right: 2rem;
    font-size: 6rem;
    color:#ccc;
}
.review .slide .user{
    display: flex;
    gap:1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}
.review .slide .user img{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.review .slide .user h3{
    color:var(--black);
    font-size:2rem ;
    padding-bottom: .5rem;

}
.review .slide .user i{
    font-size: 1.3rem;
    color:var(--green);
}
.order form{
    width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;
}
.order form .inputBox{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.order form .inputBox .input{
    width: 49% ;
}
.order form .inputBox .input span{
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color:var(--green);
}
.order form .inputBox .input input, 
.order form .inputBox .input textarea{
    background: #eee;
    padding:1rem;
    font-size: 1.6rem;
    color:var(--black);
    text-transform: none;
    margin-bottom: 1rem;
    width: 100% ;
}
.order form .inputBox .input input:focus, 
.order form .inputBox .input textarea:focus{
    border: .1rem solid var(--green);
}
.order form .inputBox .input textarea{
    height: 20rem;
    resize: none;
}
.order form  .btn{
    margin-top: 0 ;
}
.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem
}
.footer .box-container .box h3{
    padding: .5rem 0;
    font-size: 2.5rem;
    color: var(--black);
}
.footer .box-container .box a{
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.footer .box-container .box a:hover{
    color: var(--green);
    text-decoration: underline;
}
.footer .credit{
    text-align: center;
    border-top: .1rem solid rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    color: var(--black);
    padding: .5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
.footer .credit span{
    color: var(--green);
}
@media (max-width: 480px) { 
    html {
        font-size: 40%;
    }
    header {
        padding: 1rem 1rem;
    }
    #search-form #search-box {
        width: 30rem;
    }
}
@media (max-width:991px){
    html {
        font-size: 55%;
    }
    header{
        padding:1rem 2rem;
    }
    section{
        padding:2rem;
    }
}
@media (max-width:768px){
    header .icons #menu-bars{
        display:inline-block;
    }
    header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        right:0;
        background: #fff;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        border-bottom: .1rem solid rgba(0, 0, 0, .2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
    }
    header .navbar a{
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: #eee;
    }
    #search-form #search-box{
        width: 90%;
        margin: 0 1rem;
    }
    .home .home-slider .slide .content h3{
        font-size: 5rem;
    }

}
@media (max-width:450px){
    html {
        font-size: 50%;
    }
    .dishes .box-container .box img{
        height: auto;
        width: 100% ;
    }
    .order form .inputBox .input{
        width: 100% ;
    }
}
