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








:root {
    --bg-color: var(--bs-primary);
}


* {
    padding: 0;
    margin: 0;
}

/* html {
    overflow-x: hidden;
} */


button.navbar-toggler.d-lg-none {
    box-shadow: none !important;
}


a,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;

}

/* ============================= utilities ================================== */
a.nav-link {
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

a.nav-link:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.active {
    padding: 0.3rem 1rem;
    color:white;
    background: var(--bs-primary);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn {
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    border: 2px solid var(--bg-color);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0%;
    left: 0%;
    height: 100%;
    width: 100%;
    transform-origin: bottom center;
    background: var(--bs-dark);
    opacity: 0.2;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.btn:hover::before {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
}


/* ============================= utilities ================================== */


/* ==================================== enjoy out food =============================== */

.enjoy-food {
    height: 100vh;
}

/* ==================================== enjoy out food =============================== */




/* ===================================== our-food-gallery ========================= */

.our-menu img {
    aspect-ratio: 3/2;
}

.food-item {
    overflow: hidden;
}

.food-item .item-content {
    top: 100%;
    z-index: 2;

    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.food-item .item-content a {
    border-color: white;
    font-weight: bold;
    color: white;
}

.food-item .item-content a:hover {
    color: var(--bs-dark);
    border-color: var(--bs-dark);

}

.food-item:hover .item-content {
    top: 0%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}


/* ===================================== our-food-gallery ============================== */


/* ===================================== best meal ======================================== */

.best-meal {
    overflow: hidden;
    text-align: left;

}

.best-meal img {

    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

@media screen and (max-width:992px) {
    .best-meal {
        text-align: center;
    }

}

/* ===================================== best meal ======================================== */



/* ========================================= footer content section start here =============================== */
.social-media a {
    /* padding:20px 17px; */
    position: relative;
    height: 50px;
    width: 50px;
    line-height: 0;
    border-radius: 50%;
    background: white;
    color: black;
    transition: all 0.3s ease-in-out;
}

.social-media a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}

.social-media a:hover {
    color: white;
    background: var(--bg-color);
}

.social-media a:hover i {
    color: white;
}

.footer-content a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-content a:hover {
    color: var(--bg-color);
    cursor: pointer;
}


/* ======================================== footer content section start here ===================================== */




/* ========================================= loader =============================================================== */
#loader {
    position: fixed;
    height: 100vh;
    background: #fff;
    z-index: 5000;
}


/* ========================================= loader =============================================================== */





