/*----------------------------------------------------------------------------------- 

Template Name: Bistly - Restaurant & Cafe HTML Template
URI: pixelfit.agency
Description: Bistly is a clean, modern, and fully responsive HTML template designed specifically for restaurants, cafes, bakeries, coffee shops, and food-related businesses. Crafted with attention to detail and built using the latest web technologies, Bistly ensures an exceptional user experience on all devices.
Author: Pixelfit
Author URI: https://themeforest.net/user/pixelfit
Version: 1.0 


------------------------------------------------------
   CSS INDEX
-----------------------------------------------------

    # Common CSS
    # Hero Section CSS
    # About Section CSS
    # Enjoy Food Section CSS
    # Food CSS
    # Gallery Section CSS
    # Testimonial Section CSS
    # Team Section CSS
    # Booking Section CSS
    # Opening Time Section CSS
    # Blog Section CSS
    # Instagram Section CSS

-------------------------------------------------------    */

/* Menu Hover Image Preview */
.menu-hover-preview {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
              0 0 0 2px rgba(212, 175, 55, 0.3),
              0 0 30px rgba(212, 175, 55, 0.2);
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border: 3px solid rgba(212, 175, 55, 0.6);
}

.menu-hover-preview.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.menu-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu-hover-preview.active img {
  animation: imageReveal 0.4s ease;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Add cursor pointer and subtle animation to hoverable items */
.hoverable-menu-item {
  cursor: pointer;
  position: relative;
}

.hoverable-menu-item::after {
  content: '👁️';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  font-size: 20px;
  transition: opacity 0.3s ease;
}

.hoverable-menu-item:hover::after {
  opacity: 0.6;
}

/* Mobile menu items hover styling */
.menu-item-mobile {
  padding: 15px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item-mobile.hoverable-menu-item {
  cursor: pointer;
}

.menu-item-mobile.hoverable-menu-item:active,
.menu-item-mobile.hoverable-menu-item:hover {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border-color: rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
}

/* Adjust preview for mobile/tablet */
@media (max-width: 991.98px) {
  .menu-hover-preview {
    width: 200px;
    height: 200px;
  }
  
  .hoverable-menu-item::after {
    font-size: 16px;
    right: 10px;
  }
}

/* Hide eye icon on very small screens */
@media (max-width: 575.98px) {
  .hoverable-menu-item::after {
    display: none;
  }
}

/* Common CSS */
@media (max-width: 1650px) {
  h2 {
    font-size: 52px;
    line-height: 65px;
  }
}

@media (max-width: 767.98px) {
  h2 {
    font-size: 28px;
    line-height: 45px;
  }
}

/* Hero Section */
.rs-hero {
  position: relative;
  z-index: 1;
  padding: 120px 0 110px;
  background-color: var(--primary-black-color);
}

.rs-hero .hero-image {
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 1199.98px) {
  .rs-hero .hero-image {
    display: none;
  }
}

.rs-hero .hero-image img {
  border-radius: 400px 400px 0px 0px;
}

.rs-hero .hero-image.image_one {
  top: 20%;
  left: 100px;
}

@media (max-width: 1650px) {
  .rs-hero .hero-image.image_one {
    /* max-width: 380px; */
    max-width: 100%;
    left: 30px;
  }
}

.rs-hero .hero-image.image_two {
  position: absolute;
  bottom: 0;
  right: 100px;
}

@media (max-width: 1650px) {
  .rs-hero .hero-image.image_two {
    max-width: 100%;
    right: 30px;
  }
}

.hero-content .sub-head {
  margin-bottom: 40px;
}

.hero-content h1 {
  color: var(--white-color);
  margin-bottom: 15px;
}

@media screen and (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 50px;
    line-height: 65px;
  }
}

.hero-content p {
  color: var(--white-color);
  font-size: 22px;
  line-height: 35px;
  margin-bottom: 30px;
}

.hero-content .bistly-button .theme-btn.style-one:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.bistly-counter-item .content h2 {
  color: var(--white-color);
  font-size: 47px;
  line-height: 1;
}

.bistly-counter-item .content h2 i {
  font-size: 24px;
  color: #FF9F1A;
  vertical-align: super;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
}

/* About Section */
.rs-about .shape {
  position: absolute;
  z-index: -1;
}

.rs-about .shape img {
  opacity: 0.1;
}

.rs-about .shape.shape-one {
  right: 60px;
  top: 250px;
}

.rs-about .shape.shape-two {
  right: 43%;
  bottom: 160px;
}

.rs-about .big-text {
  position: absolute;
  top: 37%;
  left: 37%;
  font-size: 96px;
  font-family: var(--heading-font);
  line-height: 1;
  text-align: right;
  z-index: 2;
}

@media screen and (max-width: 991.98px) {
  .rs-about .big-text {
    position: relative;
    top: auto;
    left: auto;
    text-align: left;
    margin: 0 40px 50px;
  }
}

@media screen and (max-width: 991.98px) and (max-width: 767.98px) {
  .rs-about .big-text {
    font-size: 42px;
  }
}

.rs-about .bistly-image.image-two img {
  border-radius: 200px 200px 0px 0px;
}

.image-radius img {
  border-radius: 200px 200px 0px 0px;
}

/* Enjoy Food Section */
.rs-enjoy-food {
  position: relative;
  z-index: 1;
  background-color: var(--primary-black-color);
}

.rs-enjoy-food .shape {
  position: absolute;
  z-index: -1;
}

.rs-enjoy-food .shape img {
  opacity: 0.1;
}

.rs-enjoy-food .shape.shape-one {
  top: 100px;
  left: 33%;
}

.rs-enjoy-food .shape.shape-two {
  bottom: 180px;
  left: 110px;
}

.rs-enjoy-food .bistly-image-box.image-box-one {
  -webkit-margin-start: -80px;
  margin-inline-start: -80px;
}

@media screen and (max-width: 1199.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-one {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}

.rs-enjoy-food .bistly-image-box.image-box-two {
  -webkit-margin-end: -200px;
  margin-inline-end: -200px;
}

@media (max-width: 1650px) {
  .rs-enjoy-food .bistly-image-box.image-box-two {
    -webkit-margin-end: -120px;
    margin-inline-end: -120px;
  }
}

@media (max-width: 1399.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-two {
    -webkit-margin-end: -90px;
    margin-inline-end: -90px;
  }
}

@media screen and (max-width: 1199.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-two {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.rs-enjoy-food .bistly-content-box {
  padding: 0 45px;
}

@media screen and (max-width: 991.98px) {
  .rs-enjoy-food .bistly-content-box {
    padding: 0 50px;
  }
}

@media (max-width: 767.98px) {
  .rs-enjoy-food .bistly-content-box {
    padding: 0;
  }
}

.rs-enjoy-food .bistly-content-box p {
  font-size: 20px;
  line-height: 35px;
}

.rs-enjoy-food .bistly-content-box .theme-btn.style-one:hover {
  background-color: var(--white-color);
  color: var(--primary-black-color);
}

/* Food Section */
.rs-food-menu {
  background-color: #354B4A;
}

.bistly-food-item {
  position: relative;
  text-align: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bistly-food-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bistly-food-item .hover-image {
  -webkit-transition: opacity 0.3s, 1, 0.32, 1, -webkit-transform 0.7scubic-bezier 0.23;
  transition: opacity 0.3s, 1, 0.32, 1, -webkit-transform 0.7scubic-bezier 0.23;
  transition: opacity 0.3s, transform 0.7scubic-bezier 0.23, 1, 0.32, 1;
  transition: opacity 0.3s, transform 0.7scubic-bezier 0.23, 1, 0.32, 1, -webkit-transform 0.7scubic-bezier 0.23;
  position: absolute;
  width: 250px;
  height: 340px;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 20px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media screen and (max-width: 991.98px) {
  .bistly-food-item .hover-image {
    display: none;
  }
}

.bistly-food-item .content h2 {
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 767.98px) {
  .bistly-food-item .content h2 {
    font-size: 60px;
  }
}

.bistly-food-item .content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
  line-height: 35px;
}

.bistly-food-item:hover .content h2 {
  color: var(--white-color);
}

.bistly-food-item:hover .content p {
  color: var(--white-color);
}

.bistly-food-item:hover .hover-image {
  visibility: visible;
  opacity: 1;
}

/* Gallery Section */
.rs-gallery {
  margin-bottom: -155px;
  padding: 0 15px;
}

@media screen and (max-width: 991.98px) {
  .rs-gallery {
    padding: 0;
  }
}

.gallery-slider {
  margin-left: -15px;
  margin-right: -15px;
}

@media screen and (max-width: 991.98px) {
  .gallery-slider {
    margin-left: -12px;
    margin-right: -12px;
  }
}

.gallery-slider .bistly-gallery-item {
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 991.98px) {
  .gallery-slider .bistly-gallery-item {
    margin-left: 12px;
    margin-right: 12px;
  }
}

/* Testimonial Section */
.rs-testimonial {
  padding-top: 180px;
  background-color: var(--primary-black-color);
}

.testimonial-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 50px;
  color: var(--primary-color);
  cursor: pointer;
}

.testimonial-slider .slick-arrow.next {
  right: -15%;
}

@media screen and (max-width: 1199.98px) {
  .testimonial-slider .slick-arrow.next {
    right: -10%;
  }
}

.testimonial-slider .slick-arrow.prev {
  left: -15%;
}

@media screen and (max-width: 1199.98px) {
  .testimonial-slider .slick-arrow.prev {
    left: -10%;
  }
}

.bistly-testimonial-item {
  text-align: center;
}

.bistly-testimonial-item .testimonial-content .ratings i {
  color: var(--rating-color);
}

.bistly-testimonial-item .testimonial-content p {
  font-size: 32px;
  line-height: 50px;
  color: var(--white-color);
  font-family: var(--heading-font);
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .bistly-testimonial-item .testimonial-content p {
    font-size: 20px;
    line-height: 30px;
  }
}

.bistly-testimonial-item .testimonial-content span {
  color: var(--white-color);
}

/* Team Section */
.rs-team-item .member-image img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.rs-team-item:hover .member-image img {
  border-radius: 300px 300px 0px 0px;
}

/* Booking Section */
.rs-booking:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #091D1C;
  z-index: -1;
}

/*  Time Section */
.rs-time-sec {
  background-color: var(--primary-black-color);
}

.rs-time-sec .bistly-content-box p {
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}

.rs-time-sec .map-box iframe {
  height: 325px;
}

.rs-time-sec .opening-time-box {
  padding: 40px 50px 45px;
  -webkit-margin-start: 70px;
  margin-inline-start: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 1199.98px) {
  .rs-time-sec .opening-time-box {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}

.rs-time-sec .opening-time-box h3 {
  color: var(--white-color);
  margin-bottom: 35px;
}

.rs-time-sec .opening-time-box ul li {
  color: var(--white-color);
}

.rs-time-sec .opening-time-box ul li span {
  float: right;
}

.rs-time-sec .opening-time-box ul li .close {
  color: var(--primary-color);
}

.rs-time-sec .opening-time-box ul li:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Blog Section */
.bistly-blog-post {
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bistly-blog-post:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.bistly-blog-post .post-thumbnail {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 15px 15px 0 0;
}

.bistly-blog-post .post-thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.bistly-blog-post:hover .post-thumbnail::before {
  opacity: 1;
}

.bistly-blog-post .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.bistly-blog-post:hover .post-thumbnail img {
  transform: scale(1.1);
}

.bistly-blog-post .post-content {
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bistly-blog-post .post-content .post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.bistly-blog-post .post-content .post-meta span {
  color: #666;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.bistly-blog-post .post-content .post-meta span:not(:last-child) {
  -webkit-margin-end: 25px;
  margin-inline-end: 25px;
}

.bistly-blog-post .post-content .post-meta span i {
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  color: var(--primary-color);
  font-size: 16px;
}

.bistly-blog-post .post-content h4 {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  transition: color 0.3s ease;
}

.bistly-blog-post .post-content h4 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bistly-blog-post .post-content h4 a:hover {
  color: var(--primary-color);
}

.bistly-blog-post .post-content .blog-excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  /* margin-bottom: 20px; */
  flex: 1;
}

.bistly-blog-post .post-content .read-more.style-one {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.bistly-blog-post .post-content .read-more.style-one:hover {
  color: #1a1a1a;
  transform: translateX(5px);
}

.bistly-blog-post .post-content .read-more.style-one::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.bistly-blog-post .post-content .read-more.style-one:hover::after {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .bistly-blog-post .post-thumbnail {
    height: 220px;
  }
  
  .bistly-blog-post .post-content h4 {
    font-size: 19px;
  }
}

/* Instagram Section */
.bistly-instagram-item:hover .thumbnail .hover-content {
  visibility: visible;
  opacity: 1;
}

.bistly-instagram-item:hover .thumbnail .hover-content .icon {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.bistly-instagram-item .thumbnail {
  position: relative;
  overflow: hidden;
}

.bistly-instagram-item .thumbnail .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(45, 68, 67, 0.502);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.bistly-instagram-item .thumbnail .hover-content .icon {
  color: var(--white-color);
  font-size: 20px;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}


/* Classic Menu Section Styles */
.rs-complete-menu {
  background: linear-gradient(135deg, #1a1611 0%, #2d2118 50%, #1a1611 100%);
  position: relative;
  overflow: hidden;
}

.rs-complete-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="80" cy="40" r="0.3" fill="%23d4af37" opacity="0.1"/><circle cx="40" cy="70" r="0.4" fill="%23d4af37" opacity="0.1"/><circle cx="60" cy="10" r="0.2" fill="%23d4af37" opacity="0.1"/><circle cx="10" cy="60" r="0.3" fill="%23d4af37" opacity="0.1"/><circle cx="90" cy="80" r="0.4" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
  z-index: 1;
}

.rs-complete-menu .container {
  position: relative;
  z-index: 2;
}

/* Classic Menu Cards */
.menu-category-card {
  background: linear-gradient(145deg, #2a2218 0%, #1f1b14 100%);
  border: 2px solid #2e4442;
  border-radius: 20px;
  padding: 40px 25px;
  position: relative;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(212, 175, 55, 0.3),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.menu-category-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  pointer-events: none;
}

.menu-category-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background-size: 400% 400%;
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  animation: gradientShift 3s ease infinite;
  transition: opacity 0.4s ease;
}

.menu-category-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.3);
}

.menu-category-card:hover::after {
  opacity: 1;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Category Headers */
.category-header h3 {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  font-weight: 700;
  color: #2e4442;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 3px;
  position: relative;
  margin-bottom: 15px;
}

.category-header h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.category-header h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #c9b896;
  font-style: italic;
  letter-spacing: 1px;
}

/* Menu Items - Desktop */
.menu-item-small {
  display: flex;
  align-items: center;
  padding: 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.menu-item-small::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.menu-item-small:hover {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(5px);
}

.menu-item-small:hover::before {
  left: 100%;
}

.menu-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.menu-item-small:hover .menu-item-img {
  border-color: #2e4442;
  transform: scale(1.05);
}

.menu-item-content h5 {
  font-family: 'Marcellus', serif;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.menu-item-content p.small {
  color: #c9b896;
  font-size: 13px;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
}

/* Mobile Carousel Styles */
.menu-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
  border: 2px solid #2e4442;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.menu-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.menu-category-slide {
  min-width: 100%;
  padding: 30px 20px;
}

.menu-item-mobile {
  background: linear-gradient(145deg, rgba(124, 124, 123, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.menu-item-mobile:hover {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  transform: translateY(-5px);
}

.menu-item-mobile img {
  border-radius: 15px;
  height: 180px;
  object-fit: cover;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.menu-item-mobile:hover img {
  border-color: #2e4442
}

.menu-item-mobile h5 {
  font-family: 'Marcellus', serif;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 15px 0 10px 0;
  letter-spacing: 1px;
}

.menu-item-mobile p {
  color: #c9b896;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

/* Carousel Navigation */
.carousel-navigation {
  padding: 20px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #2e4442;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dot.active {
  background: #2e4442;
  transform: scale(1.3);
  border-color: rgba(46, 68, 66, 0.5);
  box-shadow: 0 0 20px rgba(46, 68, 66, 0.5);
}

.dot.active::before {
  opacity: 1;
}

/* Text Colors */
.text-primary {
  color: #d4af37 !important;
}

/* Button Styling */
.bistly-button .theme-btn.style-two {
  background: linear-gradient(145deg, #d4af37, #b8941f);
  border: 2px solid #2e4442;
  color: #1a1611;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border-radius: 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bistly-button .theme-btn.style-two::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.bistly-button .theme-btn.style-two:hover {
  background: linear-gradient(145deg, #f4e07a, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.bistly-button .theme-btn.style-two:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .menu-category-card {
    padding: 30px 20px;
  }

  .category-header h3 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .menu-category-slide {
    padding: 20px 15px;
  }

  .menu-item-mobile {
    padding: 20px;
  }

  .menu-item-mobile img {
    height: 150px;
  }

  .category-header h3 {
    font-size: 22px;
  }
}


/* Cooking Class Note Styles */
.cooking-class-note {
  background: linear-gradient(145deg, #fcfcfc 0%, #ffffff 100%);
  border: 3px solid #2D4443;
  border-radius: 20px;
  padding: 30px;
  margin: 0 20px;
  box-shadow: 0 15px 35px rgba(45, 68, 67, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.cooking-class-note:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(45, 68, 67, 0.4);
}

.cooking-class-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(45, 68, 67, 0.1), transparent);
  z-index: 0;
}

.note-container {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.note-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #2D4443 0%, #1a2625 100%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(45, 68, 67, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

.note-icon i {
  font-size: 28px;
  color: #D0965C;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.note-content h4 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2D4443;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.note-content p {
  font-size: 18px;
  color: #2D4443;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cooking-class-note {
    margin: 0 10px;
    padding: 25px 20px;
  }

  .note-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .note-icon {
    width: 60px;
    height: 60px;
  }

  .note-icon i {
    font-size: 24px;
  }

  .note-content h4 {
    font-size: 20px;
  }

  .note-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .note-content h4 {
    font-size: 18px;
  }

  .note-content p {
    font-size: 15px;
  }
}


/* Booking Modal Custom Styles */
#bookingModal .modal-dialog {
  max-width: 600px;
  margin: 1.75rem auto;
}

#bookingModal .modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

#bookingModal .modal-header {
  background: linear-gradient(135deg, #d0965c 0%, #b8843f 100%);
  color: white;
  border: none;
  padding: 25px 30px;
  position: relative;
  overflow: hidden;
}

#bookingModal .modal-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
  }

  100% {
    transform: rotate(360deg) translate(-50%, -50%);
  }
}

#bookingModal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

#bookingModal .btn-close {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

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

#bookingModal .modal-body {
  padding: 30px;
  background: white;
}

#bookingModal .form-group {
  margin-bottom: 20px;
}

#bookingModal label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#bookingModal .form-control,
#bookingModal .form-select {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

#bookingModal .form-control:focus,
#bookingModal .form-select:focus {
  border-color: #d0965c;
  box-shadow: 0 0 0 0.2rem rgba(208, 150, 92, 0.25);
  background: white;
  transform: translateY(-2px);
}

#bookingModal textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

#bookingModal .modal-footer {
  background: #f8f9fa;
  border: none;
  padding: 25px 30px;
  gap: 15px;
  justify-content: center;
}

#bookingModal .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

#bookingModal .btn-secondary {
  background: #6c757d;
  color: white;
}

#bookingModal .btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

#bookingModal .btn-primary {
  background: linear-gradient(135deg, #d0965c 0%, #b8843f 100%);
  color: white;
  font-size: 1rem;
}

#bookingModal .btn-primary:hover {
  background: linear-gradient(135deg, #b8843f 0%, #a0722d 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(208, 150, 92, 0.4);
}

#bookingModal .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

#bookingModal .btn-primary:hover::before {
  left: 100%;
}

/* Form Animation */
#bookingModal .form-group {
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.5s ease forwards;
}

#bookingModal .form-group:nth-child(1) {
  animation-delay: 0.1s;
}

#bookingModal .form-group:nth-child(2) {
  animation-delay: 0.15s;
}

