@import url('https://fonts.googleapis.com/css2?family=Italianno&display=swap');


:root {
    --logo: #F2DA84;
    --peru: #7A1618;
    --black: #000;
    --white: #ffff;
    --light-black: #000;
    --light-white: #ccc;
    --light-bg: #f5f5f5;
    --border: .1rem solid #aaa;
    --dark-bg: rgba(0,0,0,.3);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,0.1);
    --basic-color: #7A1618;
    --color-bg: #c4c4c4;
}



* {
    font-family: 'Italianno', cursive;
    color: var(--basic-color);
    /* background-color: var(--color-bg); */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(.43, 1.1, .62, 1.08);
    text-transform: capitalize;
}


* > img {
    user-select: none;
    pointer-events: none;
}

html {
    font-size: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

html::-webkit-scrollbar{
    width: 1rem;
}
 
html::-webkit-scrollbar-track {
    background-color: var(--white);
}

html::-webkit-slider-thumb{
    background-color: var(--peru);
}


/* for the loader  */
#preloader {
    background: #ffff url(images/loader.gif) no-repeat center;
    height: 100%;
    width: 100%;
    background-size: 6%;
    position: absolute;
    z-index: 2000;
    justify-content: center;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    pointer-events: none;

}

.disappear {
    animation: vanish 8s forwards;
}

@keyframes vanish {
    100% {
        display: none;
        opacity: 0;
    }
}





/* for the scroller  */
.scrollTop {
    position: fixed;
    bottom: 800px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--peru) url(images/up.png);
    border-radius: 50%;
    background-size: 40px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s;
}
  
.scrollTop.active {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
}

.scrollTop:hover {
    width: 68px;
    height: 68px;
}



/* for the cta button  */
.cta {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 60px;
    height: 60px;
    background: var(--peru) url(images/call.png);
    border-radius: 50%;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    background-image: 50%;
    visibility: visible;
    transition: .7s;
}
.cta:hover {
    width: 68px;
    height: 68px;
}
  

  
  
@media (max-width: 780px) {
    .scrollTop {
      position: fixed;
      bottom: 500px;
      right: 30px;
      width: 48px;
      height: 48px;
      background: var(--peru) url(images/up.png);
      border-radius: 50%;
      background-size: 20px;
      background-position: center;
      background-repeat: no-repeat;
      cursor: pointer;
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transition: 0.7s;
    }
    
    .scrollTop.active {
      bottom: 20px;
      visibility: visible;
      opacity: 1;
    }
}


.card {
    opacity: 0;
    transform: translateY(100px);
    transition: all 2.0s ease-in-out;
  
}

  

section {
    padding: 5rem 10%;
}

.heading {
    text-align: center;
    margin-bottom: 3rem;
}

.heading span {
    font-size: 2.5rem;
    color: var(--peru);
}

.heading h3 {
    font-size: 4.5rem;
    color: var(--peru);
    font-weight: 100;
}

.btn {
    margin-top: 8rem;
    display: inline-block;
    background: var(--peru);
    color: var(--white);
    font-size: 4rem;
    cursor: pointer;
    padding: 1rem 3rem;
    border-radius: 50%;
}

.btn:hover{
    letter-spacing: .5rem;
}


.header {
    padding-top: 0rem;
    padding-bottom: 0rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
}


.header .logo {
    color: var(--logo);
    font-size: 6.0rem;
    font-weight:100;
}


.header .navbar a {
    font-size: 1.5rem;
    margin-left: 2rem;
    color: var(--black);
}

.header .navbar a:hover {
    color: var(--peru);
}


#menu-btn {
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--black);
    display: none;
}

@keyframes fadeIn {
    0% {
        transform: translateY(-1rem) scale(0);
    }
}

.home {
    padding: 0;
    background: var(--black);
    z-index: 2000;

}

.home .slide {
    min-height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-bg);
}


.home .slide .content {
    text-align: center;
    width: 70rem;
    display: none;
}


.home .slide .content h3 {
    text-align: center;
    font-size: 9vw;
    font-weight: 50;
    color: var(--white);
    padding: 8rem 0 0;
    line-height: 1;
    text-shadow: 0 .5rem 1rem rgba(0,0,0,0.7);
    animation: fadeIn 3.2s cubic-bezier(0.54, 1.3, 0.63, 1.34) 2.2s backwards;
}

