/**
* Template Name: Restaurantly - v3.1.0
* Template URL: https://bootstrapmade.com/restaurantly-restaurant-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --main-bg-color: #0c0b09;
  --text-color: #fff;
  --primary-color: #cda45e; /* Change this to your desired primary color */
  --primary-color-hover: #d9ba85; /* Change this to your desired primary color */
  --secondary-color: #fad0c4; /* Another color if needed */
  --border-color: #1a1814;
}

body {
  font-family: "Open Sans", sans-serif;
  background: var(--main-bg-color);
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--main-bg-color);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--primary-color);
}

.back-to-top i {
  font-size: 28px;
  color: var(--primary-color);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--primary-color);
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--primary-color-hover);
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: var(--text-color);
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--primary-color);
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li + li {
  padding-left: 10px;
}

#topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: var(--text-color);
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid var(--primary-color);
  color: var(--text-color);
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: var(--primary-color);
  color: var(--text-color);
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: var(--text-color);
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--primary-color-hover);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--text-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--primary-color);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--text-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: var(--text-color);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--text-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/bg-image.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--primary-color);
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu, #hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid var(--primary-color);
}

#hero .btn-menu:hover, #hero .btn-book:hover {
  background: var(--primary-color);
  color: var(--text-color);
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary-color) 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--text-color);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--primary-color);
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--text-color);
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #1a1814;
}

.section-title {
  padding-bottom: 40px;
}

@media (max-width:400px)
{
  .section-title{
    padding: 20px 0px !important;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title h2::before {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
}
  /* Main menu container styling */
  .menu-container {
    position: relative;
    min-height: 200px;
    transition: all 0.4s ease;
  }
 .menu-container.filtering:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 24, 20, 0.5);
  z-index: 5;
}

/* Redesigned menu card with elegant styling */
.menu-card {
  display: flex;
  background-color: rgba(26, 24, 20, 0.9);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 167, 98, 0.1);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(212, 167, 98, 0.3);
}

/* Image container styling */
.menu-image-container {
  width: 38%;
  overflow: hidden;
  position: relative;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-img {
  transform: scale(1.08);
}

/* Menu details section */
.menu-details {
  width: 62%;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Title and price styling */
.menu-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(212, 167, 98, 0.3);
}

.menu-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Playfair Display", serif;
}

.menu-title:hover {
  color: #d4a762;
}

.menu-price {
  font-size: 20px;
  font-weight: 700;
  color: #d4a762;
  font-family: "Playfair Display", serif;
}

/* Description styling */
.menu-ingredients {
  color: #bbb;
  font-style: italic;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Enhanced "Add to Cart" button */
.add-to-cart-btn {
  background-color: transparent;
  color: #d4a762;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: 1px solid #d4a762;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
}

.add-to-cart-btn:hover {
  background-color: #d4a762;
  color: #1a1814;
  transform: translateY(-2px);
}

.add-to-cart-btn.adding {
  background-color: #d4a762;
  color: #1a1814;
  pointer-events: none;
}

.add-to-cart-btn:focus {
  outline: none;
}

/* Filter menu styling */
#menu-flters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0;
}

#menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin: 0 6px 12px;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
  border: 1px solid rgba(212, 167, 98, 0.3);
}

#menu-flters li:hover, #menu-flters li.filter-active {
  color: #1a1814;
  background: #d4a762;
  border-color: #d4a762;
}

/* Message styling */
.no-products, .error-message {
  text-align: center;
  padding: 60px 20px;
  color: #d4a762;
  font-size: 20px;
  font-weight: 500;
  font-family: "Playfair Display", serif;
}

.error-message {
  color: #f14848;
}

/* Section title styling */
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #d4a762;
  font-family: "Playfair Display", serif;
}

