@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Satisfy&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Satisfy&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;
    color: var(--secondary-color)
}

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

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

/* variable define */
:root {
    --primary-color: #fff;
    --secondary-color: #F58220;
    --third-color: #f98169;
    --white-color: #fff;
    --text-color: #555;
    --text-gray: #999;
    --black-color: #000;
    --primary-font: Satisfy;
    --secondary-font: Raleway;

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondary-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(--primary-color);
}

/*
----------------------------
custom css design
----------------------------
*/
h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

h2 {
    font-weight: 700;
    font-size: 2.25rem;
    text-transform: capitalize;
    font-family: var(--secondary-font);
    line-height: 4rem;
}

h4 {
    color: var(--black-color);
    font-family: var(--secondary-font);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}


h5 {
    color: var(--black-color);
    text-transform: capitalize;
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

h6 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

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

}

.white-btn {
    display: inline-block;
    padding: 00.625rem 1.875rem;
    line-height: 1.5625;
    background-color: var(--white-color);
    border: 0.1875rem solid var(--white-color);
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0/19%);
    -webkit-transition: all .4s 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);
}

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

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

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



/* --------------------------
--------- Header Design---- */
/* Special Order Button Styling */
.navigation-wrap .nav-item .nav-order-btn {
    background-color: #ff4d00; /* Use your brand's boldest color */
    background-image: linear-gradient(135deg, #ff6b3d 0%, #ff4d00 100%);
    color: #fff !important; /* Force text to white */
    padding: 0.6rem 1.5rem;
    border-radius: 50px; /* Rounded pill shape stands out against flat links */
    margin-left: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3); /* Soft colored glow */
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Hover Effects */
.navigation-wrap .nav-item .nav-order-btn:hover {
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.5); /* Stronger glow */
    background-image: linear-gradient(135deg, #ff4d00 0%, #e64500 100%);
    color: #fff !important;
}

/* Optional: Pulse Animation to catch the eye */
@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 77, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

.nav-order-btn {
    animation: pulse-orange 2s infinite;
}
.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 200ms linear;
}

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

.navbar-brand img {
    width: 85px;
    height: 85px;
}

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

.nav-link:hover {
    color: var(--secondary-color) !important;
}

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

.nav-header {
    background-color: #000;
}

/* change navbar styling on-scroll */
.navigation-wrap.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background: var(--white-color); */
    box-shadow: 0 0.12rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all .15s ease-in-out 0s;
}

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

.top-banner {
    width: 100%;

    padding-top: 6.875rem;
}

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

.explore-food img {
    /* border-radius: 0.9375rem; */
    object-fit: cover;
}

.explore-food .text-content h2 {
    font-weight: 600;
    /* font-size: 3.25rem; */
    font-family: var(--secondary-font);
    color: var(--secondary-color);

}

.explore-food .text-content h5 {
    font-size: 1.5rem;
    line-height: 40px;
}

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

.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 .card span del {
    color: var(--text-color);
    margin-left: 0.5rem;
}


/* main coure */
#main-course {
    /* background-image: url(../images/course/course-back.png);
  width: 1770px;
  height: 500px; */
    width: 100%;
    background: url(../../images/frontend/background/main_course.png) no-repeat center;
    background-size: cover;
    /* padding: 31.875rem 0 9.375rem; */
    height: 699px;

}

#main-course .text-heading h2 {
    color: var(--secondary-color);
}

#main-course .text-heading h5 {
    color: #fff;
}

#main-course .text-content h5 {
    color: var(--secondary-color);
    /* font-size: 48px; */
}

#main-course .owl-carousel .item .card {
    background: transparent;
    color: var(--secondary-color);

}

#main-course .owl-carousel .item h4 {
    color: var(--secondary-color);
    font-size: 15px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: orange;
}

.latest_news h2 {
    color: var(--secondary-color);
}

.latest_news h5 {
    color: var(--black-color);
    text-transform: capitalize;
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.high_ratting .img_box {
    width: 300px;
    height: 200px;
    align-content: center;
    background: #fff;
    overflow: hidden;
}

.high_ratting img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.high_ratting img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.high_ratting h2 {
    color: var(--secondary-color);
    margin-bottom: 0px;
}

.high_ratting p {
    font-size: 2rem;
    font-weight: 500;
    line-height: 37px;
}

.high_ratting .star_ratting i {
    font-size: 3rem;
    color: gold;
    padding: 10px 0px;
}

.high_ratting .text_description {
    padding-left: 10px;
}

.high_ratting h4 {
    font-size: 1rem;
}

.high_ratting p {
    font-size: .8rem;
    text-align: left;

    line-height: 15px;
}

.ratting_footer div {
    padding: 0px 5px;
}

.ratting_footer img {
    padding: 10px;
}

.just_introduced .card {
    background-color: transparent;
}

.just_introduced h4 {
    /* color: white; */
}

.just_introduced p {
    /* color: white; */
}

/* / form section  / */
.book_form {
    background: transparent;
    border: none;
    border-bottom: 2px solid;
    border-color: white;
    border-radius: 0px;
}

.form-control:focus {
    color: white;
    font-size: 18px;
    background-color: transparent;
    border-color: #fff;
    outline: 0;
    box-shadow: none;
}

/* animation more buttonstart */

.menu a,.act_btn a,.act_btn button,
a>span {
    position: relative;
    text-decoration: none;
    line-height: 15px;
}

.act_btn button:before,
.act_btn button:after,
.act_btn button>span:before,
.act_btn button>span:after,
.act_btn a:before,
.act_btn a:after,
.act_btn a>span:before,
.act_btn a>span:after,
.menu a:before,
.menu a:after,
.menu a>span:before,
.menu a>span:after {
    content: '';
    position: absolute;
    transition: transform .5s ease;
}

.hover-5 {
    display: inline-block;
    overflow: hidden;
}

.hover-5:before,
.hover-5:after {
    right: 0;
    bottom: 0;
    background: #f58220;
}

.hover-5:before {
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
}

.hover-5:after {
    width: 2px;
    height: 100%;
    transform: translateY(100%);
}

.hover-5>span {
    display: flex;
    padding: 10px;
}

.hover-5>span:before,
.hover-5>span:after {
    left: 0;
    top: 0;
    background: #f58220;
}

.hover-5>span:before {
    width: 100%;
    height: 2px;
    transform: translateX(100%);
}

.hover-5>span:after {
    width: 2px;
    height: 100%;
    transform: translateY(-100%);
}

.hover-5:hover:before,
.hover-5:hover:after,
.hover-5:hover>span:before,
.hover-5:hover>span:after {
    transform: translate(0, 0);
}

/* animation more button end */

/* footer  start*/
#footer {
    background-color: #000;
    height: 500px;
}

#footer .footer_logo img {
    width: 300px;
}

#footer .footer_text h5 {
    color: var(--secondary-color);
}

#footer .footer_text a:hover {
    text-decoration: none;
    color: var(--secondary-color) !important;
}

/* end footer

/* Page Title Begin */
.page-title{
    font-family: var(--primary-font) !important;
    font-size: 36px !important;
}

.page-desc{
    font-family: var(--secondary-font) !important;
    font-size: 18px !important;
    text-transform: none;
    text-align: justify;
}
/* Page Title End */

/* General Begin */
.menu_desc{
    height: 60px;
}
/* General End */

