* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

:focus {
    outline: 0 !important;
}

a {
    text-decoration: none;
}

body {
    cursor: default;
}

/*================================================
Default Button Area CSS
=================================================*/

.default-btn {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #000;
    background-color: #f5b312;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 4px;
    padding: 7px 30px 7px 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    padding-top: 10px;
}

.default-btn span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #221638;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
}

.default-btn:hover {
    color: #ffffff;
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.default-btn:hover span {
    width: 225%;
    height: 562.5px;
}

/*================================================
Cursor Animation CSS
=================================================*/

.blood {
    position: fixed;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle,
            gold 30%,
            gold 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(.2px);
}

@media(max-width:768px) {
    body {
        cursor: auto;
    }
}

/*================================================
Section Title Area CSS
=================================================*/

.section-header {
    position: relative;
    text-align: center;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.section-title {
    font-size: 1.7rem;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    animation: fadeInDown 1s ease forwards;
}

.decor-left {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInDecor 1s ease forwards;
    animation-delay: 0.3s;
}

.section-subtitle {
    max-width: 650px;
    margin: 10px auto 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    animation: fadeInDown 1.2s ease forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDecor {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@media (max-width: 576px) {

    .title-decoration {
        flex-direction: column;
        gap: 6px;
    }

    .decor-left {
        width: 42px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

/*================================================
    Page Header Area CSS
=================================================*/

.page-header {
    margin-top: 86px;
    position: relative;
    height: 35vh;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/page-header2.jpg);
    /* background: linear-gradient(to right, #a62626 0%, #a62626 80%, #fdf6f6 80%, #fdf6f6 100%); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h4 {
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
}

.page-header-content h1 {
    color: gold;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-header {
        height: 30vh;
    }

    .page-header-content h4 {
        font-size: 1rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 25vh;
    }

    .page-header-content h4 {
        font-size: 0.9rem;
    }

    .page-header-content h1 {
        font-size: 1.5rem;
    }

    .page-header-content h4::before,
    .page-header-content h4::after {
        left: -20px;
        right: -20px;
    }
}

/*================================================
Footer Area CSS
=================================================*/

.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid #a62626;
    background: linear-gradient(rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.9)), url(../img/footer-img.jpeg);

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #a62626;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1.1rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.footer-title {
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-link {
    color: var(--secondary-gold);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: 2px solid #a62626;
    border-radius: 25px 0 0 25px;
    background-color: transparent;
    color: var(--secondary-gold);
    border-right: none;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background-color: #a62626;
    color: goldenrod;
    border: 2px solid #a62626;
    border-radius: 0 25px 25px 0;
    border-left: none;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ==== Social Icon ==== */

.share-certificate {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.share-certificate a {
    text-decoration: none;
}

.share-certificate a i {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.share-certificate #facebook {
    font-size: 20px;
    padding: 10px 15px;
    color: #fff;
    background-color: blue;
    border-radius: 50%;
}

.share-certificate #instagram {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(45deg, yellow, red, rgb(233, 6, 233), rgb(243, 8, 117));
    border-radius: 50%;
}

.share-certificate #gmail {
    font-size: 20px;
    padding: 10px 13px;
    color: red;
    background-color: wheat;
    border-radius: 50%;
}

.share-certificate #whatsapp {
    font-size: 20px;
    padding: 10px 13px;
    color: #fff;
    background-color: green;
    border-radius: 50%;
}

.share-certificate #youtube {
    font-size: 20px;
    padding: 10px 11px;
    color: red;
    background-color: white;
    border-radius: 50%;
}

/*================================================
    Navbar Area CSS
=================================================*/




/*================================================
    Home About Area CSS
=================================================*/

.home_about_section {
    color: #333 !important;
    background-color: #fdf0f0 !important;
}

.home_about_section .home_about_collage {
    position: relative;
    width: 100%;
    height: 400px;
}

/* Position each image */
.home_about_left_top,
.home_about_right_top,
.home_about_left_bottom,
.home_about_right_bottom {
    position: absolute;
    width: 48%;
    height: 48%;
    overflow: hidden;
    border-radius: 12px;
}

.home_about_left_top {
    top: 0;
    left: 0;
}

.home_about_right_top {
    top: 0;
    right: 0;
}

.home_about_left_bottom {
    bottom: 0;
    left: 0;
}

.home_about_right_bottom {
    bottom: 0;
    right: 0;
}

.home_about_collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Centered Badge */
.home_about_badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #a62626;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
    z-index: 5;
    border: 2px solid #f5b312;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.home_about_badge img {
    width: 120px;
    height: 120px;
    border: none;
}

.home_about_text {
    padding-left: 10px;
    text-align: justify;
}

.home_about_heading {
    color: #f5b312;
    font-size: 20px;
    margin-bottom: 12px;
}

.home_about_text p {
    color: #333;
    font-size: 15px;
    margin-bottom: 12px;
}

/*
        #readMoreBtn {
            font-weight: 500;
            font-size: 13px;
            border: none;
            outline: none;
            color: #f5b312;
            background: transparent;
            cursor: pointer;
        }
            */

.home_about_section .more-content {
    display: block;
}

.home_about_section #readMoreBtn {
    display: none;
}

@media (max-width: 768px) {
    .home_about_section .more-content {
        display: none;
    }

    .home_about_section #readMoreBtn {
        display: inline-block;
        margin-top: 10px;
        font-weight: 600;
        color: #c49b63;
        cursor: pointer;
    }
}