.section-title p {
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .menu-title, .menu-price {
    font-size: 18px;
  }
  
  .menu-ingredients {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .menu-card {
    flex-direction: column;
  }
  
  .menu-image-container, .menu-details {
    width: 100%;
  }
  
  .menu-image-container {
    height: 220px;
  }
  
  .add-to-cart-btn {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  #menu-flters li {
    padding: 10px 18px;
    font-size: 15px;
    margin: 0 4px 10px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .section-title p {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .menu-title, .menu-price {
    font-size: 16px;
  }
  
  .menu-details {
    padding: 20px;
  }
  
  .add-to-cart-btn {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .section-title p {
    font-size: 26px;
  }


}




/* 
===============================checkout pagee ===============================================

 /* Responsive Cart and Checkout Page Styles */
 .containerr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.cart {
  flex: 1;
  min-width: 500px;
  background-color: #0c0b09;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  overflow-x: auto;
}

.cart h1 {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  color: #D3AF71;
  margin-bottom: 10px;
}

.cart-button {
  border: 1px solid #D3AF71;
  border-radius: 50px;
  margin-top: 50px;
  padding: 10px;
  width: 180px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cart-button:hover {
  background-color: rgb(184, 145, 79);
}

.cart table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

/* .cart thead {
  background-color: #f1f1f1;
} */

.cart th,
.cart td {
  padding: 20px 14px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.cart img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart input {
  width: 50%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #D3AF71;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #fff;
  background: transparent;
  text-align: center;
}

.checkout {
  flex: 0 0 420px;
  background-color: #0C0B09;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  color: #fff;
}

.checkout h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: bold;
}

.checkout p {
  margin-bottom: 10px;
  font-family: monospace;
}

.checkout input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #D3AF71;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #fff;
  background: transparent;
}

.checkout input:focus {
  outline: none;
  border-color: #D3AF71;
}

.checkout-button {
  width: 100%;
  padding: 15px;
  background-color: #D3AF71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-button:hover {
  background-color: rgb(184, 145, 79);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .containerr {
      flex-direction: column;
      padding: 10px;
  }

  .cart,
  .checkout {
      min-width: 100%;
      width: 100%;
      margin-bottom: 15px;
      padding: 15px;
  }

  .cart table {
      font-size: 14px;
  }

  .cart img {
      width: 50px;
      height: 50px;
  }

  .checkout input {
      padding: 10px;
      font-size: 14px;
  }

  .checkout-button {
      padding: 12px;
  }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
  .containerr {
      padding: 15px;
  }

  .cart {
      min-width: 100%;
  }

  .checkout {
      flex: 1;
      min-width: 300px;
  }
}

/* ==================================end checkout page ====================================== */


/*--------------------------------------------------------------
# cart


/* Advanced Cart Styling for Mughlaai Restaurant */

/* Cart Icon Enhancement */
.cart-icon {
  font-size: 24px;
  color: #fff112;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cart-icon:hover {
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(255, 241, 18, 0.5);
}

.cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #fff112;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Cart Sidebar Enhanced */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100vh;
  background: #0c0c0c;
  color: #fff;
  border-left: 1px solid #333;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.cart-sidebar.open {
  right: 0;
}
 #cart-sidebar {
    position: fixed;
    z-index: 9999;
  }

  #cart-sidebar.open {
    transform: translateX(0);
  }

  .cart-sidebar:not(.open) {
    transform: translateX(100%);
  }
/* Cart Header */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #333;
  background: linear-gradient(to right, #0c0c0c, #141414);
}

.cart-header h4 {
  color: #fff112 !important;
  font-weight: bold !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 24px !important;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#close-cart {
  color: #fff;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#close-cart:hover {
  transform: rotate(90deg);
  color: #fff112;
  background: rgba(255, 255, 255, 0.05);
}

/* Cart Items Container */
.cart-items {
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #fff112 #1e1e1e;
}

.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: #1e1e1e;
}

.cart-items::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 6px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background-color: #fff112;
}

/* Cart Item Styling */
.cart-list {
  list-style: none;
  padding: 0 15px;
  margin: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  background: #141414;
  transition: all 0.3s ease;
  border: 1px solid #222;
  position: relative;
}

.cart-item:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-color: #333;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #333;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cart-item:hover .cart-item-img {
  transform: scale(1.05);
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-name {
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin: 0 0 5px 0 !important;
  font-family: 'Playfair Display', serif !important;
}

.cart-item-price {
  color: #fff112 !important;
  font-weight: 500 !important;
  font-size: 15px !important;
  margin: 0 !important;
  font-family: 'Poppins', sans-serif !important;
}

