@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&family=Poppins:wght@200;300;400;500;600;700&family=Tapestry&display=swap');

*,
*::after,
*::before{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html{
    font-size: 62.5%;
}
body{
    font-family: 'Poppins', sans-serif;
}
/* ####################### Utility classes ######################### */

.container{
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

.btn{
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary{
    color: #fff;
    background-color: #16a083;
}
/* #################### Navbar styling ########################## */

/* ############## Destop mode ############### */

.navbar input[type="checkbox"],
.navbar .hamburger-lines{
    display: none;
}

.navbar{
   box-shadow: 0px 5px 10px 0px rgb(170, 170, 170) ;
   position: fixed;
   width: 100%;
   background-color: #fff;
   color: #000;
   opacity: 0.85;
   z-index: 999;
}

.navbar-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.menu-items{
    order: 2;
    display: flex;
}
.mainlogo{
    order: 1;
    font-size: 3rem;
}

.navbar li{
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.8rem;
}

.navbar a{
    text-decoration: none;
    color: rgb(22, 21, 21);
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}
.navbar a:hover{
    color: #117964;
}

/* ############################ Showcase-section ############################# */

.showcase-area{
    background: url(./images/header-image2.jpg);
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.showcase-container{
    /* border: 2px solid red; */
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 1.5rem;
    font-weight: 400;
}
.showcase-container h1{
    font-weight: 600;
    text-transform: uppercase;
}


/* ######################### About us ########################## */

#about{
    padding: 30px 0px;
    background-color: #f5f5f7;
}

#about .small{
    font-size: 1.6rem;
    font-weight: 500;
    color: #555;
}

#about h2{
    font-size: 3.2rem;    
}

#about p{
    font-size: 1.6rem;
    color: #666;
}

.about-wrapper{
    display: flex;
    flex-wrap: wrap;
}

.about-img{
    flex: 1 1 400px;
    padding: 30px;
    transform: translateX(150%);
    animation: image-animation 0.7s ease-in-out 0.6s forwards;
}
@keyframes image-animation{
    0%{
        transform: translateX(150%);
    }
    100%{
        transform: translateX(0%);
    }
}

.about-text{
    flex: 1 1 400px;
    padding: 30px;
    margin: auto;
    transform: translateX(-150%);
    animation: text-animation 0.7s ease-in-out 0.6s forwards;
}

@keyframes text-animation{
    0%{
        transform: translateX(-150%);
    }
    100%{
        transform: translateX(0%);
    }
}

.about-img img{
    display: block;
    /* border: 2px solid red; */
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: right;
}


/* ############################ Types of food section ############################ */

#food{
    padding: 10rem 0 10rem 0;
}

#food h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: #555;
}

#food h3{
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

#food a{
    font-size: 1.8rem;
}

.food-container{
    display: flex;
    justify-content: space-between;
}

.food-container img{
    display: block;
    width: 100%;
    margin: auto;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
}

.img-container{
    margin: 0 1rem;
    /* border: 2px solid red; */
    position: relative;
}

.img-content{
    /* border: 3px solid gold; */
    display: inline-block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    opacity: 0;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

.img-container::after{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.616);
    opacity: 0;
    z-index: 2;
}

.img-container:hover .img-content{
    opacity: 1;
    top: 50%;
}

.img-container:hover::after{
    opacity: 1;
}


/* ############################ Food menu ######################### */

#food-menu{
    padding: 10rem 0;
}
.food-menu-heading{
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    color: #555;
}

.food-menu-container{
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 50px 0;
}

.food-menu-container img{
    display: block;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.food-menu-item{
    display: flex;
    flex: 1 1 600px;
    justify-content: space-evenly;
    margin-bottom: 3rem;
}

.food-description{
    margin: auto 1.5rem;
}

.food-menu-container h2{
    font-size: 2.5rem;
    color: #666;
    font-weight: 600;
}

.food-menu-container p{
    font-size: 1.6rem;
}

/* ############################### Testimonial section styling ############################### */

#testimonial{
    padding: 10rem 0;
    background: rgba(247 , 247 , 247);
}

#testimonial .testimonial-heading{
    text-align: center;
    font-size: 3rem;
    color: #666;
    font-weight: 600;
}

.testimonial-container{
    display: flex;
    justify-content: space-between;
    padding: 1rem ;
    margin: auto;
}

.testimonial-container .checked{
    color: rgb(255, 136, 0);
}

.testimonial-box .testimonial-text{
    color: #555;
    margin: 1rem 0rem;
}

.testimonial-box{
    text-align: center;
    padding: 1rem;
}

.testimonial-box .customer-photo img{
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    object-position: center;
}

.testimonial-box p{
    font-size: 1.6rem;
}

.testimonial-box .customer-name {
    margin-top: 1rem;
}


/* ############################### Contact page ################################ */

#contact{
    padding: 5rem 0rem;
    background: rgba(226 , 226 , 226);
}

.contact-container{
    display: flex;
    background: #fff;
}

.contact-image{
    width: 50%;
}

.contact-image img{
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.contact-form{
    width: 50%;
    padding: 2rem;
    margin: auto;
}

.contact-form input{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
    margin-bottom: 1rem;
    color:#666;
    font-weight: 500;
    outline: none;
}
.contact-form textarea{
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px soild #ddd;
    outline: none;
    padding: 1rem 0;
}

.contact-form h2{
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #555;
}

.contact-form a{
    font-size: 1.6rem;
}


/* ########################### Footer ######################### */

#footer h2{
    padding: 2rem 0rem;
    font-size: 2rem;
    color: #f5f5f7;
    text-align: center;
    background: rgba(0, 0, 0, 0.829);
    font-weight: 400;
}


/* ####################### MEDIA QUERIES ######################### */

/* @media (max-width: 768px){
    .navbar{
        opacity: 0.90;
    }

    .navbar .navbar-container input[type="checkbox"],
    .navbar .navbar-container .hamburger-lines{
        display: block;
    }
    
    .navbar-container{
        display: block;
        position: relative;
        height: 70px;
    }
    
    .navbar-container input[type="checkbox"]{
        display: block;
        position: absolute;
        height: 32px;
        width: 40px;
        top: 20px;
        left: 20px;
        z-index: 10;
        opacity: 0;
    }

    .navbar-container .hamburger-lines{
        display: block;
        height: 32px;
        width: 40px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 4;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line{
        display: block;
        height: 4px;
        width: 100%;
        border-radius:10px ;
        background: #333;
    }

} */






















































































