/**
* Template Name: Yummy
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Outfit", system-ui, -apple-system, sans-serif;
  --font-primary: "Outfit", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #ce1212;
  --color-secondary: #37373f;
  --color-bg: #f8fafc;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

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

a:hover {
  color: #ec2727;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 100px 0;
  background: #fff;
}

.section-bg {
  background-color: var(--color-bg);
}

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

.section-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: var(--color-primary);
  text-transform: uppercase;
  font-family: var(--font-default);
  margin-bottom: 10px;
  opacity: 0.8;
}

.section-header p {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--color-secondary);
  line-height: 1.2;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# 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;
}

.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;
  }
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.header .logo h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--color-secondary);
  margin: 0;
  font-family: var(--font-primary);
  letter-spacing: -1px;
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 15px;
  color: #fff;
  background: var(--color-primary);
  padding: 10px 28px;
  margin-left: 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# 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;
  }

  .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 i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .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%;
  }

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

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    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;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .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(--color-primary);
  }

  .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 (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navbar .active,
  .navbar .active:focus {
    color: var(--color-primary);
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

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

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

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

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--color-bg);
}

.about .about-img {
  min-height: 250px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: 0.5s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

.about h3 {
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  line-height: 1.2;
}

.about .call-us {
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.about .call-us h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about .call-us p {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  font-family: var(--font-primary);
}

.about .content p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}

.about .play-btn {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 32px;
  box-shadow: 0 0 0 15px rgba(79, 70, 229, 0.2);
  transition: 0.3s;
}

.about .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 25px rgba(79, 70, 229, 0.1);
}
  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: 50px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

.why-us .why-box h3 {
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

.why-us .why-box p {
  opacity: 0.9;
  line-height: 1.7;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 35px;
  color: #fff;
  border-radius: 12px;
  transition: all 0.3s;
  font-weight: 600;
  margin-top: 25px;
}

.why-us .why-box .more-btn:hover {
  background: #fff;
  color: var(--color-primary);
}

.why-us .icon-box {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: 0.4s;
  height: 100%;
}

.why-us .icon-box i {
  color: var(--color-primary);
  font-size: 36px;
  width: 72px;
  height: 72px;
  background: rgba(79, 70, 229, 0.05);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--color-secondary);
}

.why-us .icon-box:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
}

.why-us .icon-box:hover i {
  background: var(--color-primary);
  color: #fff;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 120px 0;
  color: #fff;
}

.stats-counter .stats-item {
  text-align: center;
  padding: 30px;
}

.stats-counter .stats-item span {
  font-size: 56px;
  display: block;
  font-weight: 800;
  font-family: var(--font-primary);
  background: linear-gradient(135deg, #fff, #ff7b7b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-counter .stats-item p {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  opacity: 0.7;
}

/*--------------------------------------------------------------
# Menu (Services) Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
  margin-bottom: 40px;
  gap: 15px;
}

.menu .nav-link {
  padding: 12px 25px;
  transition: 0.3s;
  color: var(--color-default);
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-weight: 600;
}

.menu .nav-link h4 {
  font-size: 17px;
  margin: 0;
  font-weight: 700;
}

.menu .nav-link.active {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);
}

.menu .tab-content .tab-header {
  text-align: center;
  margin-bottom: 50px;
}

.menu .tab-content .tab-header h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.menu .menu-item {
  padding: 25px;
  transition: 0.3s;
  border-radius: 20px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid transparent;
}

.menu .menu-item:hover {
  transform: translateY(-10px);
  border-color: #f1f5f9;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.menu .menu-item .menu-img {
  border-radius: 15px;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}

.menu .menu-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.menu .menu-item .ingredients {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.menu .menu-item .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(79, 70, 229, 0.08);
  padding: 6px 20px;
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
  border: 1px solid #f1f5f9;
}

.testimonials .testimonial-item .testimonial-content {
  border: 0;
  padding: 0;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--color-bg);
  margin-bottom: 20px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(206, 18, 18, 0.2);
  font-size: 32px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  position: relative;
}

.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);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: center;
  min-height: 450px;
  padding: 40px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}

.events .event-item:before {
  content: "";
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  position: absolute;
  inset: 0;
  z-index: 1;
}

.events .event-item:hover {
  transform: translateY(-10px);
}

.events .event-item h3 {
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

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

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

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

/*/*--------------------------------------------------------------
# Chefs (Team) Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
  padding: 40px 30px;
  border: 1px solid #f1f5f9;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
  margin: 0 auto 30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid var(--color-bg);
}