.remove-item {
  color: #ff4d4d;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.remove-item:hover {
  color: #ff1a1a;
  background: rgba(255, 26, 26, 0.1);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

/* Cart Footer */
.cart-footer {
  border-top: 1px solid #333;
  padding: 20px;
  background: linear-gradient(to top, #0c0c0c, #141414);
  position: sticky;
  bottom: 0;
}

.cart-total {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
}

.cart-total span {
  color: #fff112;
  font-weight: bold;
  font-size: 20px;
}

.checkout-btn {
  width: 100%;
  padding: 14px;
  background: #fff112;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(255, 241, 18, 0.3);
}

.checkout-btn::after {
  content: "→";
  font-size: 20px;
  transition: transform 0.3s;
}

.checkout-btn:hover {
  background: #e6d800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 241, 18, 0.4);
}

.checkout-btn:hover::after {
  transform: translateX(5px);
}

.checkout-btn:active {
  transform: translateY(-1px);
}

/* Empty Cart Styling */
.cart-empty-message {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-style: italic;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
}

.cart-empty-message::before {
  content: "🛒";
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.cart-empty-message::after {
  content: "Browse our menu to add delicious items";
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* Toast Notifications */
.toastify {
  background: #0c0c0c;
  border: 1px solid #fff112;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.toastify.success {
  border-left: 4px solid #28a745;
}

.toastify.error {
  border-left: 4px solid #dc3545;
}



/* Animation for adding items */
@keyframes itemAdded {
  0% { opacity: 0; transform: translateX(20px); }
  100% { opacity: 1; transform: translateX(0); }
}

.cart-item {
  animation: itemAdded 0.3s ease-out forwards;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .cart-icon {
    display: inline-flex !important;
    font-size: 22px;
  }
  
  .cart-sidebar {
    width: 300px;
  }
  
  .cart-item {
    padding: 12px;
  }
  
  .cart-item-img {
    width: 50px;
    height: 50px;
  }
}

/* Mobile optimization */
@media (max-width: 576px) {
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .cart-header h4 {
    font-size: 20px !important;
  }
  
  .checkout-btn {
    padding: 12px;
  }
}
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/about-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: .5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid var(--primary-color);
  border-top: 5px solid var(--primary-color);
  transition: .5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid var(--primary-color);
  border-bottom: 5px solid var(--primary-color);
  transition: .5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  background: #1a1814;
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: var(--primary-color);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: var(--text-color);
}




/*--------------------------------------------------------------
# checkout page 


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


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--text-color);
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: var(--primary-color);
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................"
 "...................................................................."
 "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--primary-color);
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}




 /* Cart and Checkout Styles */
 .containerr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 70px;
}

.cart {
  flex: 1;
  min-width: 500px;
  background-color: #0c0b09;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  overflow-x: auto;
}

.cart h1 {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  color: #D3AF71;
  margin-bottom: 10px;
}

.cart-button {
  border: 1px solid #D3AF71;
  border-radius: 50px;
  margin-top: 50px;
  padding: 10px;
  width: 180px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #D3AF71;
  background: transparent;
}

.cart-button:hover {
  background-color: rgba(211, 175, 113, 0.2);
}

.cart table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.cart th,
.cart td {
  padding: 20px 14px;
  text-align: left;
  border-bottom: 1px solid #2a2926;
  color: #fff;
}

.cart img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart input {
  width: 50%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #D3AF71;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #fff;
  background: transparent;
  text-align: center;
}

.checkout {
  flex: 0 0 420px;
  background-color: #0C0B09;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 25px;
  color: #fff;
}

.checkout h3 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #D3AF71;
}

.checkout p {
  margin-bottom: 10px;
  font-family: monospace;
  color: #a8a6a1;
}

.checkout input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #D3AF71;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  color: #fff;
  background: transparent;
}

.checkout-button {
  width: 100%;
  padding: 15px;
  background-color: #D3AF71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkout-button:hover {
  background-color: #b88f4f;
}

/* Loader Styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 11, 9, 0.97);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fancy-loader {
  text-align: center;
}

.loader-spin {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid rgba(211, 175, 113, 0.3);
  border-radius: 50%;
  border-top-color: #D3AF71;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.fancy-loader p {
  color: #D3AF71;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .containerr {
      flex-direction: column;
      padding: 10px;
  }

  .cart,
  .checkout {
      min-width: 100%;
      margin-bottom: 15px;
      padding: 15px;
  }

  .cart table {
      font-size: 14px;
  }

  .cart img {
      width: 50px;
      height: 50px;
  }
}


/*--------------------------------------------------------------
# table book
/* CSS for Restaurant Table Booking System */

