@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Ubuntu:wght@500&display=swap');


@font-face {
    font-family: ubuntu;
    src: url('fonts/Ubuntu-Medium.ttf');
}

@font-face {
    font-family: roboto;
    src: url('fonts/Roboto-Medium.ttf');
}

@font-face {
    font-family: poppins;
    src: url('fonts/Poppins-SemiBold.ttf');
}

* {
    margin: 0;
    padding: 0;
}
img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
body {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

:root {
    --navbar-color: #556b2f;
    --extra-color: #994b13;
    --bg-color: #fffbf6;
}
.darkmodebtn {
    border: none;
    font-size: 30px;
    background-color: #fffbf6c5;
    cursor: pointer;
    background: transparent;
    margin-right: 24px;
}

body {
    background-color: var(--bg-color);
    transition: 1s ease-in-out;
}

.navbar {
    z-index: 100;
    border-bottom: 1px solid black;
    position: fixed;
    width: 100%;
    background-color: #fffbf6c5;
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 200px;
    object-fit: cover;
}

.navitems {
    display: flex;
}

.navitems li {
    list-style: none;
    margin: 8px 12px;
}

.navitems li a {
    font-size: 20px;
    padding: 8px 12px;
    text-decoration: none;
    color: black;
    font-family: 'Ubuntu', sans-serif;
}

.navitems a:hover {
    background-color: #bf5b14;
}

.cta {
    background-color: var(--extra-color);
    border: none;
    color: #fff;
    padding: 12px 12px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.cta:hover {
    background-color: #bf5b14;

}

#sec1 {
    display: flex;
}

.txt1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0.5;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}

.txt1 p:nth-child(1) {
    font-size: 2.2rem;
    text-align: center;
}

.txt1 p:nth-child(2) {
    font-size: 1.4rem;
    text-align: center;
}

.img2 {
    flex: 0.5;
}
.img2 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.wc {
    color: orange;
}

#blink {
    color: orange;
    animation: blink 0.8s infinite linear;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.button {
    background-color: var(--extra-color);
    border: none;
    color: #fff;
    border-radius: 10000px;
    margin: 8px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
}

.cta2:hover {
    background-color: #bf5b14;
    letter-spacing: .7px;
    transition: 0.5s;
}

.cta3:hover {
    transition: 0.5s;
    background-color: #bf5b14;
    letter-spacing: 1px;
}

.sec2header {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Ubuntu', sans-serif;
}

.breakfast {
    font-size: 2.1rem;
    margin-top: 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.blink2 {
    font-size: 1.6rem;
    animation: blink2 3s infinite linear;
    text-align: center;
}

@keyframes blink2 {
    50% {
        opacity: 0;
    }
}

#fooditems {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    grid-gap: 1.5rem;
    margin-bottom: 40px;
}

.fooditems img {
    object-fit: cover;
    height: auto;
    width: 100%;
    border-radius: 15px;
    transition: transform .4s ease-in;
}

#sec3 h1:nth-child(1) {
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.aboutus {
    display: flex;
    margin-top: 26px;
}

.abt1 {
    flex: 0.5;
    /* margin-top: 60px; */
}

.abt1 img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.abt2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 0.5;
    font-family: sans-serif;
}

.abt2 h1 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
}

.abt2 span {
    color: orange;
}

.abt2h1 {
    font-family: 'Poppins', sans-serif;
}

.textright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.textright p {
    color: orange;
    font-weight: bold;
}

.review {
    margin-bottom: 20px;
}

.review i {
    color: var(--extra-color);
}

.fooditems img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.abt2 p {
    font-size: 1.4rem;
    text-align: center;
}

#abt2 {
    font-family: 'Poppins', sans-serif;
}

#socials {
    margin-top: 25px;
}

.socialheader {
    font-size: 2.5rem;
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
}

.app {
    display: flex;
    justify-content: space-evenly;
    margin-top: 60px;
}

.playstore {
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background-color: #000000;
    color: white;
    font-size: 18px;
    box-shadow: 5px 10px #888888;
    font-family: 'Poppins', sans-serif;
}

.playstore img {
    height: 40px;
    width: 40px;
}