@media (max-width: 576px) {
    .home_about_collage {
        height: 300px;
    }

    .home_about_badge {
        width: 130px;
        height: 130px;
    }

    .home_about_left_top,
    .home_about_right_top,
    .home_about_left_bottom,
    .home_about_right_bottom {
        width: 48%;
        height: 48%;
    }
}

/*================================================
Signature Food Section  Area CSS
=================================================*/

.signature-food-section {
    color: #333;
    overflow: hidden;
    background-color: #fdf6f6;
}

.signature-food-section .signature-image {
    text-align: center;
}

.signature-food-section .signature-image img {
    max-width: 100px;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.signature-food-section .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.signature-food-section .food-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
    border: 1px solid rgba(212, 175, 55, 0.15);
    cursor: pointer;
}

.signature-food-section .food-item.show {
    opacity: 1;
    transform: translateY(0);
}

.signature-food-section .food-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.signature-food-section .food-item img {
    width: 150px;
    height: 100%;
    flex-shrink: 0;
    border-radius: 10px;
}

.signature-food-section .food-item h5 {
    color: #D4AF37;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.signature-food-section .food-item p {
    color: #333;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.signature-text {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 18px;
    color: #2c2c2c;
    line-height: 1.8;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 10px auto 0 auto;
}

@media (max-width: 576px) {
    .signature-food-section .food-grid {
        gap: 15px;
    }

    .signature-food-section .food-item img {
        width: 100px;
    }

    .signature-food-section .food-item h5 {
        font-size: 1rem;
    }

    .signature-food-section .food-item p {
        font-size: 0.9rem;
    }

    .signature-food-section .signature-image img {
        max-width: 60px;
    }
}

/*================================================
Popular Menu Section  Area CSS
=================================================*/

.popular-menu-section {
    background-color: #fdf0f0 !important;
}

