@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Pinyon+Script&display=swap');

:root {
  --accent: #d4af37;
  /* Royal Golden */
  --accent-light: #f1c40f;
  --accent-dark: #8c6a00;
  --accent-hover: #e5c05b;
  --dark: #1a1816;
  --light: #F9F6F0;
  /* Royal Ivory */
  --heritage: 'Montserrat', sans-serif;
  --running: 'Pinyon Script', cursive;
  --gold-gradient: linear-gradient(135deg, #a67c00 0%, #d4af37 50%, #f1c40f 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.4);
  --glass: rgba(249, 246, 240, 0.95);
  /* Milky glass for modern look */
  --shadow-lux: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.menu-category-title {
  width: 100%;
  padding: 50px 15px 30px 15px;
  text-align: center;
  clear: both;
}

.menu-category-title h3 {
  font-family: var(--heritage);
  color: var(--accent);
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.menu-category-title h3::before,
.menu-category-title h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.menu-category-title h3::before {
  left: -80px;
}

.menu-category-title h3::after {
  right: -80px;
}

@media (max-width: 768px) {
  .menu-category-title h3 {
    font-size: 1.6rem;
  }

  .menu-category-title h3::before,
  .menu-category-title h3::after {
    width: 30px;
  }

  .menu-category-title h3::before {
    left: -45px;
  }

  .menu-category-title h3::after {
    right: -45px;
  }
}

a {
  text-decoration: none !important;
  color: var(--accent);
  transition: 0.3s;
}

a:hover {
  text-decoration: none !important;
  color: var(--accent-light);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-gradient);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover);
}

body {
  font-family: "Outfit", sans-serif;
  color: #3b3a37;
  background-color: var(--light);
  overflow-x: clip;
  line-height: 1.8;
  max-width: 100vw;
}

a {
  text-decoration: none !important;
  color: var(--accent);
  transition: 0.3s;
}

a:hover {
  text-decoration: none !important;
  color: var(--accent-light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heritage);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
  font-variant-ligatures: none;
}

.running-text {
  font-family: var(--running);
  font-size: 1.3rem;
  color: var(--accent);
  text-transform: none;
  letter-spacing: 0;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  white-space: normal;
  word-wrap: break-word;
  animation: shineGold 4s infinite alternate;
}

/* Desktop-only: larger running text inside the hero carousel */
@media (min-width: 992px) {
  #hero .running-text {
    font-size: 3.5rem;
  }
}

@keyframes shineGold {
  0% {
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2));
  }

  100% {
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  top: 0;
}

#header.header-scrolled {
  background: var(--glass);
  height: 75px;
  border-bottom-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 55px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: 0.3s;
}

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

@media (max-width: 992px) {
  #header {
    top: 0;
    height: 70px;
  }

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

@media (max-width: 575px) {
  #header .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }

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

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  font-family: 'Outfit', sans-serif;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 30px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after {
  width: calc(100% - 30px);
}

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

.header-scrolled .navbar a {
  color: var(--dark);
}

.navbar-mobile a {
  color: #fff !important;
}

.header-scrolled .navbar-mobile a {
  color: #fff !important;
}

.navbar-mobile .active,
.navbar-mobile a:hover {
  color: var(--accent) !important;
  text-decoration: none !important;
}

/* Kill the desktop hover underline animation inside the mobile overlay */
.navbar-mobile a::after {
  display: none !important;
  width: 0 !important;
  content: none !important;
}

.header-scrolled .navbar a::after {
  background: var(--accent);
}

.header-scrolled .navbar a:hover,
.header-scrolled .navbar .active {
  color: var(--accent);
}

.book-a-table-btn {
  background: var(--gold-gradient);
  color: #12110f !important;
  border-radius: 5px;
  margin: 0 0 0 20px;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  transition: 0.4s;
  text-transform: uppercase;
  border: none;
  box-shadow: var(--gold-glow);
  text-decoration: none !important;
  display: inline-block;
}

.book-a-table-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: #1a1816 !important;
  animation: pulseGold 2s infinite;
}