/* Form Styling Enhancements */
.book-a-table .php-email-form {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background: rgba(15, 15, 15, 0.8);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.book-a-table .php-email-form:hover {
  box-shadow: 0 0 40px rgba(205, 164, 94, 0.15);
}

.book-a-table .form-group {
  margin-bottom: 20px;
  position: relative;
}

.book-a-table .form-control {
  background: rgba(26, 24, 20, 0.8);
  border: 2px solid rgba(205, 164, 94, 0.2);
  color: #fff;
  padding: 12px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.book-a-table .form-control:focus {
  border-color: #cda45e;
  box-shadow: 0 0 10px rgba(205, 164, 94, 0.3);
}

.book-a-table .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.book-a-table .validate {
  display: none;
  color: #ff5151;
  margin: 5px 0 0 0;
  font-size: 13px;
  font-weight: 400;
}

.book-a-table button[type="submit"] {
  background: #cda45e;
  border: 0;
  padding: 12px 35px;
  color: #1a1814;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
}

.book-a-table button[type="submit"]:hover {
  background: #d3b77d;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.book-a-table button[type="submit"]:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Status Messages Styling */
.book-a-table .loading {
  display: none;
  text-align: center;
  padding: 15px;
  color: #cda45e;
}

.book-a-table .error-message {
  display: none;
  color: #ff5151;
  background: rgba(255, 81, 81, 0.1);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 5px;
  border-left: 4px solid #ff5151;
}

.book-a-table .sent-message {
  display: none;
  color: #28a745;
  background: rgba(40, 167, 69, 0.1);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 5px;
  border-left: 4px solid #28a745;
}

/* Loader Styling */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 24, 20, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fancy-loader {
  text-align: center;
}

.loader-spin {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(205, 164, 94, 0.3);
  border-radius: 50%;
  border-top-color: #cda45e;
  animation: spin 1s ease-in-out infinite;
  margin-bottom: 20px;
}

.fancy-loader p {
  color: #cda45e;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  font-family: 'Playfair Display', serif;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Confirmation Modal Styling */
.reservation-confirmation-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.confirmation-content {
  width: 90%;
  max-width: 500px;
  background: #1a1814;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(205, 164, 94, 0.3);
  animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
  from {
      opacity: 0;
      transform: translateY(-50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.confirmation-header {
  background: #cda45e;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirmation-header h2 {
  color: #1a1814;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.close-modal {
  color: #1a1814;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.confirmation-body {
  padding: 30px;
  text-align: center;
  color: #fff;
}

.confirmation-icon {
  font-size: 70px;
  color: #cda45e;
  margin-bottom: 20px;
}

.confirmation-details {
  margin-bottom: 20px;
}

.confirmation-details p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

.confirmation-details strong {
  color: #cda45e;
}

.confirmation-footer {
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(205, 164, 94, 0.2);
}

.confirm-btn {
  background: #cda45e;
  color: #1a1814;
  border: 0;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirm-btn:hover {
  background: #d3b77d;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .book-a-table .php-email-form {
      padding: 20px;
  }
  
  .confirmation-content {
      width: 95%;
  }
  
  .confirmation-header h2 {
      font-size: 20px;
  }
  
  .confirmation-icon {
      font-size: 50px;
  }
  
  .confirmation-details p {
      font-size: 14px;
  }
}

/* Datepicker & Timepicker Customization */
.ui-datepicker {
  background: #1a1814;
  border: 1px solid #cda45e;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ui-datepicker-header {
  background: #cda45e;
  color: #1a1814;
  border-radius: 3px;
}

.ui-datepicker-calendar .ui-state-default {
  background: #292621;
  border: 1px solid #444;
  color: #fff;
}

.ui-datepicker-calendar .ui-state-hover {
  background: #cda45e;
  color: #1a1814;
}

.ui-datepicker-calendar .ui-state-active {
  background: #cda45e;
  color: #1a1814;
  border: 1px solid #cda45e;
}

.ui-timepicker-wrapper {
  background: #1a1814;
  border: 1px solid #cda45e;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.ui-timepicker-list li {
  color: #fff;
  padding: 8px 12px;
}

.ui-timepicker-list li:hover {
  background: #cda45e;
  color: #1a1814;
}

.ui-timepicker-list li.ui-timepicker-selected {
  background: #cda45e;
  color: #1a1814;
}
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--text-color);
  border-radius: 0;
  border-right: 2px solid var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--primary-color);
}

.specials .nav-link.active {
  color: #1a1814;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.specials .nav-link:hover {
  border-color: var(--primary-color);
}

.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/event-b.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: var(--text-color);
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: var(--text-color);
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--primary-color);
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--primary-color);
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: var(--text-color);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: var(--text-color);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: var(--main-bg-color);
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-webkit-input-placeholder, .book-a-table .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::-moz-placeholder, .book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder, .book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus, .book-a-table .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 35px;
  color: var(--text-color);
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: var(--text-color);
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: var(--text-color);
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: var(--text-color);
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: var(--primary-color);
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours, .contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--text-color);
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--text-color);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: #1a1814;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: var(--main-bg-color);
  border-color: #625b4b;
  color: white;
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 10px 35px;
  color: var(--text-color);
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #d3af71;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: var(--text-color);
  font-size: 14px;
}