.popular-menu-section .menu-item-card {
    border: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.popular-menu-section .menu-item-card:hover {
    transform: translateY(-10px);
}

.popular-menu-section .menu-price {
    font-weight: bold;
    color: #e74c3c;
}

.popular-menu-section .image-col {
    height: 100%;
}

.popular-menu-section .animated-img {
    width: 100%;
    height: 550px;
    object-fit: contain;
}

@media (min-width: 1200px) {
    .popular-menu-section .animated-img {
        height: 550px;
    }
}

@media (max-width: 991px) {
    .popular-menu-section .animated-img {
        height: 420px;
    }

    .popular-menu-section .menu-item-card h5 {
        font-size: 1rem;
    }

    .popular-menu-section .menu-item-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {

    .popular-menu-section .popular-menu-section {
        padding: 40px 15px;
    }

    .popular-menu-section .animated-img {
        height: 300px;
        margin-bottom: 20px;
    }

    .popular-menu-section .menu-item-card {
        padding: 15px;
    }

    .popular-menu-section .menu-item-card h5 {
        font-size: 0.95rem;
    }

    .popular-menu-section .menu-item-card p {
        font-size: 0.85rem;
    }

    .popular-menu-section .menu-price {
        font-size: 0.9rem;
    }

}

@media (max-width: 480px) {
    .popular-menu-section .animated-img {
        height: 250px;
        border-radius: 12px;
    }

    .popular-menu-section .menu-item-card {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    }
}

/*================================================
List Of Foods Section Area CSS
=================================================*/

.list-of-food {
    position: relative;
    background-color: #fdf6f6;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-buttons button {
    background: none;
    border: none;
    font-size: 1rem;
    color: #a62626;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    color: goldenrod;
    font-weight: bold;
}

.gallery {
    padding: 0 15px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .filter-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-buttons button {
        font-size: 0.9rem;
    }

    .gallery img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .filter-buttons button {
        font-size: 0.8rem;
    }

    .gallery img {
        height: 120px;
    }
}

.gallery-item {
    transition: all 0.4s ease;
}

#showMoreBtn {
    color: #fa5d5d;
    font-weight: bold;
}

/*================================================
Popular Food Section Area CSS
=================================================*/

.popular-food {
    background-color: #fdf6f6;
    position: relative;
    overflow: hidden;
}

.popular-food .left-column {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 0 2rem;
}

.popular-food .small-images {
    display: flex;
    justify-content: start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.popular-food .small-images img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    animation: infiniteRotate 30s linear infinite;
}

@keyframes infiniteRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.popular-food .text-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #a62626;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.popular-food .text-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    line-height: 1.6;
}

