/********** Template CSS **********/
:root {
    --primary: #fea116;
    --light: #f1f8ff;
    --dark: #0f172b;
}

h1,
h2 {
    font-family: poppin, sans-serif;
    color: #331a20;
}

.ff-secondary {
    font-family: "Pacifico", cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
@media (max-width: 523px) {
    .back-to-top {
        right: 15px;
        bottom: 55px;
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** fIXED BOOKING & ENQUIRY BUTTON***/
#bookingbtn {
    position: fixed;
    bottom: 60%;
    left: -32px;
    z-index: 99;
    transform: rotate(270deg);
    border: none;
    outline: none;
    background-color: #fea116;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}
#bookingbtn:hover,
#enquirybtn:hover {
    background-color: #331a20;
}

#enquirybtn {
    position: fixed;
    bottom: 40%;
    left: -26px;
    z-index: 99;
    transform: rotate(270deg);
    border: none;
    outline: none;
    background-color: #fea116;
    color: white;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

/**** Food order online image ***/
.image-row {
    display: flex;
}

.orderfoodimg {
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    margin-right: 10px;
}

.orderfoodimg:hover {
    transform: scale(1.05);
}

/*** Footer Fixed Navbar seen in small device**/

.footerfixednav {
    height: 45px;
    position: fixed;
    bottom: -3px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: none;
    z-index: 1000;
    padding-top: 10px;
    background-color: #331a20 !important;
}
.footerfixednav i {
    font-size: 22px;
}
@media (max-width: 991px) {
    .footerfixednav {
        display: block;
    }
}

/*** Button ***/
.btn {
    font-family: "Nunito", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*Top Navbar*/
.TopNav {
    color: white;
    padding: 10px 110px;
    background-color: #331a20;
}
.TopNav a {
    color: white;
    text-decoration: none;
}
.TopNav a:hover {
    color: white;
}

.topnavtime {
    text-align: right;
}

/*topnav social icons*/
.socialicon {
    text-decoration: none;
    margin: 0px 1px;
    border-radius: 3px;
    color: #fea116;
}

.socialicon1 {
    text-decoration: none;
    margin: 0px 1px;
    border-radius: 3px;
    height: 25px;
    text-align: center;
    width: 25px;
    font-size: 19px;
    padding: 3px;
    color: #fea116;
}
.socialicon1:hover {
    background-color: white;
    color: #331a20;
}

@media (max-width: 492px) {
    .topnavtime {
        font-size: 12px;
    }
    .socialicon {
        font-size: 13px;
        padding-top: 4px;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 492px) {
    .topnavtime {
        font-size: 11px;
        margin-top: 5px;
    }
}

/*end of Top Navbar*/

/*navbar css*/
.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px 110px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
}

.brand {
    font-size: 24px;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: black !important;
    text-decoration: none !important;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out;
    font-size: 18px;
    font-weight: 500;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    gap: 12px;
    list-style: none;
}

.nav-links li {
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.line1,
.line2,
.line3 {
    width: 30px;
    height: 4px;
    background-color: white;
    border: 1px solid #331a20;
    border-radius: 20px;
    margin: 2px;
    transition: all 0.3s ease;
}
/* Define the active class */
.nav-item .nav-link.active {
    color: #fea116 !important;
    font-weight: bold;
}

/* Example hover effect for nav links */
.nav-item .nav-link:hover {
    color: #fea116 !important;
    font-weight: bold;
}

/* Ensure the active class is visible even when the element is focused */
.nav-item .nav-link:focus {
    color: #fea116 !important;
    font-weight: bold;
}
/* Media query for mobile */

@media screen and (max-width: 991px) {
    .nav-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 58px;
        left: -100%; /* Initially off-screen to the left */
        width: 50%;
        padding: 20px;
        box-sizing: border-box;
        transition: left 0.5s ease-in-out; /* Add transition */
    }
    .nav-item .nav-link {
        margin-top: -30px;
        margin-left: 10px;
        font-weight: 300;
    }
    .nav-links.active {
        left: 0; /* Slide into view */
    }

    .burger {
        display: flex;
    }
}

/*media query for navbar*/

@media (max-width: 1280px) {
    .navbar {
        padding: 10px 75px;
    }
    .TopNav {
        padding: 10px 75px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 10px 40px;
    }
    .TopNav {
        padding: 10px 40px;
    }
}

@media (max-width: 912px) {
    .navbar {
        padding: 10px 90px;
    }
}

@media (max-width: 853px) {
    .navbar {
        padding: 10px 55px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 30px;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 10px 10px;
    }
}

/*css for selected menu*/
.selectedmenu .nav-link {
    color: #fea116 !important;
}

/**end of navbar*/

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(75, 43, 28, 0.8), rgba(75, 43, 28, 0.8)),
        url(../img/carousel.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.commonbackimg {
    background: linear-gradient(rgba(75, 43, 28, 0.8), rgba(75, 43, 28, 0.8)),
        url(../img/commonback.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
     height: 300px;
    display: flex;
    align-items: center;
}

@media (max-width: 955px) {
    .commonbackimg {
        height: 300px;
    }
}
@media (max-width: 630px) {
    .commonbackimg {
        height: 250px;
    }
}
@media (max-width: 500px) {
    .commonbackimg {
        height: 180px;
        display: flex;
        align-items: center;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: 0.5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}

/*** Video part ***/
.videobackimg {
    background: linear-gradient(rgba(75, 43, 28, 0.8), rgba(75, 43, 28, 0.8)),
        url(../img/videoimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.AboutPlayButton:hover {
    color: #fea116;
    cursor: pointer;
}

/*** blog ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);

    transition: 0.5s;
}

.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Contact page border style ***/
.contactborder {
    border-left: 2px solid grey;
    border-radius: 8px;
}

/*** About Page Image section ***/
.aboutimg img {
    transition: 1.5s;
}

.aboutimg:hover img {
    transform: rotate(5deg);
}

.workcounter {
    background: linear-gradient(rgba(75, 43, 28, 0.8), rgba(75, 43, 28, 0.8)),
        url(../img/counterimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.whyus-item {
    background-color: #f7f5e9;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/*** Footer ***/

.footer {
    background: linear-gradient(rgba(75, 43, 28, 0.8), rgba(75, 43, 28, 0.8)),
        url(../img/footerbackimg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
@media (max-width: 991px) {
    .footer .copyright {
        padding-bottom: 70px;
    }
}
/**popup */
    .user-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .user-popup-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .user-popup-container {
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 20px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        max-width: 450px;
        width: 90%;
        padding: 0;
        position: relative;
        transform: scale(0.7) translateY(100px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
    }

    .user-popup-overlay.show .user-popup-container {
        transform: scale(1) translateY(0);
    }

    .user-popup-header {
            background: linear-gradient(145deg, #D4A726 0%, #D4A726 40%, #D4A726 50%, #D4A726 100%) !important;
        padding: 30px 30px 20px;
        text-align: center;
        position: relative;
    }

    .user-popup-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1);
        }
    }

    .success-icon i {
        font-size: 36px;
        color: white;
    }

    .user-popup-title {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin: 0;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .user-popup-body {
        padding: 40px 30px 30px;
        text-align: center;
    }

    .welcome-message {
        font-size: 18px;
        color: #495057;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .user-name {
        color: #913C10;
        font-weight: 600;
    }

    .features-list {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border-radius: 15px;
        padding: 20px;
        margin: 25px 0;
        border: 1px solid rgba(102, 126, 234, 0.1);
    }

    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .feature-item:last-child {
        margin-bottom: 0;
    }

    .feature-icon {
        width: 30px;
        height: 30px;
           background: linear-gradient(145deg, #D4A726 0%, #D4A726 40%, #D4A726 50%, #D4A726 100%) !important;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .feature-icon i {
        font-size: 14px;
        color: white;
    }

    .feature-text {
        color: #495057;
        font-size: 14px;
        margin: 0;
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .close-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    @media (max-width: 576px) {
        .user-popup-container {
            margin: 20px;
            width: calc(100% - 40px);
        }

        .user-popup-title {
            font-size: 24px;
        }

        .welcome-message {
            font-size: 16px;
        }
    }
 