.home .slide .content h4 {
    text-align: center;
    font-size: 6vw;
    font-weight: 50;
    color: var(--black);
    padding: 8rem 0 2rem;
    line-height: 1;
    text-shadow: 0 .5rem 1rem rgba(0,0,0,0.7);
    animation: fadeIn 3.7s cubic-bezier(0.54, 1.3, 0.63, 1.34) 2.7s backwards;
}


.home .slide .content h5 {
    text-align: center;
    font-size: 4vw;
    color: var(--black);
    font-weight: 50;
    padding: 1rem 0;
    line-height: 1;
    text-shadow: 0 .5rem 1rem rgba(0,0,0,0.7);
    animation: fadeIn 4.2s cubic-bezier(0.54, 1.3, 0.63, 1.34) 3.2s backwards;
}




.home .swiper-slide-active .content {
    display: inline-block;
}

.swiper-button-next,
.swiper-button-prev {
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    background: none;
    color: var(--black);
    opacity: 1;

}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--peru);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
}


.about {
    align-items: center;
    display: grid;
}

.about .image {
    width: 25%;
    align-items: center;
    margin-left: 32%;   
    margin-top: 8%; 
    margin-bottom: 5%;
}

.about-image {
    width: 50%;
}

.about .image img {
    width: 150%;
    border-radius: 50%;
}


.about .content .title {
    font-size: 5rem;
    font-weight: 100;
}

.about-food {
    font-size: 2.5rem;
    font-weight: 100;
}
.about .content p {
    font-size: 2rem;
    color: var(--black);
}

.icons-container {
    text-align: center;
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    position: relative;
    margin: 4rem auto;
}

.icons-container h3 {
    color: var(--black);
}


/* the cards section  */

.grid {
    display: grid;
    width: 114em;
    grid-gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    align-items: flex-start;
}

.grid-item {
    background-color: var(--white);
    border-radius: 0.4rem;
    overflow: hidden;
    box-shadow: 0 3rem 6rem rgba(0,0,0,0.1);
    cursor: pointer;
    transition: 0.2s;
}

.grid-item:hover {
    transform: translateY(-0.5%);
    box-shadow: 0 4rem 8rem rgba(0,0,0,0.5);
}




.food {
    background: var(--light-bg);
}

.food h3 {
    font-weight: 100;
}


.food .slide {
    text-align: center;
    padding: 3rem 2rem;
    transform: scale(.5);
    opacity: .5;
    margin-bottom: 4rem;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--peru);
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.food .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border: var(--border);
}

.food .slide img {
    height: 14rem;
    margin-bottom: 1rem;
}

.food .slide h3 {
    font-size: 2.5rem;
    padding: 1rem 0;
    color:var(--black);
}

.food .slide h5 {
    font-weight: 100;  
    font-size: 3.5rem;
    color: var(--peru);
}

.food .slide .price {
    font-size: 2.5rem;
    color: var(--black);
}


.food-preview-container {
    background: var(--dark-bg);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
}

.food-preview-container .food-preview {
    text-align: center;
    background: var(--white);
    margin: 3rem 2rem;
    border-radius: .9rem;
    display: none;
    width: 35rem;
}

.food-preview-container .food-preview.active {
    display: inline-block;
    animation: fadeIn 0.7s cubic-bezier(0.54, 1.3, 0.63, 1.34) backwards;

}

.food-preview-container .food-preview img {
    margin-top: 2rem;
    height: 7rem;
    margin-bottom: .2rem;
}

.food-preview-container .food-preview h3 {
    padding: .2rem 0;
    font-size: 2.5rem;
    color: var(--peru);
    font-weight: 100;
}

.food-preview-container .food-preview h4 {
    padding: .2rem 0;
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 100;
}


.food-preview-container .food-preview .stars {
    margin-top: .2rem;
}

.food-preview-container .food-preview .stars i {
    font-size: 1.0rem;
    color: var(--logo);
}


.food-preview-container .food-preview ul {
    color: var(--black);
    margin-top: 2rem;
    margin-bottom: none;
    margin-left: 30%;
    text-align: left;
}

.food-preview-container .food-preview ul li {
    color: var(--black);
    line-height: 2rem;
    font-size: 2rem;
    left: -6rem;
}

.food-preview-container .food-preview ul li span {
    position: relative;
    left: 0rem;
    color: var(--black);
}

.food-preview-container .food-preview .price {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

#close-preview {
    position: absolute;
    top: 1.5rem; 
    right: 2.5rem;
    font-size: 3.5rem;
    cursor: pointer;
    color: var(--white);
}

