@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&family=Poppins:wght@200;300;400;500;600;700&display=swap');

*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Poppins', sans-serif;
    box-sizing: content-box;
}

/* ***************Navbar Styling *************** */

.navbar-container input[type='checkbox'],
.navbar-container .hamburger-lines {
    display: none;
}

.navbar {
    box-shadow: 0px 5px 10px 0px #aaa;
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 999;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 3rem;
    padding-left: 2rem;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-size: 1.8rem;
}

.navbar a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease-in-out;
    padding-right: 2rem;
}

.navbar a:hover {
    color: blue;
}

/* *************** Showcase Styling *************** */

.showcase-area {
    height: 85vh;
    background: url("./images/banner_4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding-top: 420px;
    height: 100%;
    font-size: 1.6rem;
}

.main-title {
    text-transform: uppercase;
}

/* *************** About Us Styling *************** */

#about {
    padding: 50px 0px;
    background: #f5f5f7;
}

.about-wrapper {
    display: flex;
    flex-wrap: wrap;
}

#about h2 {
    font-size: 3.2rem;
}

#about p {
    font-size: 1.6rem;
    color: #555;
}

#about .small {
    font-size: 1.6rem;
    color: #666;
    font-weight: 600;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* Blue background color */
    color: #fff; /* White text color */
    text-decoration: none; /* Remove underline */
    border: none; /* Remove border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Cursor on hover */
    transition: background-color 0.3s ease; /* Smooth color transition */
  }

.about-img {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 400px;
    padding: 30px;
    transform: translateX(150%);
    animation: about-img-animation 1s ease-in-out forwards;
}

@keyframes about-img-animation {
    100% {
        transform: translateX(0);
    }
}

.about-text {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 400px;
    padding: 30px;
    margin: auto;
    transform: translate(-150%);
    animation: about-text-imagination 1s ease-in-out forwards;
}

@keyframes about-text-imagination {
    100% {
        transform: translate(0);
    }
}

.about-img img {
    display: block;
    height: 400px;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: right;
}

/* *************** Food Category Styling *************** */
/* 
#food {
    padding: 5rem 0 10rem 0;
}

#food h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #555;
}

.food-container {
    display: flex;
    flex-wrap: wrap;
    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;
    position: relative;
}

.img-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
    text-align: center;
    transition: all 0.3s ease-in-out 0.1s;
}

.img-content h3 {
    color: #fff;
    font-size: 3rem;
}

.img-content a {
    font-size: 1.2rem;
}

.img-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.871);
    z-index: 1;
    transform: scaleY(0);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in-out;
}

.img-container:hover::after {
    opacity: 1;
    transform: scaleY(1);
}

.img-container:hover .img-content {
    opacity: 1;
    top: 40%;
} */

/* *************** Food Styling *************** */

.food-menu-heading {
    font-size: 40px;
    text-align: center;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    font-weight: 400;
    color: #666;
}

.food-menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 0 30px 0;
}

.food-menu-container img {
    display: block;
    display: flex;
    height: 250px;
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.food-menu-item {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 600px;
    justify-content: space-evenly;
    margin-bottom: 30px;
}

.food-description {
    margin: auto 15px;
}

.food-title {
    font-size: 14px;
    font-weight: 400;
    color: #444;
}

.food-description p {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.food-description .food-price {
    color: #117964;
    font-weight: 700;
}

/* *************** Testimonial Styling *************** */

#testimonials{
    padding: 50px 0;
    background: rgb(243, 243, 243);
}
.testimonial-title{
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #555;

}
.testimonial-container{
    display: flex;
    justify-content: space-between;
    font: size 16px;
    padding: 10px;

}
.testimonial-box .checked{
    color: #ff9529;
}
.testimonial-box .testimonial-text{
    margin: 10px 0;
    color: #444;
}
.testimonial-box{
    text-align: center;
    padding: 10px;

}
.customer-photo img{
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin: auto;

}
.testimonial-text{
    font-size: 2rem;
}
.customer-name{

    font-size: 2rem;
}

/* *************** Contact Us Styling *************** */

#contact {
    padding: 50px 0;
    background: rgb(226, 226, 226);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
}

.contact-image {
    width: 50%;
}

.contact-image img {
    display: block;
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.form-container {
    padding: 10px;
    width: 50%;
    margin: auto;
}

.form-container input,
.form-container textarea {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 10px 0;
    box-shadow: none;
    outline: none;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
}

.form-container textarea {
    min-height: 200px;
}

.form-container a {
    font-size: 12px;
}

/* *************** Footer Styling *************** */

#footer h2 {
    text-align: center;
    background: rgb(65, 65, 65);
    font-size: 20px;
    font-weight: 500;
    padding: 30px;
    color: #fff;
}

/* *************** Media Queries *************** */

@media(max-width:768px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type='checkbox'],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type='checkbox'] {
        position: absolute;
        display: block;
        height: 32px;
        width: 40px;
        top: 20px;
        left: 20px;
        z-index: 5;
        opacity: 0;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 32px;
        width: 40px;
        position: absolute;
        top: 20px;
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 4px;
        width: 100%;
        border-radius: 10px;
        background: #333333;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.4s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.4s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #fff;
        height: 100vh;
        max-width: 300px;
        transform: translateX(-300px);
        display: flex;
        flex-direction: column;
        margin-left: -40px;
        padding-left: 50px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0px 10px #aaa;
    }

    .navbar .menu-items li {
        margin-bottom: 30px;
        font-size: 20px;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .navbar-container input[type='checkbox']:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type='checkbox']:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

    /* Food Category */
    .food-container {
        flex-direction: column;
        align-items: stretch;
    }

    .food-type:not(:last-child) {
        margin-bottom: 30px;
    }

    .food-type {
        box-shadow: 5px 5px 10px 0px #aaa;
    }

    .img-container {
        margin: 0;
    }
    .testimonial-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font: size 16px;
        padding: 10px;
    
    }
    .img-content a {
        font-size: 1.5rem;
        display: flex;
        flex-direction: column;
    }
    .food-menu-item {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        flex-shrink: 1;
        flex-basis: 600px;
        justify-content: space-evenly;
        margin-bottom: 30px;
    }
    .food-menu-container img {
        /* display: block; */
        display: flex;
        align-items: center;
        justify-content: center;
        height: 200px;
        width: 200px;
        border-radius: 50%;
        object-fit: cover;
        object-position: center;
    }
    .food-menu-container {
        display: flex;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        padding: 50px 0 30px 0;
    }
    
    .food-menu-heading {
        font-size: 40px;
        justify-content: center;
        text-align: center;
        display: flex;
        font-weight: 400;
        color: #666;
    }
    .food-image{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .food-title {
        font-size: 12px;
        font-weight: 400;
        color: #444;
    }
    
    .food-description p {
        font-size: 12px;
        color: #555;
        font-weight: 500;
    }
}
/* Define animation for the about-img and about-text */
@keyframes about-img-animation {
    0% {
        transform: translateX(150%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes about-text-imagination {
    0% {
        transform: translate(-150%);
    }
    100% {
        transform: translate(0);
    }
}

/* Apply animations to the about-img and about-text */
.about-img {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 400px;
    padding: 30px;
    transform: translateX(150%);
    animation: about-img-animation 1s ease-in-out forwards;
}

.about-text {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 400px;
    padding: 30px;
    margin: auto;
    transform: translate(-150%);
    animation: about-text-imagination 1s ease-in-out forwards;
}

/* Define animation for the food-menu-item */
@keyframes food-menu-item-animation {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



