/* Page reset starts here */
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* @font-face {
    font-family: 'david-lato';
    src: url('./font/Lato-Bold.ttf')format('truetype'),
    url('./font/lato-regular-webfont.woff')format('woff'),
    url('./font/lato-regular-webfont.woff2')format('woff2');
} */

/* Page reset stops here */

/* Header section starts here  */

/* header {} */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'lato', sans-serif;
}

.nav-mobile {
    /* border: 3px solid black; */
    display: none;
}

.background-image {
    /* background-repeat: no-repeat; */
    position: fixed;
    z-index: -1;
    width: 100%;
}

.nav-desktop {
    background: var(--white-color);
    display: flex;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    justify-content: flex-end;
    border-radius: 10px;
}

.desktop-logo {
    position: absolute;
    left: 60px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    width: 60px;
    height: 60px;
    background: var(--main-color);
    font-size: 30px;
    color: var(--white-color);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.desktop-link-holder {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-link-holder ul {
    /* border: 3px solid var(--main-color); */
    display: flex;
    text-decoration: none;
}

.desktop-link-holder ul li {
    list-style: none;
    /* padding: 20px; */
}

.desktop-link-holder ul li a {
    text-decoration: none;
    color: var(--main-color-dark);
    padding: 15px 20px;
    display: block;
    border: 2px solid transparent;
}

.desktop-link-holder ul li a:hover {
    text-decoration: none;
    color: var(--main-color);
    padding: 15px 20px;
    display: block;
    border: 2px solid var(--main-color);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

button {
    background: var(--main-color);
    padding: 20px 40px;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn {
    width: max-content;
    background: var(--white-color);
    padding: 20px 40px;
    color: var(--main-color);
    border: 3px solid var(--main-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.btn-main {
    background: var(--main-color);
    color: var(--white-color);
    border: 2px solid transparent;
}

.btn-main:hover {
    color: var(--main-color);
    background: none;
    border: 2px solid var(--main-color);
}

.btn-white {
    color: var(--main-color-dark);
    background: var(--white-color);
    border: 2px solid transparent;
}

.btn-trans {
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-white:hover {
    color: var(--main-color);
    background: var(--white-color);
    border: 2px solid var(--main-color);
}

.header-banner-section {
    padding-top: 130px;
    padding-bottom: 30px;
    min-height: 450px;
    background: url('./img/banner.jpg');
    background-position: center right;
    background-size: cover;
}

.banner-content {
    width: 90%;
    height: 100%;
    margin: 0 auto;
}

.header-text-content {
    /* border: 3px solid; */
    width: 50%;

}

.header-icon {
    margin-left: 10px;
}

.header-text-content h1 {
    line-height: 1.1;
    color: var(--main-color-dark);
    font-size: 45px;
}

.header-text-content p {
    color: var(--text-color);
    margin: 20px 0;
    line-height: 1.5;
}

.header-text-content button {
    margin-right: 10px;
}

.header-counter-section {
    color: var(--white-color);
    display: flex;
    background: var(--main-color);
    justify-content: space-evenly;
    padding: 20px;
}

.counter {
    text-align: center;
    text-transform: uppercase;
    width: 150px;
}

.counter h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.counter p {
    text-transform: uppercase;
}

/* Header section stops here  */

/* second section starts here  */
.aboutus-section {

    width: 90%;
    margin: 0 auto;
}

.aboutus-container {
    padding: 20px 0;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aboutus-image-holder {
    width: 48%;
    min-width: 350px;
    height: 350px;
    overflow: hidden;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}

.aboutus-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutus-text-holder {
    width: 48%;
    min-height: 350px;
}

.aboutus-text-holder h2 {
    color: var(--main-color);
    font-size: 28px;
    font-weight: 600;
    border-left: 3px solid var(--main-color);
    border-right: 3px solid var(--main-color);
    padding: 20px;
    background: var(--light-grey-color);
}

.aboutus-text-holder p {
    font-size: 16px;
    margin: 20px 0;
}

.aboutus-text-holder ul {
    list-style: none;
    margin-bottom: 20px;
}

.aboutus-text-holder li i {
    margin-right: 10px;
    color: var(--main-color);
}

.aboutus-banner-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background: var(--gradient-50),
    url('./img/about3.jpg');
    background-position: bottom right;
    background-size: cover;
    padding: 30px 20px;
}

.aboutus-banner-section h2 {
    color: var(--main-color);
    margin: 20px 0;
}
.play-button {
    margin-top: 20px;
    border: 2px solid var(--white-color);
    background: var(--main-color);
    color: var(--white-color);
    padding: 15px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    animation: ripple 2s infinite;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-animation: ripple 2s infinite;
}

/* .play-button i {
    font-size: px;
} */
/* second section stops here  */

/* explore foods section starts here  */

.explore-foods {
    /* height: 450px; */
    width: 90%;
    margin: 30px auto;
    border-bottom: 100px solid var(--main-color);
    /* text-align: center; */
}
.explore-foods-container {
    /* height: 350px; */
    width: 100%;
    /* border: 3px solid; */
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    text-align: left;
}

.explore-foods-card {
    background: rgba(195, 226, 236, 0.1);
    border-radius: 25px;
    display: inline;
    width: 30%;
    min-width: 300px;
    padding: 10px 10px;
    margin-bottom: 20px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -ms-border-radius: 25px;
    -o-border-radius: 25px;
}
.explore-foods h2 {
    text-align: center;
    color: var(--main-color);
}

.explore-foods-p {
    font-size: 16px;
    text-align: center;
    padding: 0 20px;
    margin: 15px;
}

.explore-foods-card-text-holder {
    text-align: left;
}

.explore-foods-card-image-holder {
    height: 250px;
    width: 100%;
}

.explore-foods-card-image-holder img {
    object-fit: cover;
    border-radius: 25px 25px 0 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 25px 25px 0 0;
    -moz-border-radius: 25px 25px 0 0;
    -ms-border-radius: 25px 25px 0 0;
    -o-border-radius: 25px 25px 0 0;
}

.food-card-title {
    display: block;
    font-weight: bold;
}

.food-card-time {
    display: block;
    margin: 20px 0;
}

.food-card-price {
    margin: 10px 0;
    border-bottom: 0.7px solid var(--light-grey-color);
    padding-bottom: 5px;

}
.food-card-price span {
    text-decoration: line-through;
    color: var(--light-grey-color);
}

.faq {
    width: 90%;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-items-title {
    margin: 10px 0;
    display: block;
    color: var(--main-color-dark);
    font-weight: bolder;
    font-size: 20px;
}

.faq-items-title i {
    margin-right: 20px;
    color: var(--main-color);
}
.faq-container {
    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faq-items {
    padding: 20px 0;
    width: 48%;
}
/* explore foods section stops here */


/* cta section starts here  */
.cta-section {
    width: 90%;
    margin: 0 auto;
}

.cta-showcase {
    height: 200px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: var(--gradient-50), url('./img/cta.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.cta-showcase h2 {
    color: var(--white-color);
}


/* cta-notice section starts here  */
.cta-notice {
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-notice-heading {
    width: 600px;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.cta-notice-text {
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-notice-input {
    display: flex;
    /* align-items: center;  */
    justify-content: center;
    /* position: relative; */
}

.cta-notice-input input {
    /* padding: 15px 0; */
    padding-left: 5px;
    width: 300px;
    outline: none;
    border: 2px solid var(--main-color-dark);
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.cta-notice-input input:hover {
    width: 400px;
    border: 2px solid var(--main-color);
}

.cta-notice-button {
    margin: 0;
    height: 100%;
    /* position: absolute; */
    /* right: 0; */
    background: var(--main-color);
    padding: 15px;
    color: var(--white-color);
    border: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

/* cta-notice section stops here  */

/* cta section starts here  */

/* footer section starts here */

footer {
    padding: 0 30px;
    width: 100%;
    min-width: 100%;
    background: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: var(--white-color);
    padding: 20px 0;
}

footer .copyright-text {
    padding-inline: 10px;
}
.footer-icons ul {
    padding: 30px 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.footer-icons li {
    display: flex;
    align-items: center;
    border: 2px solid var(--white-color);
    padding: 10px;
    margin: 0 10px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.footer-icons a {
    text-decoration: none;
    color: var(--white-color);
}
/* footer section starts here */

/* Preventive measures */

footer, header,
.nav-desktop,
main {
    max-width: 1500px;
    margin: 0 auto;
}