@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --coffee-brown: #e6d5c3;
  --dark-brown: #a86e51;
  --cream: #f8f5f2;
  --warm-beige: #482e11;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-brown);
  background-color: var(--cream);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

h1,h3, h4 {
  font-family: "Poppins", sans-serif;
  color: var(--coffee-brown);
  font-weight: 600;
}
h2 {
  font-family: "Poppins", sans-serif;
  color: var(--dark-brown);
}
h4 {
  font-family: "Poppins", sans-serif;
  color: var(--warm-beige);
}
.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: "Poppins", sans-serif;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: #F7B980;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right top;
     object-position: right top;
}

.header_section {
  padding: 20px 0;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: #ffffff;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link, .custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: #F7B980;
  white-space: nowrap;
}
.address-link {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.address-link:hover {
  color: #a86e51;        /* Your custom warm orange-brown */
  text-decoration: none;
  cursor: pointer;
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 10px;
}

.custom_nav-container .nav_search-btn:hover {
  color: #F7B980;
}

.user_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user_option a {
  margin: 0 10px;
}

.user_option .user_link {
  color: #ffffff;
}

.user_option .user_link:hover {
  color: #F7B980;
}

.user_option .cart_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user_option .cart_link svg {
  width: 17px;
  height: auto;
  fill: #ffffff;
  margin-bottom: 2px;
}

.user_option .cart_link:hover svg {
  fill: #F7B980;
}

.user_option .order_online {
  display: inline-flex;
  align-items: center;
  justify-content: center;
   margin-right: 20px;

  padding: 10px 20px;
  background-color: #F7B980;
  color: #ffffff;

  border-radius: 45px;
  font-weight: 600;
  font-size: 15px;

  white-space: nowrap;      /* 🔒 force single line */


  text-decoration: none;
  border: none;
  transition: all 0.3s ease;
}

.user_option .order_online:hover {
  background-color: #ED985F;
  color: #ffffff;
}
.user_option {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;   /* 🔒 stops wrapping */
}


.user_option .order_online:hover {
  background-color: #ED985F;
  color: #ffffff;
}


.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before, .custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before, .custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 145px;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.slider_section .detail-box p {
  font-size: 14px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #F7B980;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
}

.slider_section .detail-box a:hover {
  background-color:#F7B980;
}

.slider_section .img-box img {
  width: 100%;
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: #F7B980;
}


/* Ensure height */
#customCarousel1 .carousel-item {
  min-height: 100vh;
}

.offer_section {
  position: relative;
  padding-top: 45px;
}

.offer_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 45px;
  border-radius: 5px;
  padding: 20px 15px;
  background-color: #482e11;
  color: #ffffff;
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  margin-right: 15px;
  position: relative;
  -webkit-transition: all 0.1 0.5s;
  transition: all 0.1 0.5s;
  border-radius: 100%;
  border: 5px solid #F7B980;
  overflow: hidden;
}

.offer_section .box .img-box img {
  width: 100%;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.offer_section .box .detail-box h5 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  margin: 0;
}

.offer_section .box .detail-box h6 {
  font-family: "Poppins", sans-serif;
  margin: 10px 0;
}

.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: bold;
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: #F7B980;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.offer_section .box .detail-box a:hover {
  background-color: #ED985F;
}

.offer_section .box .detail-box a svg {
  width: 20px;
  height: auto;
  margin-left: 5px;
  fill: #ffffff;
}

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

.food_section .filters_menu {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 7px 25px;
  cursor: pointer;
  border-radius: 25px;
}

.food_section .filters_menu li.active {
  background-color: #482e11;
  color: #ffffff;
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, #482e11 25px);
}

.food_section .box .img-box {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}

.food_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.food_section .box .detail-box {
  padding: 25px;
}

.food_section .box .detail-box h5 {
  font-weight: 600;
}

.food_section .box .detail-box p {
  font-size: 15px;
}

.food_section .box .detail-box h6 {
  margin-top: 10px;
}

