
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }
/*** Spinner End ***/


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.element.style {
    padding: 20px 20px 20px 20px;
    color: #050709;
    font-size: 18px;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.wow,
.animated {
    animation-duration: 2s !important;
}


/*** Button Start ***/
.btn.btn-primary {
    border: 0;
}

.btn.btn-primary:hover {
    background: var(--bs-dark) !important;
    color: var(--bs-primary) !important;
}

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 38px;
    height: 38px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
body {
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #9a9a9a;
    background-color: #F5E6C8;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

p {
    font-size: 1em;
}
/*** Button End ***/


/*** Navbar Start ***/
.nav-bar {
    background: #F5E6C8;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 1.2em;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}
/* Default (Desktop) */
.navbar-brand img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Sticky Navbar (on scroll) */
.sticky-top.navbar .navbar-brand img {
    height: 60px;
}

/* Tablet */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 110px;
    }
}
.mb-0{
    color: #fff;
}
/* Mobile */
@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 90px;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}

/*** Navbar End ***/

/*** Hero Hover Zoom ***/
.hero-image {
    overflow: hidden;
    border-radius: 0.25rem;
}

.hero-image img {
    display: block;
    transition: transform 0.35s ease;
    will-change: transform;
}

/* .hero-image:hover img {
    transform: scale(1.08);
} */

.about-section {
    position: relative;
    background: url('../img/wooden-floor-background.jpg') center center/cover no-repeat;
}
.mb-4{
    color: #000000;
}


.about-section .container {
    position: relative;
    z-index: 2;
}
/* Section */

.why-choose-us {
    margin-bottom: 40px;
}

/* Intro Content */
.why-intro h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4B2E2E;
    margin-bottom: 10px;
}

.why-intro p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
}

/* Box Layout */
.why-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #4B2E2E;
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.4s ease;
}

/* Hover */
.why-box:hover {
    transform: translateY(-8px);
    background: #3a2222;
    box-shadow: 0 10px 25px rgba(200,155,60,0.3);
}

/* Icon */
.why-box .icon {
    min-width: 45px;
    height: 45px;
    background: #C89B3C;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

/* Text */
.why-box h5 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #fff;
}

.why-box p {
    font-size: 1em;
    margin: 0;
    color: #eee;
}

/* spacing */
.why-choose-us .col-md-6 {
    margin-bottom: 20px;
}

/* Image Wrapper */
.image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Image */
.img-main {
    width: 80%;
    max-width: 400px;
    border-radius: 20px;
    animation: float 4s ease-in-out infinite;
}

/* Overlay Image */
.img-overlay {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    max-width: 220px;
    border-radius: 15px;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float2 5s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float2 {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ========================= */
/* 📱 Mobile (up to 576px) */
/* ========================= */
@media (max-width: 576px) {

    .why-box {
        flex-direction: row;
        padding: 18px;
    }

    .why-box h5 {
        font-size: 16px;
    }

    .why-box p {
        font-size: 1em;
    }

    .why-intro h3 {
        font-size: 20px;
    }

    .why-intro p {
        font-size: 1em;
    }

    .img-main {
        width: 100%;
        max-width: 280px;
    }

    .img-overlay {
        position: relative;
        width: 70%;
        max-width: 180px;
        bottom: 0;
        margin-top: -40px;
        right: auto;
    }
}

/* ========================= */
/* 📱 Tablet (577px–992px) */
/* ========================= */
@media (max-width: 992px) {

    .why-box {
        padding: 22px;
    }

    .img-main {
        width: 90%;
    }

    .img-overlay {
        width: 60%;
    }
}

/* ========================= */
/* 💻 Large Screens (1200px+) */
/* ========================= */
@media (min-width: 1200px) {

    .why-box {
        padding: 30px;
    }

    .img-main {
        max-width: 450px;
    }

    .img-overlay {
        max-width: 250px;
    }
}
@media (max-width: 576px) {

    .image-wrapper {
        position: relative;
        display: flex;
        justify-content: center;
    }

    /* Main Image */
    .img-main {
        width: 85%;
        max-width: 280px;
    }

    /* Overlay Image (keep overlap) */
    .img-overlay {
        position: absolute;   /* 🔥 keep overlap */
        width: 60%;
        max-width: 160px;

        bottom: -20px;        /* adjust overlap depth */
        right: 10px;          /* keep inside screen */

        border: 4px solid #fff;
    }
}

.mb-0{
    color: #000;
}
/* Section */
.stats-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    color: #fff;

    background: url('../img/stat-bg.jpg') center/cover no-repeat;
}

/* Overlay */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 0;
}