@media (max-width: 991px) {
  .book-a-table-btn {
    margin: 0 5px 0 0;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

/* On mobile the header buttons move into the slide-out nav.
   Hide them from the top bar to prevent overflow. */
@media (max-width: 767px) {
  #header .book-a-table-btn {
    display: none !important;
  }

  #header {
    height: 65px;
    padding: 10px 0;
  }
}

/* Style for the Download Menu link inside mobile nav overlay */
.nav-download-link {
  background: var(--gold-gradient) !important;
  color: #1a1816 !important;
  border: none;
  border-radius: 50px;
  display: inline-block !important;
  width: auto !important;
  padding: 12px 35px !important;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 15px;
  text-decoration: none !important;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transition: 0.3s;
}

.nav-download-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
  color: #1a1816 !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  /* Slightly darker for better text contrast */
  overflow: hidden;
  padding: 0;
  position: relative;
}

#hero.hero-secondary {
  height: 45vh;
  min-height: 350px;
  position: relative;
  padding-top: 100px;
  /* Accounts for fixed header */
}

.scrollbar-none::-webkit-scrollbar {
  display: none;
}

.scrollbar-none {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#hero.hero-secondary::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.45);
  /* Lightened overlay */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

#hero.hero-secondary .container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 30px;
}

#hero .carousel-content {
  text-align: center;
  padding-top: 40px;
  /* Provides breathing room from the header */
}

@media (max-width: 992px) {

  #hero:not(.hero-secondary),
  #hero:not(.hero-secondary) .carousel-item,
  #hero:not(.hero-secondary) .carousel-container {
    height: 100vh;
  }

  #hero.hero-secondary,
  #hero.hero-secondary .container {
    height: auto;
    min-height: 280px;
    padding-top: 130px;
    padding-bottom: 50px;
  }

  #hero h2 {
    font-size: 46px;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  }

  #hero h2 span {
    font-size: 54px;
    padding: 0 5px;
    line-height: 1.1;
    white-space: normal;
    word-wrap: break-word;
    display: inline;
  }

  #hero p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  #header .book-a-table-btn {
    display: none;
  }

  .navbar-mobile .book-a-table-btn {
    display: block;
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 82px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-shadow: 0px 10px 40px rgba(0, 0, 0, 0.9);
  font-family: var(--heritage);
}

#hero h2 span {
  font-family: var(--running);
  text-transform: none;
  letter-spacing: 2px;
  font-size: 90px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 20px;
  /* Prevent cursive letters from clipping on all sides */
  display: inline-block;
  /* Ensure padding applies correctly vertically */
  line-height: 1.4;
  /* Essential for script fonts to fully render top/bottom flourishes */
}

#hero p {
  width: 60%;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  color: #fff;
  border: 2px solid var(--accent);
  text-decoration: none !important;
}

/* Button centering moved to max-width: 575px query below */

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #1a1816;
  animation: pulseGold 2s infinite;
}

/* Breadcrumb Nav in Hero */
#hero .breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

#hero .breadcrumb-nav li {
  color: rgba(255, 255, 255, 0.8);
}

#hero .breadcrumb-nav li a {
  color: var(--accent);
}

#hero .breadcrumb-nav li+li {
  padding-left: 15px;
}

#hero .breadcrumb-nav li+li::before {
  display: inline-block;
  padding-right: 15px;
  color: rgba(255, 255, 255, 0.4);
  content: "/";
}

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

/* Breadcrumb Nav in Hero */
#hero .breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#hero .breadcrumb-nav li {
  color: rgba(255, 255, 255, 0.7);
}

#hero .breadcrumb-nav li a {
  color: var(--accent);
}

#hero .breadcrumb-nav li+li {
  padding-left: 10px;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 30px 0;
  background: var(--light);
  margin-top: 120px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
  color: var(--dark);
}

.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: #6c757d;
  content: "/";
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 50px 30px;
  box-shadow: var(--shadow-lux);
  transition: all 0.4s ease-in-out;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #5f5950;
}

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

.why-us .box:hover {
  background: var(--accent);
  box-shadow: var(--shadow-lux);
  transform: translateY(-5px);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: var(--shadow-lux);
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonials .testimonial-item h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: var(--shadow-lux);
  padding: 30px 0;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--accent);
  border-radius: 50%;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: var(--shadow-lux);
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

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

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

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

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  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;
}

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

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

