@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

body{
    font-family: "Poppins", sans-serif;
    font-style: normal;
}

.cus-primary-btn{
    border-radius: 30px;
    color: white !important;
    font-size: 20px;
    font-weight: 600;
    padding: 13px 45px;
    line-height: normal;
    border: 0 none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #00A652;
    position: relative;
    z-index: 5;
    -webkit-transition: 0.25s ease-in;
    transition: 0.25s ease-in;
    cursor: pointer;
}

.cus-primary-btn:hover{
    background-color: #e7272d;
}

h2{
    font-family: 'Playfair Display' !important;
}

.order-btn {
  background: linear-gradient(145deg, #F7C039, #f5b200);
  color: #642266;
  border: 2px solid #642266;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(100, 34, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.order-btn span{
  color: #642266;
}

.order-btn.order-btn-2 span{
  color: #f5b200;
}

.order-btn.order-btn-2 {
  background: linear-gradient(145deg, #642266, #642266);
  color: #f5b200;
  border: 2px solid #f5b200 !important;
}

.order-btn-2 {
  background-color: #642266;
}

.header-top{
    padding: 15px 0;
    background-color: #00A652; 
}

.addresses{
    display: flex;
    gap: 30px;
    font-size: 1rem;
}

.addresses .address-single,.addresses .address-single a{
    display: flex;
    color: #fff;
    align-items: center;
    gap: 10px;
    font-family: "Poppins" !important;
}

.addresses .address-single p{
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
}

.navbar {
  /* position: fixed; */
  top: 0;
  width: 100%;
  background-size: contain;
  background-color: #fff;
  z-index: 99;
}

#myHeader {
  position: fixed;
  top: 48px;
  width: 100%;
  transition: top 0.3s;
  padding: 0;
  z-index: 999;
}

.nav-link {
  /* color: #fff !important; */
  color: #000 !important;
  font-size: 17px;
  font-weight: bold;
}

.nav-link:hover {
  color: #e7272d !important;
}

.navbar-expand-lg .navbar-nav {
  gap: 20px;
}



/* Banner Css */

.banner {
  /* padding: 200px 0 0; */
  margin-top: 83px;
  position: relative;
}

.banner-wrap {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.banner-heading {
  position: relative;
  z-index: 9;
}

.banner-heading h2{
    color: #fff;
    font-size: 2.441em;
}


.slick-dots {
  position: absolute;
  /* top: 50%; */
  list-style-type: none;
  display: flex;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%,-50%);
  /* flex-direction: column; */
  gap: 10px;
  padding: 0;
}

.slick-dots li {
  height: auto;
}

.slick-dots li button {
  padding: 0;
  width: 15px;
  height: 15px;
  background-color: grey;
  font-size: 0;
  line-height: 0;
  border: none;
  border-radius: 50%;
}

.slick-dots li.slick-active button {
  background-color: crimson;
}

/* About us Css */

.about-us {
  position: relative;
  overflow: hidden;
  background-color: #efefef;
}

.about-us-box {
  position: relative;
  max-width: 403px;
  margin-left: auto;
}

.about-us h2{
    color: black;
    font-size: 60px;
    font-weight: bold;
}

.about-us p{
    font-size: 15px;
    color: #4b4b4b;
    line-height: 1.875em;
    margin-bottom: 0;
}

.about-us-box img {
  width: 100%;
}

.rotate-shape {
  animation: rotate 8s linear infinite;
  width: 100%;
  position: absolute;
  z-index: -1;
}


.gallery {
  padding: 100px 0;
  /* background-color: #F7C039; */
  background-image: url('../img/bg-primary.jpg');
  position: relative;
}

.gallery h2{
    font-size: 40px;
    color: #3d4348;
    font-family: 'Playfair Display' !important;
    text-align: center;
}

.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 15px;
  max-width: 1170px;
  margin: 0 auto;
}

.gallery-wrap img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery-wrap img:hover {
  /* transform: scale(1.05); */
  transform: scale(1.2) rotate(3deg);
}

/* Slider Modal */
.slider-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.slider-content {
  position: relative;
  max-width: 70%;
  /* max-height: 70%; */
}

.slider-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn,
.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00A652;
  border: none;
  padding: 5px;
  font-size: 18px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  color: #fff;
  z-index: 999999;
}

.close-btn {
  top: 20px;
  right: 20px;
  transform: none;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}


.testimonial{
    padding: 75px 0;
}

.testimonial .title-area{
    color: #d33;
    margin-bottom: 60px;
}

.testimonial .title-area i{
    font-size: 26px;
    margin-bottom: 15px;
}

.testimonial .title-area .section-title{
    text-transform: uppercase;
    color: inherit;
    font-family: inherit !important;
    font-size: 32px;
    font-weight: normal;
}

.testimonial .title-area .section-title span{
    font-weight: bold;
}


.testimonial .testimonial-slider h3{
    display: inline-block;
    font-weight: bold;
    text-transform: capitalize;
    font-family: inherit !important;
    line-height: 24px;
    margin: 15px 0 10px;
    font-size: 1.00em;
    color: #484848;
}

.testimonial .testimonial-slider .slider-box-wrap .box::before{
    content: "";
    border-top: 45px solid transparent;
    border-left: 45px solid #f8f8f8;
    position: absolute;
    left: 55px;
    z-index: -1;
    top: -45px;
}
.testimonial .testimonial-slider .box{
    border: 10px solid #f8f8f8;
    padding: 30px;
    margin: 30px 15px 0;
    position: relative;
}