.popular-food .right-column {
    background-image: url(../img/home/13.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    height: 680px;
}


@media (max-width: 991px) {
    .popular-food .right-column {
        display: none;
    }
}

@media (max-width: 991px) {

    .popular-food .popular-food {
        min-height: auto;
    }

    .popular-food .left-column {
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .popular-food .small-images {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .popular-food .text-content h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .popular-food .text-content p {
        font-size: 1.05rem;
        text-align: justify;
    }
}

@media (max-width: 768px) {

    .popular-food .left-column {
        padding: 2.5rem 1.25rem;
    }

    .popular-food .small-images {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .popular-food .text-content h1 {
        font-size: 2.1rem;
        line-height: 1.3;
    }

    .popular-food .text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .popular-food .small-images img {
        width: 70px;
        height: 70px;
    }

    .popular-food .text-content h1 {
        font-size: 1.8rem;
    }

    .popular-food .text-content p {
        font-size: 0.95rem;
    }
}

/*================================================
    CTA Section  Area CSS
=================================================*/

.footer-top-img {
    width: 100%;
    margin: 0 auto;
    background-color: #fdf6f6;
}

.footer-image {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

@media (max-width: 576px) {
    .footer-image {
        margin-bottom: -16px;
    }
}

.cta-section {
    padding: 50px 0;
    text-align: center;
    background-color: #fdf0f0 !important;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: goldenrod;
}

.cta-section p.text-large {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.96;
    line-height: 1.6;
}

.cta-section .btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-section .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.35s ease;
    border: 2px solid transparent;
    outline: none;
}

.cta-section .btn-primary {
    background: goldenrod;
    color: #fff;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: goldenrod;
    border: 2px solid goldenrod;
    transform: translateY(-4px);
}

.cta-section .btn-outline {
    color: goldenrod;
    border-color: goldenrod;
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: goldenrod;
    color: #fff;
    transform: translateY(-4px);
}

.cta-section .animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .cta-section h2 {
        font-size: 2.6rem;
    }

    .cta-section p.text-large {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 2.3rem;
    }

    .cta-section .btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 576px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p.text-large {
        font-size: 0.95rem;
    }

    .cta-section .btn-group {
        gap: 1rem;
    }

    .cta-section .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1.5rem;
    }
}

/*================================================
    Who we are section Area CSS
=================================================*/

.who-we-are-section {
    background-color: #fdf0f0 !important;
}

.who-we-are-section .section-description {
    font-size: 1.1rem;
    color: #000;
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: justify;
}

.who-we-are-section .content-row {
    display: flex;
    align-items: stretch;
}

.who-we-are-section .content-col {
    padding: 15px;
}

.who-we-are-section .signature {
    font-size: 1.9rem;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 5px;
    position: relative;
}

.who-we-are-section .signature::before {
    content: "";
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #a62626, #a62626);
    display: block;
    margin-bottom: 10px;
}

.who-we-are-section .founder {
    font-size: 0.95rem;
    color: #b8962e;
}

.who-we-are-section .text-block {
    font-size: 1rem;
    color: #000;
    text-align: justify;
    margin-bottom: 25px;
}

.who-we-are-section .image-block img,
.who-we-are-section .about-design-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.who-we-are-section .image-block img:hover,
.who-we-are-section .about-design-img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.who-we-are-section .info-block {
    border: 2px solid #d4af37;
    background: linear-gradient(180deg, #fff, #fff8e6);
    padding: 25px;
    border-radius: 15px;
}

.who-we-are-section .info-block h5 {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 12px;
}

.who-we-are-section .info-block p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .who-we-are-section .content-row {
        flex-direction: column;
    }

    .who-we-are-section .about-design-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .who-we-are-section .section-description {
        font-size: 1rem;
    }

    .who-we-are-section .text-block {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .who-we-are-section .signature {
        font-size: 1.6rem;
    }

    .who-we-are-section .info-block {
        padding: 18px;
    }
}

/*================================================
    About Area CSS
=================================================*/

#about {
    background-color: #fdf6f6;
}

#about .lead {
    font-size: 1.05rem;
    color: #555;
    margin-top: 1.5rem;
}

#about .counter {
    font-size: 2rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

#about h5 {
    margin-top: 10px;
}

#about p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
}

#about ul li {
    font-size: 0.95rem;
    color: #444;
}

#about img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

#about img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#about .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

#about .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.list-unstyled li i {
    color: #a62626;
    font-weight: 900;
}

#about .animate-on-scroll img {
    width: 100%;
    height: 400px;
}

@media (max-width: 992px) {
    #about .animate-on-scroll img {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 768px) {

    #about .counter {
        font-size: 1.5rem;
    }

    #about {
        text-align: center;
    }
}

/* ================================
   Specialities Card Animation
================================ */

#specialities .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s ease;
}

#specialities .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#specialities .shadow-sm {
    transition: all 0.4s ease;
    background: #ffffff;
    border-radius: 18px;
}

#specialities .shadow-sm:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

#specialities img {
    transition: transform 0.4s ease;
}

#specialities .shadow-sm:hover img {
    transform: scale(1.1) rotate(3deg);
}

#specialities h5 {
    position: relative;
}

#specialities h5::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #D4AF37;
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
    transition: width 0.4s ease;
}

#specialities .shadow-sm:hover h5::after {
    width: 60px;
}

@media (max-width: 768px) {
    #specialities .animate-on-scroll {
        transform: translateY(25px);
    }
}

/*================================================
    Reviews Area CSS
=================================================*/

.people-testimonial {
    position: relative;
    background-color: #fdf6f6;

}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-top: 10px;
}

.testimonial-wrapper {
    position: relative;
    max-width: 1100px;
    width: 100%;
}

.arrow-btn {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    gap: 20px;
}

.arrow-btn i {
    text-align: center;
    cursor: pointer;
    font-size: 1.50rem;
    font-weight: 900;
    transform: translateY(-50%);
    text-shadow: 1px 1px 2px #000;
}