#bookingModal .form-group:nth-child(3) {
  animation-delay: 0.2s;
}

#bookingModal .form-group:nth-child(4) {
  animation-delay: 0.25s;
}

#bookingModal .form-group:nth-child(5) {
  animation-delay: 0.3s;
}

#bookingModal .form-group:nth-child(6) {
  animation-delay: 0.35s;
}

#bookingModal .form-group:nth-child(7) {
  animation-delay: 0.4s;
}

#bookingModal .form-group:nth-child(8) {
  animation-delay: 0.45s;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #bookingModal .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }

  #bookingModal .modal-header,
  #bookingModal .modal-body,
  #bookingModal .modal-footer {
    padding: 20px;
  }

  #bookingModal .modal-title {
    font-size: 1.25rem;
  }

  #bookingModal .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Success Animation */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}

.booking-success .success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  animation: successPulse 1s ease-in-out;
}

@keyframes successPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
  }

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


.booking-feature h5,
.booking-feature p,
.booking-buttons .theme-btn,
.offer-badge {
  color: white !important;
}

.booking-feature .feature-icon i {
  color: #D0965C !important;
}

.img-fu,
.gallery-img img {
  width: 100%;
  height: 690px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-img img {
  height: 100%;
  
}

/* Gallery image height for mobile */
@media (max-width: 991.98px) {
  .gallery-img img {
    height: 520px !important;
  }
}

/* Fix circular image spacing on mobile */
@media (max-width: 991.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-two {
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .rs-enjoy-food .bistly-image-box.image-box-two .bistly-image {
    margin: 0 !important;
    padding: 0 !important;
    text-align: center;
  }

  .rs-enjoy-food .bistly-image-box.image-box-two .bistly-image img {
    width: 250px !important;
    height: 250px !important;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 3px solid #D0965C;
  }
}

@media (max-width: 767.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-two .bistly-image img {
    width: 200px !important;
    height: 200px !important;
  }
}

@media (max-width: 575.98px) {
  .rs-enjoy-food .bistly-image-box.image-box-two .bistly-image img {
    width: 180px !important;
    height: 180px !important;
  }
}

/* ========================================
   Blog Carousel Styles (Mobile)
   ======================================== */
.blog-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 100%);
  border: 2px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.blog-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.blog-carousel-slide {
  min-width: 100%;
  padding: 0 10px;
}

.blog-carousel-slide .bistly-blog-post {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-carousel-slide .bistly-blog-post:hover {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.blog-carousel-slide .post-thumbnail {
  overflow: hidden;
  height: 220px;
}

.blog-carousel-slide .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-carousel-slide .bistly-blog-post:hover .post-thumbnail img {
  transform: scale(1.1);
}

.blog-carousel-slide .post-content {
  padding: 20px;
}

.blog-carousel-slide .post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #c9b896;
}

.blog-carousel-slide .post-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-carousel-slide .post-meta i {
  color: #d4af37;
}

.blog-carousel-slide h4 {
  font-family: 'Marcellus', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-carousel-slide h4 a {
  color: #fff;
  transition: color 0.3s ease;
}

.blog-carousel-slide h4 a:hover {
  color: #d4af37;
}

.blog-carousel-slide .blog-excerpt {
  color: #c9b896;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-carousel-slide .read-more {
  display: inline-block;
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 20px;
}

.blog-carousel-slide .read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  transition: right 0.3s ease;
}

.blog-carousel-slide .read-more:hover {
  color: #f4e07a;
}

.blog-carousel-slide .read-more:hover::after {
  right: -5px;
}

/* Blog Carousel Navigation */
.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.blog-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.blog-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-dot.active {
  background: #d4af37;
  transform: scale(1.3);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.blog-dot.active::before {
  opacity: 1;
}

/* Responsive adjustments for blog carousel */
@media (max-width: 575.98px) {
  .blog-carousel-container {
    padding: 15px;
  }
  
  .blog-carousel-slide {
    padding: 0 5px;
  }
  
  .blog-carousel-slide .post-thumbnail {
    height: 180px;
  }
  
  .blog-carousel-slide .post-content {
    padding: 15px;
  }
  
  .blog-carousel-slide h4 {
    font-size: 16px;
  }
  
  .blog-carousel-slide .blog-excerpt {
    font-size: 13px;
  }
}