.food_section .box .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #F7B980;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

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

.food_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 10px 55px;
  background-color: #482e11;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.food_section .btn-box a:hover {
  background-color: #ED985F;
}

.about_section {
  background: #4b2e1f;
  color: #ffffff;
}
.navbar-brand .logo {
  height: 140px;
  width: 180px;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #F7B980;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.about_section .detail-box a:hover {
  background-color: #ED985F;
}

.book_section {
  position: relative;
}

.book_section .heading_container {
  margin-bottom: 25px;
}

.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #999;
  outline: none;
  color: #4b2e1f;
  border-radius: 5px;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.book_section .form_container .form-control::-webkit-input-placeholder {
  color: #222222;
}

.book_section .form_container .form-control:-ms-input-placeholder {
  color: #222222;
}

.book_section .form_container .form-control::-ms-input-placeholder {
  color: #222222;
}

.book_section .form_container .form-control::placeholder {
  color: #222222;
}

.book_section .form_container .nice-select .current {
  font-size: 16px;
}

.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #482e11;
  color: #ffffff;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.book_section .form_container button:hover {
  background-color: #ED985F;
}

.book_section .map_container {
  width: 100%;
  height: 345px;
  border-radius: 10px;
  overflow: hidden;
}

.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* MODERN TESTIMONIAL SECTION */

.modern-testimonial {
  background: #fdf7f2;
  padding: 90px 0;
}

.modern-testimonial h2 {
  font-size: 42px;
  font-weight: 600;
  color: #a56b45;
}

.modern-testimonial .sub-title {
  color: #7a5232;
  margin-top: 10px;
  font-size: 16px;
}

/* Card */
.testimonial-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  text-align: center;
  transition: all 0.35s ease;
  min-height: 280px;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.18);
}

/* Quote */
.testimonial-card .quote {
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 60px;
  color: #f7b980;
  opacity: 0.35;
  font-family: serif;
}

/* Review */
.testimonial-card .review {
  font-size: 16px;
  line-height: 1.9;
  color: #5a3a22;
  margin-bottom: 25px;
}

/* Stars */
.testimonial-card .stars {
  color: #f7b980;
  font-size: 18px;
  margin-bottom: 12px;
}

/* Name */
.testimonial-card .name {
  font-size: 18px;
  font-weight: 600;
  color: #482e11;
}

/* Role */
.testimonial-card .role {
  font-size: 14px;
  color: #a56b45;
}

/* Owl dots */
.testimonial-carousel .owl-dots {
  margin-top: 45px;
}

.testimonial-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: #d6b08a;
}

.testimonial-carousel .owl-dot.active span {
  background: #482e11;
}


/* client section end */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 50px;
  padding-left: 25px;
  background-color: transparent;
  border: 1px solid #ccc;
  outline: none;
  color: #000000;
  border-radius: 5px;
}

.contact_section .form_container input::-webkit-input-placeholder {
  color: #222222;
}

.contact_section .form_container input:-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::-ms-input-placeholder {
  color: #222222;
}

.contact_section .form_container input::placeholder {
  color: #222222;
}

.contact_section .form_container input.message-box {
  height: 120px;
  border-radius: 5px;
}

.contact_section .form_container .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 55px;
  background-color: #F7B980;
  color: #ffffff;
  border-radius: 0px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
}

.contact_section .form_container button:hover {
  background-color: #ED985F;
}
/* Gallery Section */
.gallery_section {
    background: #f8f5f2;
    padding: 90px 0;
}

.gallery_slider {
    position: relative;
    max-width: 800px;
    margin: 50px auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gallery-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 400px;
}