.testimonial .testimonial-slider .box p{
    margin-bottom: 15px;
    font-size: 15px;
    color: #777;
    line-height: 1.95em;
}

.testimonial .testimonial-slider .box .rating{
    color: #F7B614;
}
.testimonial .testimonial-slider .slick-dots{
    bottom: -80px;
}
.testimonial .testimonial-slider .slick-dots li button{
    width: 25px;
    height: 5px;
    border-radius: 0;
}

.our-menu{
    padding: 75px 0;
}

.our-menu h4{
    font-size: 20px;
    color: #7f7f7f;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.our-menu h3{
    color: #484848;
    font-size: 75px;
    font-weight: bold;
    line-height: 84px;
    margin: 0 0 15px;
}

.our-menu .nav{
    border-bottom: 1px solid #dedede;
}

.our-menu .nav .nav-link{
    position: relative;
    padding-left: 0;
    padding: 10px 25px;
    padding-left: 0;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.our-menu .nav .nav-link.active{
    color: #d33 !important;
    background-color: transparent !important;
}

.our-menu .nav .nav-link.active::before{
    background-color: #d33;
}

.our-menu .nav .nav-link::before{
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50px;
    background: #c2c2c2;
    margin-right: 8px;
}

.our-menu .nav .nav-link:hover::before{
    background-color: #d33;
}

.our-menu .box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.our-menu .box img{
    border-radius: 5px;
}

.our-menu .box > div{
    gap: 30px;
}

.our-menu .box .box-detail h5{
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 20px;
    margin-top: 0;
    color: #e7272d;
    letter-spacing: 0.015em;
}

.our-menu .box .box-detail p{
    color: #4b4b4b;
    margin-bottom: 0;    
}

.our-menu .box .price{
    border: 1px solid #dedede;
    border-radius: 50px;
    height: 70px;
    text-align: center;
    width: 70px;
    font-size: 15px;
    font-weight: bold;
    color: #3d3d3d;
    line-height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.our-menu h2{
    font-size: 125px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    color: #00A652;
}

.our-menu h2 span:first-child{
    display: block;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    margin-bottom: -25px;
    color: #616161;
}

.our-menu h2 span:last-child{
    font-size: 160px;
    font-family: "Poppins", sans-serif;
    color: #494949;
}

.food-love{
    position: relative;
}

.food-love::before{
    position: absolute;
    content: "";
    left: -85px;
    top: 0;
    width: 132px;
    height: 575px;
    background-image: url("../img/about-special-menu-bg.png");
}


.special-food-time{
    background-repeat: repeat;
    background-position: center center;
    padding: 60px 0 60px;
}

.special-food-time .icon-area {
    /* margin-bottom: 30px; */
    display: flex;
    align-items: center;
}

.icon-area .icon {
    text-align: center;
    width: 60px;
    height: 60px;
    border: 1px solid #ebebeb;
    display: inline-block;
    line-height: 72px;
    border-radius: 50px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-area .icon-text {
    display: inline-block;
}

.icon-area .icon-text h3 {
    margin-top: 0;
    margin-bottom: 0px;
    color: white;
    font-weight: bold;
    font-size: 1.00em;
}

.icon-area .icon-text p {
    color: #999;
    margin-bottom: 0;
}

.tea-cup, .lunch, .burger, .delivery-service, .bottol, .staff{
    fill: #00A652;
    fill-rule: evenodd;
}

.footer {
  background-color: #00A652;
}

.footer h4 {
  color: #fff;
}


.footer p,
.footer ul li {
  color: #fff;
  margin-bottom: 10px;
}

a {
  text-decoration: none;
}


.fixed-box{
    left: 0px;
    top: 200px;
    border-radius: 2px;
    background: rgb(0, 166, 82);
    width: 163px;
    position: fixed;
    z-index: 9;
}

.fixed-box div{
    padding: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.fixed-box p{
    margin-bottom: 0;
    font-family: 'Poppins' !important;
    font-size: 15px;
    line-height: 1.45em;
    color: #fff;
}

.fixed-box p a{
    color: #fff !important;
    font-weight: 700;
}




@media (max-width: 991px){
    .our-menu h2{
        font-size: 85px;
    }
    .our-menu h2 span:last-child{
        font-size: 100px;
    }
    .addresses{
        display: none;
    }
}


@media (max-width: 767px){

    .our-menu h3{
        font-size: 45px;
    }
    .our-menu .box .box-detail h5{
        font-size: 20px;
    }
    .about-us-box{
        max-width: 100%;
    }
    
    .about-us-box{
        margin-top: 40px;
    }

    .our-menu .col-lg-7{
        padding-right: 12px !important;
    }

    .gallery-wrap{
        grid-template-columns: 1fr 1fr;
    }

    .gallery{
        margin: 0 !important;
    }
    
}

@media (max-width: 575px){
    .banner-heading h2{
        text-align: center;
    }
    .our-menu h2{
        font-size: 45px;
    }
    .our-menu h2 span:first-child{
        margin-bottom: 0;
        font-size: 25px;
    }
    .our-menu h2 span:last-child{
        font-size: 60px;
    }
    .our-menu .box .box-detail p{
        max-width: 320px;
    }

    .our-menu .box{
        flex-direction: column;
        /* align-items: flex-end; */
    }
    .navbar-brand img{
        width: 160px;
    }
}


@media (max-width: 375px){
    .our-menu .box{
        align-items: flex-end;
    }
}