/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
--------------------------------------------------------------*/
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  line-height: 1.6;
}

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

a:hover {
  color: #ec2727;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Container & Grid System 
--------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.row > [class*="col-"] {
  padding: 0 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }

  .col-lg-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }

  .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }

  .col-lg-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }

  .col-lg-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .col-lg-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }

  .col-lg-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }

  .col-lg-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }

  .col-lg-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }

  .col-lg-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }

  .col-lg-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.333333% !important;
    max-width: 8.333333% !important;
  }

  .col-xl-2 {
    flex: 0 0 16.666667% !important;
    max-width: 16.666667% !important;
  }

  .col-xl-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
  }

  .col-xl-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }

  .col-xl-5 {
    flex: 0 0 41.666667% !important;
    max-width: 41.666667% !important;
  }

  .col-xl-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }

  .col-xl-7 {
    flex: 0 0 58.333333% !important;
    max-width: 58.333333% !important;
  }

  .col-xl-8 {
    flex: 0 0 66.666667% !important;
    max-width: 66.666667% !important;
  }

  .col-xl-9 {
    flex: 0 0 75% !important;
    max-width: 75% !important;
  }

  .col-xl-10 {
    flex: 0 0 83.333333% !important;
    max-width: 83.333333% !important;
  }

  .col-xl-11 {
    flex: 0 0 91.666667% !important;
    max-width: 91.666667% !important;
  }

  .col-xl-12 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 991px) {
  .col-lg-12, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2,
  .col-xl-6, .col-xl-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.gy-4 > * {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.gy-5 > * {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.g-0 {
  margin-left: 0;
  margin-right: 0;
}

.g-0 > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

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

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

.text-lg-start {
  text-align: left;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-column {
  flex-direction: column;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.d-none {
  display: none;
}

.ps-0 {
  padding-left: 0;
}

.ps-lg-5 {
  padding-left: 3rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.p-3 {
  padding: 1rem;
}

.p-md-4 {
  padding: 1.5rem;
}

@media (max-width: 991px) {
  .text-lg-start {
    text-align: center;
  }
  
  .order-1 { order: 1; }
  .order-2 { order: 2; }
  
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
  scroll-margin-top: 90px;
}

.section-bg {
  background-color: #f8f9fa;
}

#main {
  padding-top: 90px;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  border-bottom: 1px solid #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #eee;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header .logo img {
  max-height: 90px;
  margin-right: 2px;
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 60px;
  }
  
  .header .logo-text {
    margin-left: 5px;
  }
  
  .header .logo-main {
    font-size: 24px;
  }
  
  .header .logo-sub {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}

.header .logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}

.header .logo-main {
  font-size: 31px;
  font-weight: 900;
  color: var(--color-primary);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.header .logo-sub {
  font-size: 11px;
  font-weight: 300;
  color: #000;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
}

.header .logo-sub .logo-accent {
  color: var(--color-primary);
  font-weight: 400;
  letter-spacing: 2px;
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
  transform: translateY(-2px);
}

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

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

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

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .mobile-order-btn {
    display: none;
  }

  .desktop-order-btn {
    display: flex;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #000;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    max-height: 80vh;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    border-bottom: 3px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .navbar ul {
    position: relative;
    padding: 20px 20px 20px 20px;
    margin: 0;
    background: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 100000;
    list-style: none;
  }

  .mobile-order-btn {
    display: none;
  }

  .mobile-nav-active .mobile-order-btn {
    display: block;
    padding: 0;
    margin: 0 20px 20px 20px;
    text-align: center;
  }

  .mobile-order-btn a {
    display: inline-block !important;
    text-align: center !important;
    padding: 8px 20px !important;
    background: var(--color-primary) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    border: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: 0.3s !important;
    margin: 0 !important;
  }

  .mobile-order-btn a:hover {
    background: rgba(206, 18, 18, 0.8) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
  }

  .desktop-order-btn {
    display: none;
  }

  .navbar a,
  .navbar a:focus {
    display: block;
    text-align: center;
    padding: 18px 20px;
    font-family: var(--font-secondary);
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a:hover,
  .navbar li:hover > a {
    color: var(--color-primary);
    background: #f8f9fa;
    padding-left: 30px;
  }

  .navbar .active,
  .navbar .active:focus {
    color: var(--color-primary);
    background: transparent;
    border-bottom: 3px solid var(--color-primary);
  }

  .mobile-nav-show,
  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    z-index: 100001;
    margin: 0 20px 0 20px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .mobile-nav-hide {
    transform: translateY(-50%) rotate(0deg) scale(0);
    opacity: 0;
    color: #d63031;
  }

  .mobile-nav-active .mobile-nav-hide {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 1;
  }

  .mobile-nav-active .mobile-nav-show {
    transform: translateY(-50%) rotate(90deg) scale(0);
    opacity: 0;
  }

  .mobile-nav-active {
    overflow: auto;
  }

  .mobile-nav-active .navbar {
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/img/gallery/image-3.jpg') center center no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.hero h2 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 64px;
  font-weight: 700;
  font-family: var(--font-primary);
  line-height: 1.1;
}

.hero p {
  color: #fff;
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn-book-a-table {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 28px;
  border-radius: 25px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 1.5;
}

.hero .btn-book-a-table:hover {
  background: rgba(206, 18, 18, 0.9);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 18, 18, 0.3);
}

.hero .btn-watch-video {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-watch-video:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-watch-video i {
  font-size: 18px;
}

.hero .d-flex {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

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

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content .fst-italic {
  font-style: italic;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

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

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

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

.about .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 #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .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 #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 30px;
}

.why-us .why-box h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us {
  background-color: #e9ecef;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 20px 20px;
  width: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 5px;
}

.menu .nav-item {
  margin: 0 5px;
}

.menu .nav-link {
  margin: 0 5px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
  text-decoration: none;
}

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

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 10px 0;
  text-align: center;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-pane {
  display: none;
}

.menu .tab-pane.active {
  display: block;
}

.menu .tab-pane.fade {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.menu-img {
  padding: 0;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/*--------------------------------------------------------------
# Review QR Code Section
--------------------------------------------------------------*/
.review-qr {
  padding: 80px 0;
  background: #fff;
}

.review-banner {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  object-fit: contain;
}

.review-qr-code {
  max-width: 200px;
  max-height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.review-qr p {
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .review-qr {
    padding: 40px 0;
  }

  .review-qr .row {
    flex-direction: column;
    gap: 30px;
  }

  .review-banner {
    max-width: 100%;
  }

  .review-qr-code {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #e9ecef;
  padding: 40px 0;
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .swiper {
  overflow: hidden;
}

.testimonials .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.testimonials .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
  width: 150px;
  height: 150px;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

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

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

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

.testimonials .stars i {
  margin-right: 2px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-primary);
}

.testimonials .swiper {
  width: 100%;
  padding-bottom: 20px;
}

.testimonials .swiper-pagination {
  bottom: 20px;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  opacity: 0.5;
  transition: 0.3s;
}

.testimonials .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 400px;
  height: auto;
  background-size: cover;
  background-position: center;
  width: 100%;
  display: block;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.book-a-table .php-email-form,
.book-a-table .booking-form,
.book-a-table .order-form,
.book-a-table .message-form {
  padding: 20px 15px;
}

.book-a-table .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 5px;
}

.book-a-table .nav-item {
  margin: 0 5px;
}

.book-a-table .nav-link {
  margin: 0 5px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  background: transparent;
  text-decoration: none;
  display: inline-block;
}

.book-a-table .nav-link h4 {
  font-size: 13px;
  font-weight: 400;
  margin: 0;
  color: var(--color-secondary);
}

.book-a-table .nav-link:hover,
.book-a-table .nav-link:hover h4 {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.book-a-table .nav-link.active {
  color: var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  background: transparent;
}

.book-a-table .nav-link.active h4 {
  color: var(--color-primary);
}

.book-a-table .nav-link:not(.active) {
  border-bottom: 2px solid #b6b6bf;
}

.book-a-table .tab-pane {
  display: none;
}

.book-a-table .tab-pane.active {
  display: block;
}

.book-a-table .tab-content {
  padding: 15px 20px;
}

.book-a-table .form-group {
  margin-top: 8px;
  margin-bottom: 0;
}

.book-a-table .col-lg-6,
.book-a-table .col-md-6,
.book-a-table .col-lg-12,
.book-a-table .col-md-12 {
  margin-bottom: 8px;
}

.book-a-table .form-control {
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
  border: 1px solid #ced4da;
  padding: 8px 12px;
  width: 100%;
  box-sizing: border-box;
}

.book-a-table input[type="date"],
.book-a-table input[type="time"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 38px;
}

.book-a-table input[type="date"]::-webkit-calendar-picker-indicator,
.book-a-table input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .book-a-table input[type="date"]::-webkit-datetime-edit,
  .book-a-table input[type="time"]::-webkit-datetime-edit {
    padding: 0;
    color: #6c757d;
  }

  .book-a-table input[type="date"]::-webkit-datetime-edit-fields-wrapper,
  .book-a-table input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  .book-a-table input[type="date"]::-webkit-datetime-edit-fields-wrapper,
  .book-a-table input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    background: #fff;
  }

  .book-a-table input[type="date"][value=""],
  .book-a-table input[type="time"][value=""] {
    color: #6c757d;
  }

  .book-a-table input[type="date"][value=""]::-webkit-datetime-edit,
  .book-a-table input[type="time"][value=""]::-webkit-datetime-edit {
    color: #6c757d;
  }
}

.book-a-table textarea.form-control {
  box-sizing: border-box;
  margin: 0;
  padding: 8px 12px;
}

.book-a-table .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: none;
}

.book-a-table button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 50px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 15px;
}

.book-a-table button[type="submit"]:hover {
  background: #ec2727;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(206, 18, 18, 0.3);
}

@media (max-width: 575px) {
  .book-a-table .php-email-form,
  .book-a-table .booking-form,
  .book-a-table .order-form,
  .book-a-table .message-form {
    padding: 15px;
  }

  .book-a-table .nav-link h4 {
    font-size: 13px;
  }

  .book-a-table .col-lg-6,
  .book-a-table .col-md-6,
  .book-a-table .col-lg-12,
  .book-a-table .col-md-12 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #ced4da;
}

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

.book-a-table .php-email-form input {
  padding: 12px 15px;
  width: 100%;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
  width: 100%;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  background-color: #e9ecef;
  padding: 30px 0;
}

.gallery .swiper {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden;
}

@media (max-width: 575px) {
  .gallery .swiper {
    width: 100%;
  }
}

.gallery .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

.gallery .swiper-slide {
  flex-shrink: 0;
  width: auto;
  height: auto;
  padding: 0 10px;
}

.gallery .swiper-slide img {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .gallery .swiper-slide {
    width: 100% !important;
    padding: 0 !important;
  }

  .gallery .swiper-slide img {
    width: 100% !important;
    max-width: none !important;
    height: 300px !important;
    object-fit: cover !important;
  }
}

.gallery .swiper-slide img:hover {
  transform: scale(1.05);
}

.gallery .swiper-pagination {
  bottom: 10px;
}

.gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
  opacity: 0.5;
  transition: 0.3s;
}

.gallery .swiper-pagination-bullet-active {
  background: var(--color-primary);
  opacity: 1;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
  color: #6c757d;
}

/*--------------------------------------------------------------
# Footer
---------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .container {
  max-width: 1320px;
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

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

.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 a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-links p {
  line-height: 1.6;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  background: #15151a;
  padding: 10px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 48px;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-header p {
    font-size: 36px;
  }
  
  .about .about-img {
    min-height: 300px;
  }
  
  .book-a-table .reservation-img {
    min-height: 300px;
  }
  
  .book-a-table .php-email-form {
    padding: 20px;
  }
  
  .testimonials .testimonial-item {
    padding: 20px;
  }
  
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 42px;
    line-height: 1.15;
  }
  
  .hero p {
    font-size: 17px;
  }
  
  .section-header p {
    font-size: 28px;
  }
  
  .why-us .icon-box {
    padding: 30px 20px;
  }
  
  .menu .nav-link {
    padding: 8px 15px;
  }
  
  .menu .nav-link h4 {
    font-size: 16px;
  }
  
  .testimonials .testimonial-item {
    padding: 15px;
  }
  
  .testimonials .testimonial-content p {
    font-size: 14px;
  }
  
  .testimonials .testimonial-content h3 {
    font-size: 18px;
  }
  
  .contact .info-item {
    padding: 15px;
  }
  
  .book-a-table .reservation-form-bg {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero h2 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
  }
  
  .hero .d-flex {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }
  
  .hero .btn-book-a-table,
  .hero .btn-watch-video {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 25px;
  }
  
  .hero .btn-watch-video {
    flex-direction: row;
    white-space: nowrap;
  }
  
  .hero .btn-watch-video i {
    flex-shrink: 0;
  }
  
  .section-header p {
    font-size: 24px;
  }
  
  .about .call-us {
    padding: 15px;
  }
  
  .about .call-us h4 {
    font-size: 20px;
  }
  
  .about .call-us p {
    font-size: 24px;
  }
  
  .why-us .why-box {
    padding: 20px;
  }
  
  .why-us .why-box h3 {
    font-size: 24px;
  }
  
  .menu .nav-tabs {
    flex-wrap: wrap;
  }
  
  .menu .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .menu .nav-link h4 {
    font-size: 14px;
  }
  
  .testimonials .testimonial-item {
    padding: 15px;
  }
  
  .testimonials .row {
    flex-direction: column-reverse;
  }
  
  .testimonials .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }
  
  .testimonials .col-lg-2 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .testimonials .testimonial-img {
    width: 70px;
    height: 70px;
    margin: 0 auto;
  }
  
  .gallery .swiper-slide {
    padding: 0 5px;
  }
  
  .gallery .swiper-slide img {
    max-width: 200px;
    height: 150px;
  }
  
  .contact .row {
    flex-direction: column;
  }
  
  .contact .col-md-6 {
    width: 100%;
    max-width: 100%;
  }
  
  .footer .row {
    flex-direction: column;
  }
  
  .footer .col-lg-3 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
