@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --primary-color : #D30023;
    --secondary-color: #EEA41D;
    --tertiary-color: #000000;
    --additional-color : #FFFFFF;
    --padding: 60px;
    --regular: 'Roboto', sans-serif;
    --font-color : #181818;
    --heading : 'Monoton', cursive;

}

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

html,body {
    overflow-x: hidden;
}


#topBtn{
    position: fixed;
    bottom: 40px;
    right: 28px;
    font-size: 16px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: none;
    border-radius: 100px;
    
  }

header { 
    padding: 10px 60px 5px 60px;
    background-color: var(--additional-color-color);
    font-family: var(--regular);
}

.hamburger {
    display: none;
}
.nav-logo img{ 
    width: 80px;
}

.container-fluid { 
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.nav-links { 
    display: flex;
    justify-content: space-between;
    width: auto;
    align-items: center;
    font-size: 16px;
    z-index: 999;
    column-gap: 30px;
}

.nav-links ul {
    display: flex;
    column-gap: 20px;
    margin-top: 15px;

}

.nav-button  a{ 
    background-color: var(--secondary-color);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: var(--additional-color);
    font-size: 14px;
   
}
.nav-button  a:hover {
    background-color: #eeb54c;
    color: var(--additional-color);
    border: none;
    transition: ease-in-out 0.4s;
}
.nav-links ul li {
    list-style: none;
    margin-right: 30px;
}


.nav-links li a{
text-decoration: none;    
color: var(--tertiary-color);

}
.nav-links li a:hover{
    color: var(--primary-color);
    transition: ease-in-out .5s;
}


/*Main Page CSS */
.main-page-con  {
    display: flex;
    background-image: linear-gradient(90deg,#EEA41D,#f7a713,#eeb54c);
    justify-content: space-between;
    padding-left: 60px;
}

.content {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-con {
    width: 55%;
    height: 89.3vh;
    background-image: url(../images/welcome.png);
    background-size: cover;
}

.image-con img{
    width: 100%;
    height: 100%;
}

.welcome{
    font-size: 150px;
    margin-bottom: 30px;
    color: var(--additional-color);
    font-weight: 800;
    font-family: var(--heading);
    /* -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 3px; */
}


.content p {
    margin-bottom: 30px;
    color: var(--font-color);
    text-align: justify;
    font-size: 22px;
    font-family: var(--regular);
}


.btn-welcome {
    padding: 20px 55px;
    border-radius: 30px;
    border: none;
    background-color: var(--primary-color);
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    color: var(--additional-color);
    margin-bottom: 30px;
    
}

.btn-welcome:hover {
    background-color: #ec092f;
    color: var(--additional-color);
    transition: ease-in-out 0.5s;
}

/*about us CSS*/

.about-us-con {
    display: flex;
    font-family: var(--regular);
    padding: var(--padding);
    justify-content: space-between;
}

.about-us-desc {
    width: 50%;
}

.heading {
    font-size: 60px;
    font-family: var(--heading);
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.sub-heading-con {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.subheading {
    color: var(--primary-color);
    font-size: 35px; 
    margin-right: 10px;
}

.content-p {
    color: var(--font-color);
    text-align: justify;
    font-size: 18px;
    margin-bottom: 30px;
    width: 80%;
}

.line {
    border: 3px solid var(--primary-color);
    height: 0;
    width: 70px;
}

.video-con {
    width: 50%;
    height: 600px;

}

.btn {
    padding: 18px 40px;
    background-image: linear-gradient(90deg, #BA1607,#CA0123, #FF3C28);
    border: none;
    /* border: 3px solid var(--primary-color); */
    border-radius: 28px;
    /* background-color: transparent; */
    color: var(--additional-color);
    cursor: pointer;
    font-size: 16px;
  
}

.btn:hover {
    background-image: linear-gradient(180deg, #BA1607,#CA0123, #FF3C28);
    color: var(--additional-color);
    transition: ease .7s;

}

/*Our Menu CSS*/

.menu-con {
    padding: var(--padding);
    background-color: var(--primary-color);
    font-family: var(--regular);
}
.menu-con .heading{
    text-align: center;
    color: var(--additional-color);

}


.menu-con .sub-heading-con {
   align-items: center;
   justify-content: center;
   margin-bottom: 30px;

}


.menu-con .subheading {
    color: var(--secondary-color);
}

.menu1-con {
    margin-bottom: 60px;
}

.menu1-con .heading {
    text-align: start;
    margin-bottom: 30px;
}
.foods {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 60px;
    row-gap: 30px;
}
.food{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--additional-color);
    border-radius: 18px;
    cursor: pointer;
    padding: 40px 0px;
}

.food h2 {
    font-size: 35px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.food .price {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}


.food:hover {
    background-color:#f1bd5a;
    color: var(--additional-color);
    transition: ease-in-out 0.4s;
}
.food img {
    width: 450px;
    margin-bottom: 30px;
}

.food-desc {
    padding: 10px 30px;
    text-align: center;
}

/*Testimonial CSS */

.testimonial-con {
    padding: var(--padding);
    font-family: var(--regular);
}


.testimonial-con .heading {
    text-align: center;
}

.testimonial-con .sub-heading-con {
    align-items: center;
    justify-content: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.testimonial {
    background-color: var(--additional-color);
    border-radius: 18px;
    padding: 30px;
    cursor: pointer;
    margin-top: 30px;
}

.testimonial:hover {
    background-color:#f1bd5a;
    transition: ease-in-out 0.5s;
    color: var(--additional-color);
}


.testimonial-image-des-con {
    display: flex;
    align-items: center;
}
.testimonial img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-right: 30px;
}

.quote-icon {
    display: flex;
    align-items: center;
}


.fa-quote-left {
    font-size: 110px;
    margin-right: 20px;
    color: #eeeeee;
}
.name {
    font-size: 22px;
    margin-bottom: 5px;
}

.comment {
    text-align: justify;
    width: 80%;
    margin-left: auto;
    margin-top: 20px;
}

/**Our Store CSS */

.our-store-con {
    width: 100%;
    padding: var(--padding);
    font-family: var(--regular);
    background-color: var(--secondary-color);
}

.our-store-con .heading {
    text-align: center;
    color: var(--additional-color);
    width: 100%;
}

.our-store-con .sub-heading-con {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-bottom: 50;
}

.store-details-con {
    display: flex;
    flex-direction: row;
}

.store-img {
    width: 50%;
    background-image: url("../images/our-store.jpg");
    background-size: cover;
    height: 800px;  
}

.store-map {
    width: 50%;
}
.store-map iframe{
    height: 100%;
    width: 100%;
}


/*email us CSS*/
.email-us-form-con {
    padding: var(--padding);
    font-family: var(--regular);
    display: flex;
    color: var(--font-color);
    justify-content: space-between;
  }
  
  .email-us-details-con {
    width: 40%;
    display: flex;
    flex-direction: column;
    row-gap: 30px;
  }
  
  .email-us-details-con .email-us-tagline {
    font-size: 64px;
    font-weight: 800;
    color: var(--secondary-color);
  }
  
  .email-us-details-con .email-us-content {
    font-size: 22px;
  }
  
  .email-us-form {
    width: 55%;
  
  }
  
  .email-us-form form{
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    font-family: var(--heading);
  }
  
  .email-us-form form #fname {
    width: auto;
    height: 90px;
    padding: 0 20px;
    border: 4px solid var(--secondary-color);
    border-radius: 18px;
    background-color: transparent;
    color: var(--font-color);
    font-size: 14px;
    font-weight: 800;
  }
  
  .email-us-form form #email {
    width: auto;
    height: 90px;
    padding: 0 20px;
    border: 4px solid var(--secondary-color);
    border-radius: 18px;
    background-color: transparent;
    color: var(--font-color);
    font-size: 14px;
    font-weight: 800;
  }
  
  .email-us-form form #message {
    width: auto;
    height: 300px;
    padding: 30px 20px;
    border: 4px solid var(--secondary-color);
    border-radius: 18px;
    background-color: transparent;
    color: var(--font-color);
    font-size: 16px;
    font-weight: 800;
  }
  
  #submit {
    background-color: var(--secondary-color);
    color: var(--additional-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--regular);
    font-weight: 600;
    padding: 25px 0;
    cursor: pointer;
  
  }
  
  #submit:hover {
    background-color:#eeb54c;
    transition: ease-in .5s;
  }

  /*Footer*/
footer {
    background-color: var(--secondary-color);
    display: flex;
    padding: 35px 60px;
    justify-content: space-between;
    align-items: center;
    font-family: var(--regular);
    align-items: center;
  }

  .footer-line {
    height: 140px;
    width: 5px;
    background-color: var(--additional-color);
    margin: 0px 150px;
  }

  .logo-con {
    width: 100%;
  }

  .icons {
    width: 100%;
  }
  .icon .fa-brands, .fa-location-dot, .fa-phone{
    color: var(--additional-color);
    font-size: 25px;
  }
  
  .icon .fa-brands:hover {
    color: var(--font-color);
    transition: ease 0.5s;
  }
  
  .icon .fa-solid:hover {
    color: var(--font-color);
    transition: ease 0.5s;
  }
  .icon a{
    margin-bottom: 20px;
    display: flex;
    column-gap: 20px;
    text-decoration: none;
    align-items: center;
    font-size: 16px;
    color: var(--additional-color);
  }
  
  .footer-logo {
    width: 350px;
    height: 190px;
  }
  
  .footer-logo img {
    height: 100%;
    width: 100%;
  }
  