.contact .php-email-form button[type="submit"]:hover {
  background: var(--accent-hover);
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
  border-radius: 15px;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 8px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #dee2e6;
  padding: 12px 15px;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 176, 59, 0.2);
}

.book-a-table .php-email-form .book-a-table-btn {
  background: var(--accent);
  border: 0;
  padding: 12px 40px;
  color: #1a1816;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form .book-a-table-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 176, 59, 0.4);
}

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

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

.specials .nav-link {
  border: 0;
  padding: 15px 20px;
  transition: 0.3s;
  color: #433b30;
  border-radius: 0;
  border-left: 3px solid transparent;
  font-weight: 600;
  font-size: 16px;
  background: var(--light);
  margin-bottom: 5px;
}

.specials .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.3);
}

.specials .nav-link.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.specials .details h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1816;
}

.specials .details p {
  color: #777777;
  line-height: 1.8;
}

.specials .details p.fst-italic {
  color: var(--accent);
  font-weight: 500;
  font-size: 18px;
}

.specials img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

  .specials .nav-link.active {
    color: var(--accent);
    background: #fff;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding: 60px 0;
  background: var(--light);
}

.gallery .swiper-slide {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gallery .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
  border: 4px solid #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery .swiper-slide:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-slider.swiper {
  padding: 20px 0 40px 0;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  margin: 0 0 15px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--heritage);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.section-title h2::before,
.section-title h2::after {
  content: "";
  width: 50px;
  height: 1px;
  display: inline-block;
  background: var(--accent);
  margin: 0 15px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background: var(--light);
  margin-top: 0;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.breadcrumbs::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--accent), transparent);
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1816;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.breadcrumbs ol li {
  color: #777;
}

.breadcrumbs ol li a {
  color: var(--accent);
}

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

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

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
    padding: 20px 0;
  }

  .breadcrumbs .d-flex {
    flex-direction: column;
    text-align: center;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    justify-content: center;
  }
}

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

.section-title p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
  color: #1a1816;
  letter-spacing: 1px;
}

.section-title p span {
  color: var(--accent);
}

/* Gallery dark background: override section-title text to white */
#gallery .section-title h2,
#gallery .section-title h2::before,
#gallery .section-title h2::after {
  color: #fff;
  background: #1a1816;
}

#gallery .section-title h2 .running-text {
  color: var(--accent);
}

#gallery .section-title p {
  color: rgba(255, 255, 255, 0.85) !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #fff;
  padding-top: 40px;
}

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

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

.about .content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

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

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  max-width: 100%;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #1a1816;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fdfaf3;
  border: 2px solid transparent;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.menu .menu-item {
  margin-bottom: 35px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid transparent;
}

.menu .menu-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: #ffffff;
  box-shadow: var(--shadow-lux);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.menu .menu-content {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 5px;
  position: relative;
}

.menu .menu-content a {
  padding-right: 15px;
  background: var(--light);
  position: relative;
  z-index: 1;
  font-family: var(--heritage);
  font-weight: 700;
  color: #1a1816 !important;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: 0.3s;
  order: 1;
}

.menu .menu-content a:hover {
  color: var(--accent) !important;
}

.menu .menu-content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  border-bottom: 1px dotted rgba(26, 24, 22, 0.4);
  z-index: 0;
}

.menu .menu-content span {
  background: var(--light);
  padding-left: 15px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #1a1816 !important;
  font-size: 1.1rem;
  order: 3;
}

.menu .menu-ingredients {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #444 !important;
  padding-right: 50px;
  margin-top: 5px;
}

.menu-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
  border: 1px solid var(--accent);
  color: var(--accent);
  order: 2;
}