#close-preview:hover {
    transform: rotate(90deg);
}



.gallery .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2.5rem;
}

.gallery .gallery-container .box {
    height: 40rem;
    position: relative;
    overflow: hidden;
}

.gallery .gallery-container .box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.gallery .gallery-container .box .icon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    background: var(--dark-bg);
}


.gallery .gallery-container .box .icon i {
    font-size: 4rem;
    color: var(--white);
}

.gallery .gallery-container .box:hover .icon {
    display: flex;
}




.menu {
    background: var(--light-bg);   
    padding-bottom: 4rem;
}

.menu .title,
.menu h3 {
    font-weight: 100;
}


.menu .slide .title {
    padding: 1rem;
    font-size: 3rem;
    color: var(--white);
    background: var(--peru);
    margin-top: 4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.menu .slide .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 4rem;
}

.menu .slide .box-container .box {
    flex: 1 1 35rem;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;

}


.menu .slide .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: 1rem;
}

.menu .slide .box-container .box p{
    font-size: 1.6rem;
    color: var(--black);
    line-height: 2;
}


.menu .slide .box-container .box .price {
    font-size: 2.5rem;
    color: var(--peru);
}

.menu .slide .box-container .box:hover {
    transform: scale(.9);
    cursor: pointer;
}


.order {
    background: var(--peru);
}

.order .heading span {
    color: var(--white);
}

.order .heading h3 {
    color: var(--white);
}


.order form{
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
}

.order form .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.order form .box-container .box {
    flex: 1 1 30rem;
}


.order form .box-container .box .inputBox input,
.order form .box-container .box .inputBox textarea {
    width: 100%;
    margin: 1rem 0;
    padding: 1.2rem 1.4rem;
    font-size: 1.7rem;
    color: var(--black);
    border: var(--border);
    text-transform: none;
}

.order form .box-container .box .inputBox input::placeholder,
.order form .box-container .box .inputBox textarea::placeholder{
    text-transform: capitalize;
}

.order form .box-container .box .inputBox input:focus,
.order form .box-container .box .inputBox textarea:focus {
    background: var(--black);
    color: var(--white);
}

.order form .box-container .box .inputBox input:focus::placeholder,
.order form .box-container .box .inputBox textarea:focus::placeholder {
    color: var(--white);
}

.order form .box-container .box .inputBox textarea {
    height: 20rem;
    resize: none;
}

.order form .box-container .box .inputBox .map {
    height: 20rem;
    width: 100%;
    margin: 1rem 0;
    padding: .5rem 0;
}

.order form .box-container .box .inputBox .map span {
    color: var(--black);
    font-size: 2rem;
}

.blogs {
    background: var(--light-bg);
}

.blogs .slide .image {
    height: 25rem;
    overflow: hidden;
    position: relative;
}

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

.blogs .slide .image span {
    position: absolute;
    bottom: -10rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .5rem 1.5rem;
    font-size: 2rem;
    color: var(--white);
    background: var(--black);
    z-index: 10;
}

.blogs .slide:hover .image span {
    bottom: 1rem;
}

.blogs .slide:hover .image img {
    transform: scale(1.1);
}

.blogs .slide .content {
    padding: 2rem;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border: var(--border);
    margin-bottom: 4rem;
}