/* Container */
.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 30px;
}

/* Box */
.stat-box {
    flex: 1;
    min-width: 200px;
}

/* Number */
.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #C89B3C;
    margin-bottom: 10px;
}

/* Text */
.stat-text {
    font-size: 18px;
    opacity: 0.95;
}

/* Tablet */
@media (max-width: 1024px) {
    .stats-section {
        padding: 50px 30px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-text {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 20px;
        margin: 20px 15px;
        border-radius: 12px;
    }

    .stats-container {
        gap: 20px;
    }

    .stat-box {
        flex: 0 0 calc(50% - 10px); /* ✅ 2 per row */
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .stats-section {
        padding: 30px 15px;
        margin: 20px 10px;
    }

    .stat-box {
        flex: 0 0 100%; /* optional: 1 per row on very small */
    }
}

/* Section Background */
.taste-section {
    position: relative;
    padding: 10px 0;
    background: url('../img/wooden-floor-background.jpg') center center no-repeat;
    background-size: cover;
}

/* Keep content above bg */
.taste-section .container {
    position: relative;
    z-index: 2;
}

/* Equal alignment */
.taste-section .row {
    display: flex;
    align-items: center;
}

/* Content Styling */
.taste-content h2 {
    font-size: 42px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.taste-content p {
    font-size: 1em;
    color: #000;
    line-height: 1.7;
}

/* Image Wrapper */
.taste-image {
    width: 100%;
}

/* Proper Image Size */
.taste-image img {
    width: 100%;
    height: 100%;       /* 🔥 perfect section height */
    object-fit: cover;   /* crop nicely */
    border-radius: 15px;
}

/* Responsive */
@media (max-width: 991px) {
    .taste-section {
        padding: 60px 0;
    }

    .taste-section .row {
        flex-direction: column;
    }

    .taste-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .taste-content h2 {
        font-size: 32px;
    }

    .taste-image img {
        height: 100%;
    }
}




/
/* Section */
.wall-of-fame {
    background: url('../img/wooden-floor-background.jpg') center/cover no-repeat;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #4B2E2E;
    font-size: 32px;
}

/* Grid */
.fame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
/* Move dots below */
.swiper-pagination {
    position: relative;
    margin-top: 25px;
}

/* Optional: spacing + styling */
.swiper-pagination-bullet {
    background: #4B2E2E;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
/* Box */
.fame-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
}

/* Image */
.fame-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
   background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

.overlay h3 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.overlay p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Swiper dots */
.swiper-pagination-bullet {
    background: #4B2E2E;
}

/* Mobile */
@media (max-width: 768px) {
    .fame-grid {
        grid-template-columns: 1fr;
    }

    .fame-box {
        height: 300px;
    }
}

/*** testimonial Start ***/
.testimonial-item {
    border: 1px solid var(--bs-primary);
    padding: 20px;
    height: 100%;                 /* full height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Make owl items same height */
.testimonial-carousel .owl-stage {
    display: flex;
}

.testimonial-carousel .owl-item {
    display: flex;
    height: auto;
}

/* Content spacing fix */
.testimonial-content {
    flex-grow: 1;
}

/* Optional: limit text lines for perfect alignment */
.testimonial-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;  /* adjust lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/*** testimonial End ***/

.contact-card {
    background-color: #4B2E2E;
    color: #fff;
    border-radius: 12px;
    padding: 25px;
}

/* Icon circle */
.contact-icon {
    width: 35px;
    height: 35px;
    background-color: rgba(200, 155, 60, 0.15);
    color: #C89B3C;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

/* Text spacing */
.contact-card p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1em;
}

.contact-card h4,
.contact-card h5 {
    color: #fff;
    margin-bottom: 15px;
}

.contact-card hr {
    border-color: rgba(255,255,255,0.2);
}
/*** Contact End ***/


/*** Footer Start ***/
.footer .footer-item a.text-body:hover {
    color:  #2C2C2C!important;
}
/*** Footer End ***/




.best-dishes-section {
    padding: 60px 0;
    
}

.custom-center-btn {
    display: block;
    width: fit-content;
    margin: 30px auto; /* centers + spacing */
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Cards */
.dish-card {
    min-width: 33.33%;
    padding: 10px;
}

.dish-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.dish-content {
    border: 2px solid #C89B3C;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 15px;
    text-align: center;
    background: #FFFFE4;
}

.dish-content h4 {
    margin-bottom: 10px;
    color: #000;
}

.dish-content p {
    font-size: 1em;
    color: #000;
}

/* Dots */
.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.carousel-dots span {
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .active {
    background: #4B2E2E;
}

/* Responsive */
@media (max-width: 992px) {
    .dish-card {
        min-width: 50%;
    }
}

@media (max-width: 576px) {
    .dish-card {
        min-width: 100%;
    }

    .menu-btn {
        position: static;
        margin-top: 10px;
    }
}


.whatsapp-sticky {
  position: fixed;
  right: 15px;
  bottom: 25px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 99999; /* increased */
  transition: all 0.3s ease;
}

/* Icon */
.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Hover */
.whatsapp-sticky:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

/* 📱 Mobile Fix */
@media (max-width: 768px) {
  .whatsapp-sticky {
    width: 55px;
    height: 55px;
    right: 15px;
    bottom: 80px; /* avoid overlap with footer/nav */
  }
}

/* 📲 Small Mobile */
@media (max-width: 480px) {
  .whatsapp-sticky {
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 70px; /* FIXED (was too low/hidden) */
  }
}

#slider {
  position: relative;
  width: 50%;
  height: 32vw;
  margin: 150px auto;
  font-family: 'Helvetica Neue', sans-serif;
  perspective: 1400px;
  transform-style: preserve-3d;
}

input[type=radio] {
  position: relative;
  top: 108%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: 0 15px 0 0;
  opacity: 0.4;
  transform: translateX(-83px);
  cursor: pointer;
}


input[type=radio]:nth-child(5) {
  margin-right: 0px;
}

input[type=radio]:checked {
  opacity: 1;
}




#slider label,
#slider label img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white;
  font-size: 70px;
  font-weight: bold;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 400ms ease;
}



/* Slider Functionality */

/* Active Slide */
#s1:checked ~ #slide1,
 #s2:checked ~ #slide2,
  #s3:checked ~ #slide3,
   #s4:checked ~ #slide4,
    #s5:checked ~ #slide5 {
  box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
  transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#s1:checked ~ #slide2,
 #s2:checked ~ #slide3,
  #s3:checked ~ #slide4,
   #s4:checked ~ #slide5,
    #s5:checked ~ #slide1 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(20%, 0, -100px);
}


/* Next to Next Slide */
#s1:checked ~ #slide3,
 #s2:checked ~ #slide4,
  #s3:checked ~ #slide5,
   #s4:checked ~ #slide1,
    #s5:checked ~ #slide2 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(40%, 0, -250px);
}

/* Previous to Previous Slide */
#s1:checked ~ #slide4,
 #s2:checked ~ #slide5,
  #s3:checked ~ #slide1,
   #s4:checked ~ #slide2,
    #s5:checked ~ #slide3 {
  box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
  transform: translate3d(-40%, 0, -250px);
}

/* Previous Slide */
#s1:checked ~ #slide5,
 #s2:checked ~ #slide1,
  #s3:checked ~ #slide2,
   #s4:checked ~ #slide3,
    #s5:checked ~ #slide4 {
  box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
  transform: translate3d(-20%, 0, -100px);
}
/* Section */
.menu-section {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 60px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(75, 46, 46, 0.18);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}



