@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Uncial+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Great+Vibes&display=swap');

body {
    font-family: "Josefin Sans", sans-serif !important;
    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
    width: 0.6rem;
}

::-webkit-scrollbar-track {
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #B01F24;
}

p {
    font-size: 20px;
}


.main_btn {
    background: #B01F24;
    color: #fff;
    padding: 4px 12px;
    border: 1px solid #B01F24;
    border-radius: 20px;
}


.main_btn:hover {
    background: #fff;
    color: #B01F24;
}

.form_btn {
    background: #B01F24;
    color: #fff;
    padding: 4px 12px;
    border: 1px solid #B01F24;

}

.form_btn:hover {
    background: #fff;
    color: #B01F24;
}

#btn-back-to-top {
    position: fixed;
    background-color: #B01F24;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    z-index: 999;
    border: 1px solid #B01F24;
}

.title_section span {
    font-size: 48px;
    color: #FEA82F;
    font-family: "Great Vibes", cursive !important;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

.title_section h1 {
    color: #B01F24;
    font-size: 60px;
    font-weight: bold;
}

.title_section .title-image-container {
    display: flex;
    justify-content: center;
}

.title_section .title-image {
    max-width: 250px;
    height: 50px;
}

@media (max-width:760px){
    .title_section span {
        font-size: 30px;
    }
    .title_section h1 {
        font-size: 35px;
    }
}

.nav_top a {
    text-decoration: none;
    color: #ffffff;
}

.navbar .nav-link:hover {
    color: #B01F24;

}


/*------------------BANNER SECTION-----------------------*/
.home_banner swiper-container {
    width: 100%;
    height: 100%;
}

.home_banner swiper-slide {
    text-align: center;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.home_banner swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    .product_section swiper-container {
        width: 100%;
        height: 250px !important;
    }

    .product_section swiper-slide img {
        display: block;
        width: 100% !important;
        height: 250px !important;
        object-fit: contain;
    }




.home_banner .mySwiper {
    position: relative;
}


@media (min-width:1000px) {
    .home_banner .mySwiper .fixed_image img {
        position: absolute;
        bottom: -220px;
        left: -20px;
        width: 300px;
        object-fit: contain;
    }

    .home_banner .mySwiper h1 {
        font-size: 100px;
        font-family: "Uncial Antiqua", system-ui !important;
    }

    .home_banner .mySwiper p {
        font-size: 30px;
        color: #B01F24;
    }
}

@media (min-width:1000px) and (max-width:1300px) {
    .home_banner .mySwiper .fixed_image img {
        width: 200px;
    }

}

@media (max-width:1000px) {

    .home_banner .mySwiper h1 {
        font-size: 60px;
        font-family: "Uncial Antiqua", system-ui !important;
    }

    .home_banner .mySwiper p {
        font-size: 22px;
        color: #B01F24;
    }

    .home_banner .mySwiper .fixed_image img {
        display: none;
    }

}

/*------------------FEATURE SECTION-----------------------*/
.feature_section h2 {
    font-size: 60px;

}

.feature_section h3 {
    font-size: 26px;
}

.feature_section .upper_leaf img {
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    object-fit: contain;
    z-index: 2;
}

.feature_section .lower_leaf img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    object-fit: contain;
    z-index: 2;
}

.feature_section .card {
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
    background: radial-gradient(178.94% 106.41% at 26.42% 106.41%, #FFEED6 0%, rgba(255, 255, 255, 0) 71.88%), #FFFFFF;
    transition: all 0.8s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.feature_section .card:hover {
    transform: scale(1.05);
}


/*------------------SERVICE SECTION-----------------------*/
.service_section .round_icon {
    padding: 10px;
    height: 60px;
    width: 60px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #B01F24;

}

.service_section h2 {
    position: relative;
    font-size: 42px;
    color: #FEA82F;
    text-align: center;
    /* Optional: If you want the heading centered */
}



.service_section h2::before {
    left: 0;
    transform: translateX(-50%);
}


.service_section h2 span {
    display: inline-block;
    border-bottom: 2px solid #B01F24;
    padding-bottom: 5px;
    position: relative;
}

.service_section .schedule {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 5px;
}

.service_section .day {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service_section .round_icon {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;
}

.service_section .lower_leaf img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    object-fit: contain;
    z-index: 0;
}

@media (max-width:770px) {
    .service_section .lower_leaf img {
        display: none;
    }
}


.service_section .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: transparent !important;

}

.service_section .nav-tabs .nav-link {
    border: none !important;
}

.service_section .nav-tabs a {
    cursor: pointer;
}

.service_section .nav-link.active h3 {
    color: #B01F24;
}


.feature {
    position: relative;
    padding: 0;
}

.feature .feature-col {
    height: inherit;
    /* border-right: 1px solid #dddddd; */
    padding: 50px 0;

}

@media (min-width:1000px) {
    .feature .feature-col {
        border-right: 1px solid #dddddd;
    }
}

.feature .feature-col:last-child {
    border-right: none;
}

.feature .feature-content {
    position: relative;
    width: 100%;
    padding: 0 30px;
    text-align: center;
}

.feature .feature-content i {
    color: #FEA82F;
    font-size: 60px;
    margin-bottom: 10px;
}

.feature .feature-content h3 {
    color: #FEA82F;
    font-size: 20px;
    font-weight: 700;
}

.feature .feature-content p {
    color: #666666;
    font-size: 15px;
    margin: 0;
}

/*------------------PRODUCT SECTION-----------------------*/
.product_section h1 {
    font-size: 62px;

    color: #B01F24;
}

.product_section h3 {
    font-size: 42px;

    color: #B01F24;
}

.product_section .date_circle {
    padding: 5px;
    box-shadow: 0 3px 10px rgb(0, 0, 0, 0.2);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #ffffff;

}

.product_section .date_circle p {
    color: #B01F24;
    font-weight: 600;
}

.product_section .absolute_text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-items: center;

    position: absolute;
}

@media (max-width:768px) {
    .product_section .absolute_text {
        display: none;
    }
}

.ui-widget.ui-widget-content {

    width: 100%;
}

.ui-datepicker {
    padding: 0 !important;
}

.ui-widget-content {
    border: none !important;
}

/*------------------FOOD SECTION-----------------------*/
.food_section .circle-container {
    position: relative;
    width: 350px;
    height: 450px;
    border-radius: 180px;
    overflow: hidden;
    margin: 0 auto;
}

.food_section .circle-container img {
    width: 100%;
    height: 100%;
    border-radius: 180px;
    transition: transform 0.3s ease-in-out;
    object-fit: cover;
}

.food_section .circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.food_section .circle-container:hover .circle-overlay {
    opacity: 1;
}

.food_section .circle-overlay h3 {
    color: #fff;
    margin-bottom: 10px;
}

.food_section h2 {
    font-style: italic;
    font-weight: 100;
    font-size: 40px;

}

.footer_container {
    position: relative;
}



.footer_container a {
    color: #222;
    text-decoration: none;
}



.footer-social-link.facebook {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 42px;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}

.footer-wave-path {
    fill: #fff;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fff;
    transition: fill 0.2s;
}


.footer-copyright {
    background-color: #B01F24;
    color: #fff;
    padding: 15px 30px;
    text-align: center;
}

.footer-copyright a {
    text-decoration: none;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #222;
    text-decoration: none;
}


/*------------------ABOUT PAGE-----------------------*/
/*------------------MISSION SECTION-----------------------*/
.mission_section h3 {
    color: #B01F24;
}

.abt_fixedimage {
    position: absolute;
    top: -150px;
    width: 250px;
    right: 100px;
}

@media (max-width:768px) {
    .abt_fixedimage {
        position: absolute;
        top: -150px;
        width: 150px;
        right: 10px;
    }
}

.chef_section .text-container {
    position: absolute;
    overflow-x: hidden !important;
    right: -40px;
    bottom: -60px;
    overflow: hidden;
    background: #fff;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    box-shadow:
        0px 0px 3.2px rgba(0, 0, 0, 0.105),
        0px 0px 7.1px rgba(0, 0, 0, 0.135),
        0px 0px 12.2px rgba(0, 0, 0, 0.148),
        0px 0px 20.1px rgba(0, 0, 0, 0.155),
        0px 0px 35.1px rgba(0, 0, 0, 0.165),
        0px 0px 80px rgba(0, 0, 0, 0.21);
}


.review_section .review_image {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.review_section .review_image img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    margin-left: 50px;
}

.review_section .item {
    position: relative;
    padding-left: 50px;
}

.review_section .item::after {
    content: '';
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 0;
    width: 2px;
    background-color: #000;
}

.review_section h1 {
    color: #B01F24;
}


.chef_section .text-container h2,
.chef_section .text-container p {
    margin: 0;
    color: #333;
    /* Dark text color */
}


.info-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 100px;
    position: relative;
    z-index: 1;

}

.info-box {
    width: 60%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: -150px;
    border: 2px solid #B01F24;

}

.text-content {
    flex: 1;
    margin-right: 20px;
}

@media (min-width:900px) {
    .text-content h2 {
        background: #B01F24;
        color: #fff;
        padding: 20px;
        left: 15%;
        display: inline-block;
        position: absolute;

    }
}

@media (max-width:900px) {
    .text-content h2 {
        background: #B01F24;
        color: #fff;
        padding: 10px;
        margin: 0;
        left: 50%;
        display: inline-block;
    }
}


.text-content p {
    margin-top: 10px;
    color: #333;
}



/*------------------GALLERY SECTION-----------------------*/


.gallery_section .title-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.gallery_section .line {
    flex: 1;
    height: 10px;
    background: linear-gradient(to right, transparent, #d3ad7f, transparent);
}

.gallery_section .title-image {
    margin: 0 10px;
    background-color: #f8b442;
    padding: 10px;
    border-radius: 50%;
    height: 70px;
}

.gallery_section .img {
    border: 3px solid #FEA82F;
    border-radius: 10px;
}