.blogs .slide .content .icon {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.blogs .slide  .content .icon a {
    font-size: 1.5rem;
    color: var(--black);
}

.blogs .slide .content .icon a i {
    padding-right: .7rem;
    color: var(--peru);
}

.blogs .slide .content .icon a:hover {
    color: var(--peru);
}

.blogs .slide .content .title {
    font-size: 2.5rem;
    color: var(--black);
}

.blogs .slide .content .title:hover {
    text-decoration: underline;
}

.blogs .slide .content p {
    padding: 1rem 0;
    line-height: 2;
    font-size: 1.6rem;
    color: var(--black);
}



/* for the reviews section  */

.centered img {
    align-items: center;
    margin-left: 20%;
    /* padding: 5%; */
    margin-bottom: 5%;
}

.arrow-review-left {
    margin-left: 1%;
}

.arrow-review-right {
    margin-right: 1%;
}


.footer {
    align-items: center;
    text-align: center;
}

.footer .icons-container h3 {
    font-weight: 100;
}

.footer .powered a {
    font-weight: 100;
    font-size: 2rem;
}


.footer .icons-container {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

.footer .icons-container .icons {
    text-align: center;
    padding: 3rem 2rem;
}

.footer .icons-container .icons i {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    background: var(--peru);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 5.8rem;
    font-size: 2.5rem;
}

.footer .icons-container .icons h3{
    font-size: 2rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .icons-container .icons p {
    line-height: 1.5rem;
    font-size: 1.55rem;
    color: var(--black);
    text-transform: none;
}

.footer .share {
    margin: 2rem 0;
}

.footer .share a {
    height: 6rem;
    width: 6rem;
    border-radius: 50%;
    line-height: 6rem;
    color: var(--white);
    background: var(--black);
    margin: 2.3rem;
    font-size: 3rem;
}

.footer .share a:hover {
    background: var(--peru);
}

.footer .credit {
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: var(--border);
    font-size: 2rem;
    color: var(--black);
}

.footer .credit span {
    color: var(--peru);
}

.footer .powered {
    font-size: 1.5rem;
    color: var(--black);
}




























































/* here is the part for the media queries  */
@media(max-width:1500px) {
    



    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 16rem;
        width: 18rem;
        margin-bottom: 1rem;
    }

}


@media(max-width:1320px) {
    
    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }



    .food .slide img {
        height: 14rem;
        width: 15rem;
        margin-bottom: 1rem;
    }

}


@media(max-width:1200px) {
    section {
        padding: 3rem 5%;
    }

    .home .slide .content h3 {
        font-size: 12vw;
        padding: 8rem 0 10rem;
        line-height: 1;

    }
    
    .home .slide .content h4 {
        font-size: 9vw;
        margin: 8rem 0 0;
        line-height: 1;
    }
    
    
    .home .slide .content h5 {
        font-size: 8vw;
        padding: 1rem 0;
        line-height: 1;
    }
    

}







@media(max-width:990px) {
    
    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 20rem;
        width: 29rem;
        margin-bottom: 1rem;
    }

}




@media(max-width:991px) {
    section {
        padding: 3rem 2rem;
    }

    html {
        font-size: 55%;
    }

    .home .slide .content h3 {
        font-size: 15vw;
    }

    #preloader {
        background: #ffff url(images/loader.gif) no-repeat center;
        height: 100%;
        width: 100%;
        background-size: 13%;
        position: absolute;
        z-index: 2000;
        justify-content: center;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        pointer-events: none;
    
    }

}





@media (max-width:768px) {





    #preloader {
        background: #ffff url(images/loader.gif) no-repeat center;
        height: 100%;
        width: 100%;
        background-size: 15%;
        position: absolute;
        z-index: 2000;
        justify-content: center;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        pointer-events: none;
    
    }

    .about .image {
        width: 30%;
        align-items: center;
        margin-left: 32%;   
        margin-top: 8%; 
        margin-bottom: 5%;
    }
    

    #menu-btn {
        display: inline-block;
    }
    
    .fa-times {
        transform: rotate(180deg);
    }

    .header .navbar {
        position: absolute;
        top: 99%;
        left: 0%;
        right: 0%;
        background-color: var(--white);
        border-top: var(--border);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        align-items: center;

    }

    .header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .navbar a {
        display: block;
        margin: 2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: initial;
        bottom: 1rem;
    }

    .menu .slide .box-container .box {
        flex-flow: column;
        text-align: center;
    }

}

@media(max-width:700px) {
    
    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 30rem;
        width: 40rem;
        margin-bottom: 1rem;
    }

}



@media(max-width:450px) {

    html {
        font-size: 50%;
    }

    .home .slide .content h3 {
        font-size: 6rem;
    }

    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 25rem;
        width: 35rem;
        margin-bottom: 1rem;
    }


    .about .image {
        width: 40%;
        align-items: center;
        margin-left: 20%;   
        margin-top: 8%; 
        margin-bottom: 5%;
    }
}



@media(max-width:350px) {

    html {
        font-size: 50%;
    }

    .home .slide .content h3 {
        font-size: 6rem;
    }

    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 20rem;
        width: 30rem;
        margin-bottom: 1rem;
    }
}

@media(max-width:300px) {

    html {
        font-size: 50%;
    }

    .home .slide .content h3 {
        font-size: 6rem;
    }

    #reviews{
        display: none;
    }

    .header > .nabar > .reviews-small {
        display: none;
    }


    .food .slide img {
        height: 15rem;
        width: 25rem;
        margin-bottom: 1rem;
    }
}