/*** Events Start ***/
.event .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7);
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.event .event-img:hover .event-overlay {
    opacity: 1;
}
/*** Events End ***/
.origin-section {
  background-color: #F5E6C8;
  padding: 80px 20px;

}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
}



/* Row */
.origin-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Left Content */
.origin-text {
  flex: 1;
}

.origin-text p {
  font-size: 1em;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Right Image */
.origin-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.origin-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Founder Text */
.founder-name {
  margin-top: 20px;
}

.founder-name h3 {
  color: #a35c2a;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.founder-name span {
  color: #caa56a;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 32px;
  }

  .origin-row {
    flex-direction: column;
    text-align: center;
  }

  .origin-text {
    order: 2;
  }

  .origin-image {
    order: 1;
  }
}

/* Menu Tabs (single-line + horizontal scroll) */
.menu-tabs-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px; /* keep focus ring visible */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge Legacy */
}

.menu-tabs::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.menu-tabs-arrow {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(75, 46, 46, 0.18);
    background: #F5E6C8;
    color: #4B2E2E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.15s ease, opacity 0.15s ease;
    user-select: none;
}

.menu-tabs-arrow:hover {
    transform: translateY(-1px);
}

.menu-tabs-arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.menu-tab {
    padding: 12px 10px;
    text-align: center;
    font-weight: 600;
    font-size: .9em;
    cursor: pointer;
    color: #555;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    flex: 0 0 auto;
    white-space: nowrap;
}