.arrow-btn #left {
    color: tomato;
}

.arrow-btn #right {
    color: #fff;
}

.testimonial-wrapper .testimonial-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-carousel :where(.testimonial-card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial-carousel.no-transition {
    scroll-behavior: auto;
}

.testimonial-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.testimonial-carousel.dragging .testimonial-card {
    cursor: grab;
    user-select: none;
}

.testimonial-carousel .testimonial-card {
    scroll-snap-align: start;
    height: auto;
    list-style: none;
    background: transparent;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid gainsboro;
}

.people-review-box {
    display: grid;
    place-items: center;
    height: 180px;
    background-color: transparent;
    padding: 20px;
    overflow: scroll;
}

.testimonial-card .img {
    background: tomato;
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

.testimonial-card .img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}

.reviewer-details-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.reviewer-details-box h5 {
    color: tomato;
    font-family: "Pacifico", cursive;
}

.review-stars i {
    color: gold;
    padding-bottom: 15px;
    text-shadow: 0.5px 0.5px 1px goldenrod;
}

@media screen and (max-width: 900px) {
    .testimonial-wrapper .testimonial-carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .testimonial-wrapper .testimonial-carousel {
        grid-auto-columns: 100%;
    }

    .testimonial-carousel .testimonial-card {
        width: 100%;
        flex: none;
    }

    .people-testimonial h1 {
        font-size: 25px;
    }
}

/*================================================
    Gallery Area CSS
=================================================*/

.gallery-container {
    background-color: #fdf6f6;
}

.gallery-container .gallery-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px;
    margin-bottom: 30px;
    cursor: pointer;
    border-radius: 15px;
    border: 2px solid goldenrod;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.gallery-container .gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-container .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 10px;
    text-align: center;
}

.gallery-container .gallery-img:hover img {
    transform: scale(1.1);
}

.gallery-container .gallery-img:hover .overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-container .gallery-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-container .gallery-img {
        margin-bottom: 10px;
    }
}

/*================================================
    Contact Area CSS
=================================================*/

.contact-section {
    padding: 80px 0;
    background-color: #fdf6f6;
}

.contact-section .contact-left {
    padding-right: 40px;
}

.contact-section .contact-left p {
    text-align: justify;
}

.contact-section .section-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    max-width: 90%;
}

/* INFO LIST */
.contact-section .info-block {
    margin-top: 35px;
}

.contact-section .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.contact-section .info-item i {
    font-size: 16px;
    margin-top: 4px;
    color: #a62626;
    min-width: 20px;
}

.contact-section .info-item p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* RIGHT FORM */
.contact-section .contact-form-box {
    background: transparent !important;
    padding: 40px;
    border-radius: 12px;
}

.contact-section .form-title {
    font-size: 26px;
    font-weight: 600;
}

.contact-section .form-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.contact-section label {
    font-size: 13px;
    margin-bottom: 6px;
}

/*
        .contact-section .form-control {
            border-radius: 6px;
            border: 1px solid #ccc;
            font-size: 14px;
            padding: 10px 12px;
        }

        .contact-section .form-control:focus {
            box-shadow: none;
            border-color: #000;
        }
            */

.contact-section .submit-btn {
    background: #a62626;
    color: #fff;
    border-radius: 30px;
    padding: 12px 30px;
    font-size: 14px;
    border: none;
}

.contact-section .submit-btn:hover {
    background: #f50505;
}

@media (max-width: 991px) {
    .contact-section .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {

    .contact-section .contact-form-box {
        padding: 25px;
    }
}

/*================================================
    Contact story Area CSS
=================================================*/

.contact-story-section {
    background-color: #fdf0f0 !important;
}

/*
.contact-story-section .story-image {
    width: 100%;
    height: 400px;
}

.contact-story-section .story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 2px solid #000;
} */

.contact-story-section .story-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-story-section .story-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateImage 25s linear infinite;
}