.spicy-icon {
  color: #e74c3c;
  margin-left: 8px;
  font-size: 0.9rem;
  order: 2;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background: #fff;
  transition: 0.3s;
  border-radius: 8px;
  border-bottom: 3px solid transparent;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--accent);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact .info-box i {
  font-size: 32px;
  color: var(--accent);
  border-radius: 50%;
  padding: 12px;
  background: #fff6e8;
  display: inline-block;
  margin-bottom: 15px;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #1a1816;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #777;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
  background: #fff;
  border-radius: 10px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 5px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #dee2e6;
  padding: 12px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(255, 176, 59, 0.25);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent);
  border: 0;
  padding: 12px 40px;
  color: #1a1816;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: var(--accent-hover);
  transform: scale(1.05);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 60px 0 30px 0;
  color: #fff;
  font-size: 14px;
  background: #1a1816;
}

#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
  font-family: "Satisfy", sans-serif;
}

#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  /* More subtle background */
  color: #fff;
  line-height: 1;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  width: 44px;
  height: 44px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .social-links a:hover {
  background: var(--accent);
  color: #1a1816;
  border-color: var(--accent);
}

#footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

#footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 992px) {
  #footer h4::after {
    left: 0;
    transform: none;
  }
}

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

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

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

#footer .footer-links ul li a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-links ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

#footer .footer-links ul li i {
  padding-right: 10px;
  color: var(--accent);
  font-size: 12px;
}

#footer .social-links {
  margin: 15px 0 0 0;
}

#footer .copyright-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  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;
  }
}

.header-scrolled .mobile-nav-toggle {
  color: var(--dark);
}

/* ============================================================
   PREMIUM MOBILE NAVIGATION OVERLAY
============================================================ */
.navbar-mobile {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99999 !important;
  height: 100vh !important;
  width: 100vw !important;
  overflow: hidden;
  /* Solid black background for mobile menu */
  background: #000000 !important;
  /* Gold top accent */
  border-top: 3px solid var(--accent);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Close (✕) button */
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 22px;
  transition: color 0.3s, transform 0.3s;
  cursor: pointer;
}

.navbar-mobile .mobile-nav-toggle:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

/* ---- Injected brand header ---- */
.mobile-brand-header {
  text-align: center;
  padding: 0 30px 10px;
  width: 100%;
}

.mobile-brand-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
  margin-bottom: 16px;
}

.mobile-brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mobile-brand-divider .divider-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}

.mobile-brand-divider .divider-line:last-child {
  background: linear-gradient(to left, transparent, var(--accent));
}

.mobile-brand-divider .divider-icon {
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  opacity: 0.8;
}

/* ---- Navigation list ---- */
.navbar-mobile ul {
  display: flex !important;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  width: 100%;
  max-width: 320px;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: transparent;
}

.navbar-mobile li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar-mobile li:first-child {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ---- Nav links ---- */
.navbar-mobile a,
.navbar-mobile a:focus {
  display: block;
  padding: 13px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 5px;
  text-decoration: none !important;
  position: relative;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

/* Gold underline reveal */
.navbar-mobile a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width 0.4s ease;
  display: block !important;
}

.navbar-mobile a:hover::after,
.navbar-mobile .active::after {
  width: 36px;
}

/* Mobile Navigation active and hover states */
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--accent) !important;
  letter-spacing: 6px;
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
  text-decoration: none !important;
}

/* Book a Table CTA inside mobile nav */
.navbar-mobile .book-a-table-btn {
  margin: 20px auto 0;
  display: block;
  text-align: center;
  padding: 11px 28px;
  font-size: 10px;
  letter-spacing: 3px;
  width: auto;
  min-width: 180px;
  border-radius: 50px;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 992px) {
  #header {
    top: 0;
    background: rgba(26, 24, 22, 0.95);
  }

  .breadcrumbs {
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 34px;
  }

  #hero h2 span {
    font-size: 40px;
  }

  #hero p {
    width: 100%;
    font-size: 18px;
  }

  .section-title p {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  #hero h2 {
    font-size: 26px;
    letter-spacing: 4px;
  }

  #hero h2 span {
    font-size: 32px;
  }

  #hero .btn-menu,
  #hero .btn-book {
    padding: 10px 20px;
    font-size: 11px;
    margin: 10px auto;
    display: block;
    width: 220px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  font-size: 28px;
  color: #1a1816;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Carousel Indicators
--------------------------------------------------------------*/
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 0 5px;
  border: 1px solid var(--accent);
}

.carousel-indicators .active {
  background-color: var(--accent);
  opacity: 1;
}