.appstore {
    box-shadow: 5px 10px #888888;
    padding: 16px;
    background-color: #000000;
    font-size: large;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.appstore img {
    height: 45px;
    width: 40px;
    filter: invert(100%);
}

.appstore:hover,
.playstore:hover {
    cursor: pointer;
    transition: 0.5s ease-out;
    background-color: #171616;
}
.othersocials {
    margin-top: 40px;
    display: flex;
    justify-content: space-evenly;
}
.facebook i, .twitter i, .instagram i {
font-size: 80px;
}
.facebook{
    color: white;
    background-color: #3b5998;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    padding: 12px;
}
.twitter {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    color: white;
    background-color: #00acee;
    padding: 12px;
}
.instagram {
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1000px;
    background-color: #fa7e1e;
    color: white;
}


/* footer design  */

.footer {
    background-color: #000000;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
}
.footercol {
    padding-top: 22px;
    margin-top: 22px;
    width: 25%;
    color: white;
}
.footercol h4 {
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
}

.footercol ul li {
    list-style: none;
    padding: 2px;
}
.footercol ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
.footercol ul li a:hover {
    color: blue;
}
.facebook2, .twitter2, .instagram2{
    color: white;
    font-size: 25px;
    padding-top: 8px;
}

/* CSS for dark mode */
.darkmode {
    background-color: #070a13;
    color: white;
    transition: 1s ease-in-out;
}


/* Responsive design  */

@media (min-width: 1440px) and (max-width:5000px){
    .img2 {
        margin-top: 50px;
    } 
    .txt1 {
        margin-top: 40px;
    }
    .playstore img, .appstore img {
        height: 80px;
        width: 80px;
    }

    .facebook i, .twitter i, .instagram i {
    font-size: 120px;
    }

    .socialheader {
        font-size: 3.6rem;
    }
    #fooditems {
        display: flex;
    }
    #abt2 {
        font-size: 4rem;
    }
    .abt2 p {
        font-size: 2.3rem;
    }
    .navitems li a {
        font-size: 1.9rem;
    }
    .darkmodebtn {
        font-size: 1.9rem;
    }
    .txt1 p:nth-child(1){
        font-size: 4rem;
    }
    .txt1 p:nth-child(2){
        font-size: 2.4rem;
    }
    .logo img {
        width: 350px;
    }
    .sec2header {
        font-size: 3.6rem;
    }
    #sec3header {
         font-size: 3.6rem;
    }
    .playstore, .appstore {
        font-size: 2rem;
    }
}


@media (min-width: 800px) and (max-width:1024px){
    .navitems li a {
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }
    .darkmodebtn {
        font-size: 1rem;
    }
    .navbar li {
        margin: 6px 8px;
    }
    .navbar {
        position: unset;
    }
    .img2 {
        margin-top: 60px;
    }
    .txt1 {
        margin-top: 60px;
    }
}


@media (min-width:530px) and (max-width: 800px) {
    #abt2 {
        font-size: 2rem;

    }
    .abt1 p{
        font-size: 1.5rem;
    }
    .navitems li a {
        font-size: 0.8rem;
    }
    .darkmodebtn {
        font-size: .8rem;
    }
    .txt1 p:nth-child(1) {
        font: 2.5rem;
    }
    .txt1 p:nth-child(2) {
        font: 1.5rem;
    }
    .navbar {
        position: unset;
    }
    .navitems li {
        margin: 2px 4px;
    }
    .logo img {
        width: 150px;
    }
    .button {
        margin: 3px;
        padding: 6px 8px;
        font-size: 12px;
    }
    #fooditems {
        grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    }
    .sec2header{
        font-size: 2rem;
    }
    #sec3header {
        font-size: 2rem;
    }
    .breakfast {
        font-size: 1.5rem;
    }
    .blink2 {
        font-size: 1.5rem;
    }
    .playstore, .appstore {
        padding: 6px 8px;
        font-size: 1rem;
    }
    .playstore img, .appstore img {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 300px) and (max-width: 530px){
    .txt1 {
        flex: none;
    }
    .img2 {
        flex: none;
    }
    #sec1 {
        flex-direction: column;
        margin-top: 80px;
    }
    .img2 img {
        height: 300px;
        width: 300px;
        display: block;
        margin: auto;
    }
    .txt1 p:nth-child(1) {
        font-size: 28px;
    }
    .txt1 p:nth-child(2) {
        font-size: 18px;
    }
    .review {
        display: none;
    }
    #fooditems {
        display: flex;
        flex-direction: column;
    }
    .fooditems {
        width: 100%;
    }
    .fooditems img {
        display: block;
        margin: auto;
        height: 150px;
        width: 150px;
    }
    .textright {
        display: flex;
        justify-content: center;
    }
    #textright h1 {
        font-size: 1rem;
        margin-right: 10px;
    }
    .logo img {
        width: 70px;
    }
    .navbar {
        position: sticky;
        top: 0;
    }
    .navbar li {
        padding: 1px;
        margin: 5px;
    }
    .navitems li a {
        font-size: 0.8rem;
        padding: 0;
    }
    .darkmodebtn {
        font-size: 0.8rem;
        margin-right: 8px;
    }
    .button {
        margin: 5px;
        padding: 6px 6px;
        font-size: 12px;
    }
    .sec2header {
        font-size: 18px;
    }
    .socialheader {
        font-size: 18px;
    }
    #sec3header {
        font-size: 18px;
    }
    .breakfast {
        font-size: 1rem;
    }
    .blink2 {
        font-size: 0.9rem;
    }
    .textright h1 {
        font-size: 1.5rem;
    }
    .textright p {
        font-size: 1rem;
    }
    .playstore, .appstore {
        padding: 2px 3px;
        font-size: 8px;
    }
    .playstore img, .appstore img {
        width: 15px;
        height: 15px;
    }
    .othersocials {
        display: none;
    }
    .footercol h4 {
        font-size: 12px;
    }
    .footercol ul li a {
        font-size: 8px;
    }
    .footer {
        width: 100%;
    }
    #abt2 {
        font-size: 15px;
    }
    .abt2 p{
        font-size: 10px;
    }
}