@keyframes rotateImage {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.contact-story-section .story-points {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.contact-story-section .story-points li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.contact-story-section .story-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #a62626;
    color: #a62626;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.contact-story-section .story-btn:hover {
    background: #a62626;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-story-section .story-image {
        text-align: center;
    }
}

/*================================================
Eat Socially Area CSS
=================================================*/

.eat-socially {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    background-color: #fdf6f6;
}

.photo-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.circle-img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #f5b312;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }

    .circle-img {
        width: 100px;
        height: 100px;
    }

    .photo-gallery {
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 1.5rem;
    }

    .circle-img {
        width: 80px;
        height: 80px;
    }

    .connect-link {
        font-size: 0.8rem;
    }
}

/*================================================
Menu Page Area CSS
=================================================*/

.menu-select-btn {
    height: 80px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid #a62626;
    color: #a62626;
}

.menu-select-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .menu-select-btn {
        height: 50px;
        font-size: 16px;
    }
}

/*================================================
Menu item Area CSS
=================================================*/

.food-card {
    border-radius: 15px;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.food-image-container {
    position: relative;
    display: inline-block;
    align-items: center;
}

.menu-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
    column-gap: 20px;
}

.food-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
     transition: transform 0.3s ease;
    cursor: pointer; 
}

.food-card img:hover {
    transform: scale(1.1); 
}

.rm-tag{
    color: rgb(184, 133, 4);
    font-weight: 900;
    padding-top: 10px;
}

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(248, 215, 24);
    color: #ff4500;
    padding: 5px 7px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    border: 2px solid #ff4500;
}

.food-details {
    margin-top: -10px;
    /* border: 2px solid tomato;*/
    padding: 8px 10px;
    border-radius: 20px;
}

.food-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #a62626;
    text-transform: uppercase;
}

.food-desc {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    text-align: justify;
}

.add-cart-btn {
    width: 100%;
    height: 30px;
    color: #fff;
    background: tomato;
    border: none;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 500;
}

.add-cart-btn:hover {
    background-color: gold;
    color: tomato;
    border: 2px solid tomato;
}

@media screen and (max-width: 1024px) {
    .menu-title h1 {
        font-size: 2.5rem;
    }

    .food-card {
        max-width: 250px;
    }

    .food-card img {
        width: 180px;
        height: 180px;
    }
}

@media screen and (max-width: 768px) {
    .menu-title h1 {
        font-size: 2rem;
    }

    .menu-title img {
        width: 50px;
        height: 50px;
    }

    .menu-item {
        column-gap: 15px;
        row-gap: 15px;
    }

    .food-card {
        max-width: 200px;
    }

    .food-card img {
        width: 150px;
        height: 150px;
    }

    .food-name {
        font-size: 1rem;
    }

    .food-desc {
        font-size: 0.9rem;
    }

    .price-tag {
        font-size: 0.9rem;
        padding: 4px 6px;
    }
}

@media screen and (max-width: 600px) {
    .menu-title h1 {
        font-size: 1.8rem;
    }

    .menu-title img {
        width: 40px;
        height: 40px;
    }

    .menu-item {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .food-card {
        max-width: 100%;
    }

    .food-card img {
        width: 100px;
        height: 100px;
    }

    .food-details {
        margin-top: -15px;
    }

    .food-name {
        font-size: 12px;
    }

    .food-desc {
        font-size: 0.8rem;
    }

    .price-tag {
        font-size: 0.8rem;
        padding: 3px 5px;
    }

    .add-cart-btn {
        height: 25px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 400px) {
    .menu-item {
        grid-template-columns: repeat(2, 1fr);
    }

    .food-card {
        max-width: 100%;
    }

    .food-card img {
        width: 120px;
        height: 120px;
    }
}

@media screen and (max-width: 350px) {
    .menu-item {
        grid-template-columns: repeat(1, 1fr);
    }
}





.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: inherit;
}

::-webkit-scrollbar {
    display: none;
}

::placeholder {
    color: #000 !important;
    opacity: 1;
}

/*

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #002b40;
    border-radius: 10px;
}*/

:root {
    scroll-padding-top: 80px;
}