@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

a,
a:hover {
    text-decoration: none;
}

a:hover {
    color: var(--primary-color) !important;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

/* variable define */
:root {
    --primary-color: #FFC222;
    --secundary-color: #00a149;
    --white-color: #fff;
    --text-color: #b0b0b0;
    --black-color: #1E1D23;
    --primary-font: 'Roboto', sans-serif;
    --secundary-font: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    font-size: 100%;
    font-weight: 400;
}

/* Custom scrollbar */

::-webkit-scrollbar {
    width: 0.625rem;
}

::-webkit-scrollbar-track {
    background: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secundary-color);
}


/* Custom CSS design */

h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-shadow: 1px 0 6px #000;
}

h1 span {
    color: var(--primary-color);
}

h2 {
    font-weight: 700;
    font-size: 2rem;
    text-transform: capitalize;
    font-family: var(--secundary-font);
    color: var(--secundary-color);
    line-height: 3rem;
}

h4 {
    color: var(--secundary-color);
    font-family: var(--secundary-font);
    text-transform: capitalize;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

h5 {
    color: var(--black-color);
    font-family: var(--secundary-font);
    text-transform: capitalize;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white-color); /*up*/
}

p {
    font-size: 1rem;
    color: var(--text-color);
    font-family: var(--secundary-font);
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: 1px;
}


.main-btn {
    display: inline-block;
    padding: 0.625rem 1.875rem;
    line-height: 1.5625rem;
    background-color: var(--primary-color);
    border: 0.1875rem solid var(--primary-color);
    color: var(--black-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 0.5rem;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
    -webkit-transition: all 4.s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.main-btn:hover{
    background-color: transparent;
    color: var(--primary-color);
}

.wrapper {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}


.text-content {
    width: 70%;
    margin: auto;
}



/* ======= Header design ======= */
.navigation-wrap {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.navigation-wrap .nav-item {
    padding: 0 0.625rem;
    transition: all 0.3s linear;
}

.navbar-toggle:focus {
    outline: unset;
    border: unset;
    box-shadow: none;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white-color);
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.navigation-wrap .main-btn {
    padding: 0.3125rem 1.4375rem;
    box-shadow: none;
    margin-left: 0.625rem;
}



/*alterar o estilo da barra de navegação na rolagem*/
.navigation-wrap.scroll-on {
    position: fixed;
    background-color: var(--white-color);
    top: 0;
    left: 0;
    width: 100%; /*largura*/
    box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all 0.15s ease-in-out 0s;
}

.navigation-wrap.scroll-on .nav-link {
    color: var(--black-color);
}

.navigation-wrap.scroll-on .nav-link:hover,
.navigation-wrap.scroll-on .nav-link.active { 
    color: var(--primary-color);
}


/* ======= Top Banner design ======= */
.top-banner {
    width: 100%;
    background: url('../img/bg-1.jpg') no-repeat center;
    background-size: cover;
    padding: 16.875rem 0 9.375rem;
}

.top-banner p {
    color: var(--white-color);
}



/* ======= Our Menu design ======= */
.our-menu .card {
    border: none;
}

.our-menu .link_category_product {
    position: relative;
    display: block;
    z-index: 1;
}

.our-menu .link_category_product::before{
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted var(--secundary-color);
    z-index: -1;
    transform: translateX(-50%) translateY(-50%) scale(0);
    background: var(--primary-color);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}


.card:hover .link_category_product::before{
    transform: translateX(-50%) translateY(-50%) scale(1);
} 

.our-menu .cat-title a{
    text-align: center;
    font-size: 0.8125rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black-color);
    text-decoration: none; /*update*/
}

.card:hover .cat-title a {
    color: var(--primary-color);
}


/* ======= About section design ======= */
.about-section {
    background: var(--black-color);
}

.about-section .card,
.about-section .card img {
    border-radius: 0.625rem;
}

.about-section .text-sec {
    padding-left: 2rem;
}


/* ======= Food type section design ======= */
.food-type {
    padding-top: 3.25rem;
}

.food-type ul li {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 32px;
    position: relative;
    margin-left: 30px;
}

.food-type ul li::before {
    position: absolute;
    left: -2.1875rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
}

/* ======= Explore Food design ======= */
.explore-food .card {
    border: none;
    background-color: transparent;
    border-radius: 0.9375rem;
}

.explore-food .card img {
    border-radius: 15px 15px 0 0;
    object-fit: cover;
}

.explore-food .card span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 1rem;
    border-bottom: 0.0625rem solid #eee;
}

.explore-food p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 22px;
}