.chefs .chef-member .social {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: 0.3s;
}

.chefs .chef-member:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0px 20px 40px rgba(79, 70, 229, 0.1);
}

.chefs .chef-member:hover .social {
  opacity: 1;
}

.chefs .chef-member .member-info h4 {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.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 .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  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;
  border-radius: 0;
}

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

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

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

.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;
}

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

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

  100% {
    transform: rotate(360deg);
  }
}

/*/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
  background: var(--color-bg);
}

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

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

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
  width: 30px;
  border-radius: 6px;
}

.gallery .swiper-slide-active {
  text-align: center;
}

.gallery .gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.gallery .gallery-item img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(206, 18, 18, 0.2);
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #fff;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 50px rgba(206, 18, 18, 0.1);
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 22px;
  color: var(--color-primary);
  background: rgba(206, 18, 18, 0.08);
  border-radius: 14px;
  margin-right: 20px;
  transition: 0.3s;
}

.contact .info-item:hover .icon {
  background: var(--color-primary);
  color: #fff;
}

.contact .info-item h3 {
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 700;
  margin: 0 0 5px 0;
  font-family: var(--font-primary);
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 1.5;
  font-size: 14px;
  color: #64748b;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
}

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

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

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

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

.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 #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 12px;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #e2e8f0;
  transition: 0.3s;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(206, 18, 18, 0.1);
}

.contact .php-email-form input {
  height: 48px;
  padding: 10px 15px;
}

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

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(206, 18, 18, 0.2);
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

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

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  background: radial-gradient(circle at 10% 20%, rgba(206, 18, 18, 0.05) 0%, rgba(255, 255, 255, 1) 90%);
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 40%;
  height: 60%;
  background: radial-gradient(circle, rgba(206, 18, 18, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 68px;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #64748b;
  font-weight: 400;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
}

.btn-hero-primary {
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 14px;
  transition: all 0.4s;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 15px 30px rgba(206, 18, 18, 0.3);
}

.btn-hero-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  color: #fff;
}

.hero .btn-watch-video {
  font-size: 17px;
  transition: 0.5s;
  margin-left: 30px;
  color: var(--color-secondary);
  font-weight: 700;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 40px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 12px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  transform: scale(1.1);
}

.hero-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.15));
}

.hero-shape {
  position: absolute;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(206, 18, 18, 0.1), rgba(55, 55, 63, 0.1));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { border-radius: 70% 30% 30% 70% / 60% 40% 40% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

@media (max-width: 1200px) {
  .hero h2 {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .hero {
    text-align: center;
    padding: 140px 0 60px 0;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .btn-hero-primary {
    margin-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 40px;
    letter-spacing: -1px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero .btn-watch-video {
    margin-left: 0;
    margin-top: 10px;
  }
}

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

.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 .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 {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/*--------------------------------------------------------------
# Mobile Optimization (Reduced Scrolling & Compact Layout)
--------------------------------------------------------------*/
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  section {
    padding: 30px 0; /* Further reduced from 40px */
  }

  .section-header {
    padding-bottom: 20px; /* Further reduced from 30px */
  }

  .section-header p {
    font-size: 28px; /* Reduced from 42px */
  }

  .hero {
    min-height: 50vh;
    padding: 90px 0 20px 0; /* Increased top padding to prevent overlap with header */
  }

  .hero h2 {
    font-size: 24px; /* Further reduced from 32px */
    margin-bottom: 12px;
  }

  .hero p {
    font-size: 13px; /* Further reduced from 15px */
    margin-bottom: 20px;
  }

  .hero .btn-hero-primary {
    padding: 10px 25px;
    font-size: 14px;
  }

  .hero .btn-watch-video {
    font-size: 14px;
    margin-left: 20px;
  }

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

  .hero-img-wrapper img {
    max-width: 160px; /* Further reduced from 250px */
    margin-bottom: 10px; /* Reduced from 20px */
  }

  .hero-shape {
    width: 200px; /* Reduced from 280px */
    height: 200px;
  }

  .about .about-img {
    min-height: 200px; /* Increased slightly from 150px */
    border-radius: 20px;
    background-size: cover;
  }

  .about .call-us {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 15px;
  }

  .about .call-us p {
    font-size: 18px;
  }

  .about .call-us h4 {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .about h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about .content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .why-us .why-box {
    padding: 30px;
  }

  .why-us .why-box h3 {
    font-size: 26px;
  }

  .stats-counter {
    padding: 60px 0; /* Reduced from 120px */
  }

  .stats-counter .stats-item {
    padding: 5px; /* Reduced from 10px */
  }

  .stats-counter .stats-item span {
    font-size: 20px; /* Further reduced from 28px */
  }

  .stats-counter .stats-item p {
    font-size: 10px; /* Further reduced from 12px */
    margin-top: 5px;
  }

  .menu .nav-tabs {
    margin-bottom: 20px;
    gap: 4px; /* Minimized gap */
    justify-content: center !important;
    display: flex;
    flex-wrap: nowrap; /* Keep in one line */
  }

  .menu .nav-link {
    padding: 6px 8px; /* Further reduced padding */
    white-space: nowrap;
    border-radius: 8px;
  }

  .menu .nav-link h4 {
    font-size: 10px; /* Further reduced font size to fit all 5 */
    margin: 0;
  }

  .menu .menu-item {
    padding: 10px 5px;
  }

  .menu .menu-item .menu-img {
    margin-bottom: 10px;
    border-radius: 10px;
  }

  .menu .menu-item h4 {
    font-size: 11px;
    margin-bottom: 5px;
    line-height: 1.2;
    height: 26px;
    overflow: hidden;
  }

  .menu .menu-item .ingredients {
    display: none; /* Hide ingredients on mobile to save space for 3 columns */
  }

  .menu .menu-item .price {
    font-size: 10px;
    padding: 3px 8px;
  }

  .menu .tab-content .tab-header {
    margin-bottom: 25px;
  }

  .menu .tab-content .tab-header h3 {
    font-size: 24px;
  }

  .events .event-item {
    min-height: 280px; /* Reduced further for mobile 2-card layout */
    padding: 15px;
    border-radius: 15px;
  }

  .events .event-item h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .events .event-item .price {
    font-size: 11px;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .events .event-item .description {
    font-size: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 25px 20px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .testimonials .testimonial-item p {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonials .testimonial-item h4 {
    font-size: 12px;
  }

  .testimonials .swiper-pagination {
    margin-top: 20px;
  }

  .chefs .chef-member {
    padding: 15px 10px;
  }

  .chefs .chef-member .member-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px auto;
  }

  .chefs .chef-member .member-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .chefs .chef-member .member-info span {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .chefs .chef-member .member-info p {
    font-size: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .contact .info-item {
    padding: 15px 10px;
    flex-direction: column;
    text-align: center;
    border-radius: 15px;
  }

  .contact .info-item i {
    margin-right: 0;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }

  .contact .info-item h3 {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .contact .info-item p {
    font-size: 9px;
    line-height: 1.3;
    word-break: break-word;
    max-width: 100%;
  }

  .contact iframe {
    height: 220px !important;
    border-radius: 15px;
  }

  .contact .php-email-form {
    padding: 20px !important;
  }

  /* Specific sizing for Why Us 3-column row */
  .why-us .icon-box {
    padding: 15px 10px;
  }

  .why-us .icon-box i {
    font-size: 24px;
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    border-radius: 12px;
  }

  .why-us .icon-box h4 {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .why-us .icon-box p {
    font-size: 11px;
    line-height: 1.3;
  }

  .why-us .why-box {
    padding: 20px;
    text-align: center;
  }

  .why-us .why-box h3 {
    font-size: 22px;
  }

  .why-us .why-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 20px; /* Reduced from 28px */
  }

  .hero p {
    font-size: 12px;
  }

  .hero .btn-hero-primary {
    padding: 8px 20px;
    font-size: 13px;
  }

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

  .hero .btn-watch-video i {
    font-size: 28px;
  }
  
  .section-header p {
    font-size: 22px;
  }

  .header .logo h1 {
    font-size: 22px;
  }

  .header .btn-book-a-table {
    padding: 8px 15px;
    margin-left: 10px;
    font-size: 13px;
  }
}