#footer .footer-top {
  background: var(--main-bg-color);
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Playfair Display", serif;
  color: var(--text-color);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: var(--text-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);
  color: var(--text-color);
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--text-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary-color);
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--primary-color);
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--text-color);
}


/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/


.profile-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.profile-tab {
  padding: 12px 25px;
  background-color: #252525;
  color: #d4a762;
  border: 2px solid #d4a762;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.profile-tab.active {
  background-color: #d4a762;
  color: #1a1814;
}

.profile-content {
  background-color: rgba(26, 24, 20, 0.9);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(212, 167, 98, 0.2);
  position: relative;
}

.profile-section {
  display: none;
}

.profile-section.active {
  display: block;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.profile-table th, .profile-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 167, 98, 0.3);
}

.profile-table th {
  color: #d4a762;
  font-weight: bold;
}

.profile-table tr:hover {
  background-color: rgba(212, 167, 98, 0.1);
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.edit-btn, .save-btn, .cancel-btn {
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.edit-btn {
  background-color: #252525;
  color: #d4a762;
  border: 1px solid #d4a762;
}

.save-btn {
  background-color: #15451c;
  color: #d4a762;
  border: 1px solid #d4a762;
  display: none;
}

.cancel-btn {
  background-color: #451515;
  color: #d4a762;
  border: 1px solid #d4a762;
  display: none;
}

.delete-btn {
  padding: 8px 15px;
  background-color: #451515;
  color: #d4a762;
  border: 1px solid #d4a762;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.edit-btn:hover, .save-btn:hover, .cancel-btn:hover, .delete-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.profile-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  color: #d4a762;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 15px;
  background-color: #252525;
  border: 1px solid #d4a762;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(212, 167, 98, 0.5);
}

.profile-submit {
  grid-column: span 2;
  padding: 12px 0;
  background-color: #d4a762;
  color: #1a1814;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-submit:hover {
  background-color: #c59551;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.editable-cell {
  position: relative;
}

.editable-cell input {
  width: 100%;
  padding: 8px 10px;
  background-color: #252525;
  border: 1px solid #d4a762;
  border-radius: 5px;
  color: #fff;
  display: none;
}

@media (max-width: 768px) {
  .profile-tabs {
      flex-direction: column;
      align-items: center;
      gap: 10px;
  }
  
  .profile-tab {
      width: 100%;
      text-align: center;
  }
  
  .profile-form {
      grid-template-columns: 1fr;
  }
  
  .profile-submit {
      grid-column: span 1;
  }
  
  .profile-table {
      font-size: 14px;
  }
  
  .action-buttons {
      flex-direction: column;
      gap: 5px;
  }
  
  .edit-btn, .save-btn, .cancel-btn, .delete-btn {
      padding: 6px 10px;
      font-size: 12px;
  }
  
  .profile-content {
      padding: 15px;
  }
}