/* ======= Testimonial design ======= */
.testimonial-section {
    background: var(--secundary-color);
}


.testimonial-section h2 {
    color: var(--white-color);
}

.testimonial-section .carousel-item {
    margin-top: 3rem;
    padding: 10rem 3.152rem;
    background-color: var(--black-color);
    border-radius: 0.9375rem;
    text-align: center;
}

.testimonial-section .carousel-caption img {
    max-width: 5rem;
    border-radius: 50%;
    padding: 0.3125rem;
}

.testimonial-section .carousel-caption p {
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 300;
    color: var(--white-color);
    padding: 0 11% 0.625rem;
}

.testimonial-section .carousel-indicators {
    bottom: -2.8125rem;
}


.testimonial-section .carousel-indicators button {
    width: 15px;
    height: 15px;
    outline: none;
    border-radius: 50%;
    border: none;
    margin-right: 1rem;
    opacity: 0.2;
}

.testimonial-section .carousel-indicators button.active {
    opacity: 1;
}


/* ======= Footer design ======= */
.footerc {
    background: var(--black-color);
}


.footerc .footer-social a i {
    font-size: 1.5rem;
    color: var(--white-color);
    padding: 0 1rem;
}

.footerc .footer-social a:hover i{
    color: var(--primary-color);
}

/* Form Control */
.newsletter .form-control {
    height: 3.225rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    width: 100%;
    border-radius: 0;
    background: transparent;
    border: 0.1875rem solid var(--white-color);
    color: var(--black-color);
    font-weight: 700;
}


.newsletter .main-btn {
    height: 3.225rem;
    padding: 0 1.25rem;
    font-size: 0.875rem;
    border-radius: 0;
    background-color: var(--white-color);
    border: 0.1875rem solid var(--white-color);
    color: var(--black-color);
    font-weight: 700;
}


.newsletter:hover .form-control {
    border: 0.1875rem solid var(--primary-color);
    color: var(--black-color);
}

.newsletter:hover .main-btn {
    background: var(--primary-color);
    border: 0.1875rem solid var(--primary-color);
}


.newsletter .form-control:hover,
.newsletter .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--primary-color);
}



/* ======= Responsive ======= */
@media (max-width: 991px){

    /*custom classes*/
   .text-content {
       width: 100%;
   }

    /*navbar brand*/
    .navigation-wrap .navbar-brand img {
        height: 3.8125rem;
    }

    .navigation-wrap {
        text-align: center;
        background-color: var(--white-color);
    }
    
    .navigation-wrap .nav-link {
        line-height: 1.875rem;
        color: var(--black-color);
    }


    /*banner design*/
    .top-banner {
        padding: 9.375rem 0 9.375rem;
    }

    /*carousel design*/
    .testimonial-section .carousel-caption p {
        padding: 0;
    }

    /*footer link*/
    .footerc .footer-social a i {
        padding: 0 0.75rem;
    }

}


@media (max-width: 767px){

    /*custom css*/
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 1.3rem;
        line-height: 28px;
    }

    /* Top banner */
    .top-banner {
        padding: 10.375rem 0 9.375rem;
    }

    /* Carousel design */
    .testimonial-section .carousel-item {
        padding: 11rem 3.125rem;
    }
}

@media (max-width: 330px){

    /* Carousel design */
    .testimonial-section .carousel-item {
        padding: 13rem 3.125rem;
    }
   

    /* */

    /* */
}