/* Hover */
.menu-tab:hover {
    background: #4B2E2E;
    color: #fff;
}

/* Active */
.menu-tab.active {
    background: #4B2E2E;
    color: #fff;
    border-color: #4B2E2E;
}

/* Remove old underline style */
.menu-tab.active::after {
    display: none;
}

/* Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
    font-size: .9em;
}

/* Categories (show one at a time) */
.menu-section .menu-category {
    display: none;
}

.menu-section .menu-category.active {
    display: block;
}

.menu-empty {
    padding: 24px 16px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 10px;
}

/* Menu Cards (design like provided image) */
.menu-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 24px 18px 18px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.menu-card-price {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #4B2E2E;
    color: #fff;
    font-weight: 700;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 999px;
}

.menu-card-img-wrap {
    width: 156px;
    height: 156px;
    border-radius: 999px;
    background: #fff;
    padding: 10px;
    border: 5px solid #f57c1f;
    margin: 10px auto 14px;
    
}

.menu-card-img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}

.menu-card-title {
    font-weight: 800;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
}

/* Mobile grid */
@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* Item */
.menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

/* Hover effect */
.menu-item:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Image */
.menu-item img {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    object-fit: cover;
}

/* Info */
.menu-info {
    flex: 1;
}

/* Title */
.menu-title {
    display: flex;
    justify-content: space-between;
    font-size: 1.2em;
    font-weight: 600;
}

/* Price */
.menu-price {
    color: #f39c12;
    font-weight: 700;
}
.text-content {
    max-height: 200px;   /* show only little content */
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

/* Gradient fade effect */
.text-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    
}

/* Expanded state */
.text-content.active {
    max-height: 1500px;
}

.text-content.active::after {
    display: none;
}

/* Button style */
.read-more-btn {
    margin-top: 10px;
    background: #4B2E2E;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}


.faq-section {
  padding: 60px 20px;
  
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 600;
}

.faq-item {
    background: #f9f9f9;
  max-width: 800px;
  margin: 10px auto;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #d35400;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #555;
}

.icon {
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}