.gallery-slide {
    min-width: 100%;
    height: 400px;
    position: relative;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-prev, .gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247,185,128,0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-prev:hover, .gallery-next:hover {
    background: #F7B980;
    transform: translateY(-50%) scale(1.1);
}

.gallery-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active, .dot:hover {
    background-color: #F7B980;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-container, .gallery-slide {
        height: 250px;
    }
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* MODERN FOOTER */

.modern-footer {
  background: #2b1b0f;
  color: #f5f5f5;
  padding: 70px 0 30px;
}

.modern-footer h4 {
  color: #f7b980;
  margin-bottom: 20px;
  font-size: 20px;
}

.modern-footer p,
.modern-footer a {
  font-size: 15px;
  color: #ddd;
}

.modern-footer i {
  color: #f7b980;
  margin-right: 8px;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f7b980;
  padding-left: 5px;
}

/* Buttons */
.footer-btn {
  display: block;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 25px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
}

.call-btn {
  background: #f7b980;
  color: #2b1b0f;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.footer-btn:hover {
  opacity: 0.9;
}

/* Social icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b2616;
  border-radius: 50%;
  margin-right: 8px;
  color: #f7b980;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #f7b980;
  color: #2b1b0f;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}
/* Page Header Banner */
.page-header {
  
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  color: #fff;
}
.order-card {
  background: #fffaf6;
  padding: 35px 25px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.order-card:hover {
  transform: translateY(-8px);
}

/* icons */
.order-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

/* brand colors */
.swiggy-icon {
  color: #fc8019;
}

.zomato-icon {
  color: #e23744;
}

.whatsapp-icon {
  color: #25d366;
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid #d8b58a;
  color: #2f1b12;
}

.contact-form .form-control::placeholder {
  color: #6b4a3a;
}

.section-title h4 {
  color: #4b2e1f;
}

.section-title h1 {
  color: #2f1b12;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  color: #f7b980;
}

/*# sourceMappingURL=style.css.map */
/* GLOBAL btn1 style (works everywhere) */
a.btn1,
button.btn1 {
  display: inline-block;
  padding: 12px 32px;
  background-color: #a37056;
  color: #f8f5f2 !important;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  text-decoration: none !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

a.btn1:hover,
button.btn1:hover {
  background-color: #8c5d46;
  transform: translateY(-2px);
}

/* Contact form wrapper */
.contact-form {
  background: #fffaf6;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* Inputs & textarea */
.contact-input {
  background-color: #fff;
  border: 1px solid #e0c2ae;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  color: #2f1b12;
  transition: all 0.3s ease;
}

/* Placeholder color */
.contact-input::placeholder {
  color: #8b6b5a;
}

/* Focus effect */
.contact-input:focus {
  border-color: #a37056;
  box-shadow: 0 0 0 3px rgba(163, 112, 86, 0.15);
  outline: none;
}

/* Remove ugly default browser styles */
.contact-form textarea {
  resize: none;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
#logo-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #f8f3ee 0%, #e8e2d9 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#logo-loader img {
    width: 140px;
    animation: pulse 1.5s ease-in-out infinite both;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}


/* text */
#logo-loader p {
  margin-top: 15px;
  font-size: 15px;
  color: #2f1b12;
  letter-spacing: 1px;
  font-weight: 600;
}

/* keyframes */
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Popup background */
#catering-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  justify-content: flex-end;
  padding: 20px;
}

/* Card */
.catering-card {
  background: #fffaf6;
  padding: 35px 30px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
}

/* Heading */
.catering-card h3 {
  color: #2f1b12;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Text */
.catering-card p {
  color: #6b4a3a;
  font-size: 15px;
  margin-bottom: 25px;
}

/* Close button */
.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #a37056;
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.menu-empty-wrapper {
    min-height: calc(100vh - 260px); /* adjusts for header + footer */
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-empty-state {
    text-align: center;
    max-width: 500px;
}

.menu-empty-state h3 {
    font-weight: 600;
    margin-bottom: 12px;
}

.menu-empty-state p {
    opacity: 0.7;
    font-size: 15px;
    line-height: 1.6;
}
.offer-empty-wrapper {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-empty-state {
    text-align: center;
}

.offer-empty-state h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-empty-state p {
    opacity: 0.7;
    font-size: 15px;
}
