/**
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #00A1C9;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;

  right: 18px;
  bottom: 160px;

  width: 52px;
  height: 52px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 998;
  background: #9C9C9C;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #00A1C9;
  color: #fff;
}

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


/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(255, 255, 255, 1.0);
  z-index: 996;
  color: rgba(255, 255, 255, 1.0);

}
#topbar.topbar-transparent {
  background: solid;
}
#topbar.topbar-scrolled {
  top: -50px;
}
#topbar i {
  color: #424136;
  line-height: 0;
}
#topbar i span {
  color: #424136;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 997;
  padding: 10px 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

#header.header-transparent {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#header.header-scrolled {
  height: 70px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/*--------------------------------------------------------------
# Logo
--------------------------------------------------------------*/
#header .logo h1 {
  font-size: 34px;
  margin: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
}

#header .logo h1 a {
  color: #151617;
  text-decoration: none;
}

#header .logo h1 a:hover {
  color: #00A1C9;
}

#header .logo img {
  max-height: 55px;
  width: auto;
  display: block;
}

/*--------------------------------------------------------------
# Header Layout Fix
--------------------------------------------------------------*/
#header .container-fluid,
#header .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo {
  display: flex;
  align-items: center;
}


/*--------------------------------------------------------------
# Mobile Header Fix
--------------------------------------------------------------*/
@media (max-width: 992px) {
  #header {
    top: 0;
  }
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #00A1C9;
  color: #fff;
  border-radius: 50px;
  margin: 0 0 0 20px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}
.book-a-table-btn:hover {
  background: #ffa012;
  color: #fff;
}
@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #151617;
  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 .active, .navbar .active:focus, .navbar li:hover > a {
  color: #00A1C9;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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: 14px;
  font-weight: 400;
  color: #433f39;
}
.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: #00A1C9;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #1B4F54;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: 0.3s;
  background: transparent;
  border: 0;
  padding: 6px 8px;
  position: relative;
  z-index: 10001;
}

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

  #header .container-fluid.container-xl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  #header .logo {
    flex: 0 0 auto;
    margin-right: 0 !important;
  }

  #header .logo img {
    max-height: 55px;
    width: auto;
  }

  #header .logo h1,
  #header .logo .logo-text {
    display: none;
  }

  .navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 0 0 auto;
    min-width: auto;
    position: static;
  }

  .navbar ul {
    display: none;
  }

  .header-extras {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin: 0;
    flex: 0 0 auto;
  }

  .header-extras a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #1B4F54;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50%;
  }

  .header-extras a i {
    font-size: 18px;
    line-height: 1;
  }

  .header-extras a + a {
    padding-left: 0;
  }

  .header-extras a + a::before {
    display: none;
  }

  .header-extras a span {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    margin-left: 2px;
    padding: 6px 8px;
    position: relative;
    z-index: 10001;
  }
}

/* Fullscreen overlay */
.navbar-mobile {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  z-index: 9999 !important;
  background: rgba(39, 37, 34, 0.35);
  animation: mobileNavFadeIn 0.25s ease;
}

.navbar-mobile .header-extras {
  display: none !important;
}

/* Close button */
.navbar-mobile .mobile-nav-toggle {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 10001;
  font-size: 32px;
  color: #1B4F54;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  padding: 6px 8px;
}

/* Animated menu panel */
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 15px 0;
  background-color: #fff;
  overflow-y: auto;
  border-radius: 0;
  animation: mobileMenuSlideDown 0.35s ease;
}

/* Links */
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 12px 20px;
  font-size: 18px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #00A1C9;
}

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

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

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

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #00A1C9;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Mobile Nav Animations
--------------------------------------------------------------*/
@keyframes mobileNavFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mobileMenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}
#hero .carousel-item {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
#hero .carousel-item::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.0);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-container {
  display: flex;
  justify-content: left;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 300px;
  left: 0;
  right: 0;

}

#hero .carousel-content {
  background: rgba(0, 122, 153, 0.35);
  padding: 22px 30px;
  border-radius: 6px;
  display: inline-block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: heroContentIn 1s ease;
  box-shadow: 0 10px 30px rgba(0, 122, 153, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 600;
  text-shadow: 0px 0px rgba(66, 65, 54, 0.5);

}
#hero h2 span {
  color: #ffffff;
}
#hero p {
  width: 100%;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.4s;
  margin: auto auto auto auto;
  font-size: 28px;
  text-shadow: 0px 2px rgba(0, 122, 153, 0.0);
  color: #ffffff;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.0);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.0);
  color: rgba(0, 161, 201, 1.0);
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#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;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #00A1C9;
}
#hero .btn-menu:hover, #hero .btn-book:hover {
  background: #00A1C9;
  color: #fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 35px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero p, .hero h2 {

    text-align: center;
  }
}


@media (min-width: 800px) {
  #hero h2 {
  margin-left: 200px;
  }
  #hero p {

  margin-left: 200px;
  width: 80%;
  }
}

@media (min-width: 1800px) {
  #hero h2 {
  margin-left: 300px;
  }
  #hero p {
  margin-left: 300px;
  width: 40%;
  }
}

@media (min-width: 2000px) {
  #hero h2 {
  margin-left: 600px;
  }
  #hero p {
  width: 30%;
  margin-left: 600px;
  }
}

@media (min-width: 3000px) {
  #hero h2 {
  margin-left: 1280px;
  }
  #hero p {
  width: 40%;
  margin-left: 1280px;
  }
}






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







.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 25px;
}
.section-title h2 {
  margin: 5px 0 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #5f5950;
}
.section-title h2 span {
  color: #00A1C9;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f1ef;
  min-height: 40px;
  margin-top: 120px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #f5f5f5; /* very light gray */
  position: relative;
}
.about .content {
  padding: 0 80px;
}
.about .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #00A1C9;
}
.about .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.about .content p {
  font-size: 18px;
  color: #444444;
}
.about .content ul {
  list-style: none;
  font-size: 18px;
  padding: 0;
}
.about .content ul li + li {
  margin-top: 15px;
}
.about .content ul li {
  position: relative;
  padding-left: 26px;
}
.about .content ul i {
  font-size: 20px;
  color: #00A1C9;
  position: absolute;
  left: 0;
  top: 2px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .video-box {

    background: url(../img/about.png) center center no-repeat;
    background-size: cover;
    position: relative;
}







.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#00A1C9 50%, rgba(255, 176, 59, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.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::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 176, 59, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #00A1C9;
  transform: scale(20);
}
.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;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@media (max-width: 1024px) {
  .about .content, .about .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .about .content {
    padding-top: 30px;
  }
  .about .accordion-list {
    padding-bottom: 30px;
  }
}

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

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  padding: 30px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  height: 100%;
}
.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffcf88;
}
.why-us .box h4 {
  font-size: 20px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #54504B;
}
.why-us .box p {
  color: #54504B;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.why-us .box:hover {


  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}
.why-us .box:hover span, .why-us .box:hover h4, .why-us .box:hover p {
  color: #2B2824;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 16px 10px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 2px solid #00A1C9;
  border-radius: 50px;
}
.menu #menu-flters li:hover, .menu #menu-flters li.filter-active {
  color: #fff;
  background: #00A1C9;
}
.menu #menu-flters li:last-child {
  margin-right: 0;
}
.menu .menu-content {
  margin-top: 30px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.menu .menu-content::after {
  content: "" ;
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #dad8d4;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.menu .menu-content a {
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #00A1C9;
  font-size: 20px;
}
.menu .menu-content span {
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
}
.menu .menu-ingredients {
  font-style: italic;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #948c81;
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}
.specials .nav-tabs {
  border: 0;
}
.specials .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #433f39;
  border-radius: 0;
  border-right: 2px solid #e8e7e4;
  font-weight: 600;
  font-size: 15px;
}
.specials .nav-link:hover {
  color: #00A1C9;
}
.specials .nav-link.active {
  color: #00A1C9;
  border-color: #00A1C9;
}
.specials .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}
.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #433f39;
}
.specials .details p {
  color: #777777;
}
.specials .details p:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
  .specials .nav-link.active {
    color: #fff;
    background: #00A1C9;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

/* ============ EVENTS / SWIPER (CLEAN) ============ */
.events {
    background: #f5f5f5; /* very light gray */
    position: relative;
}

/* If you use overlay elsewhere, keep it behind everything */
.events::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

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

.events .section-title h2 {
  color: #54504B;
}

.events .event-item {
  color: #54504B;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #00A1C9;
}

.events .profession span {
  border-top: 1px solid #00A1C9;
}

/* Swiper container */
.events .events-slider {
  position: relative;
  padding-top: 56px; /* room for pagination + arrows */
  touch-action: pan-y; /* keep vertical scroll, allow horizontal swipe */
}

/* Pagination at top (don't block slide clicks) */
.events .events-slider .swiper-pagination {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  z-index: 20;
  pointer-events: none;
}

/* But bullets must stay clickable */
.events .events-slider .swiper-pagination .swiper-pagination-bullet {
  pointer-events: auto;
}

/* Bullets */
.events .events-slider .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(155, 155, 155, 0.65);
  opacity: 1;
}

.events .events-slider .swiper-pagination-bullet-active {
  background: #00A1C9;
}

/* Arrows always visible */
.events .events-slider .swiper-button-prev,
.events .events-slider .swiper-button-next {
  color: #00A1C9;
  z-index: 25; /* above pagination */
  top: 28px;
  width: 38px;
  height: 38px;
  pointer-events: auto;
}

/* Arrow icon size */
.events .events-slider .swiper-button-prev::after,
.events .events-slider .swiper-button-next::after {
  font-size: 20px;
  font-weight: 700;
}

/* Mobile: keep arrows inside */
@media (max-width: 768px) {
  .events .events-slider .swiper-button-prev { left: 8px; }
  .events .events-slider .swiper-button-next { right: 8px; }
}

/* Prevent image drag stealing swipe */
.events .events-slider img {
  -webkit-user-drag: none;
  user-drag: none;
}

/* Lightbox link */
.events .event-item a.events-lightbox {
  display: block;
  cursor: zoom-in;
  position: relative;
  z-index: 5;
}

.events .event-item a.events-lightbox img {
  transition: transform 0.25s ease;
}

@media (hover:hover) {
  .events .event-item a.events-lightbox:hover img {
    transform: scale(1.02);
  }
}

/* ======================================================
   EVENTS PRODUCT IMAGE GALLERY (MAIN + THUMBS) - FIXED
   ====================================================== */

/* Main product image swiper */
.events .product-main-swiper {
  width: 100%;
}

/* Main image */
.events .product-main-swiper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Thumbs: lock height, but DON'T flex-center slides (that can fight Swiper widths) */
.events .product-thumbs-swiper {
  margin-top: 12px;
  height: 100px;
  overflow: hidden;
}

/* Swiper uses transforms; keep wrapper normal, only lock height */
.events .product-thumbs-swiper .swiper-wrapper {
  height: 100px;
}

/* Thumb slide: lock height, but let Swiper control width */
.events .product-thumbs-swiper .swiper-slide {
  height: 100px;
  opacity: 0.55;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

/* Active thumb */
.events .product-thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
}

/* Thumb image: the REAL lock */
.events .product-thumbs-swiper img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  border: 2px solid transparent;
  user-select: none;
  -webkit-user-drag: none;
}

/* Active thumb border */
.events .product-thumbs-swiper .swiper-slide-thumb-active img {
  border-color: #00A1C9;
}

/* Hover boost for desktop */
@media (hover: hover) {
  .events .product-thumbs-swiper .swiper-slide:hover {
    opacity: 0.85;
  }
}

/* Keep scroll natural */
.events .product-main-swiper,
.events .product-thumbs-swiper {
  touch-action: pan-y;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .events .product-thumbs-swiper {
    margin-top: 8px;
  }
  .events .product-thumbs-swiper .swiper-slide {
    opacity: 0.7;
  }
}







/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}
.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .error-message br + br {
  margin-top: 25px;
}
.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.book-a-table .php-email-form input, .book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.book-a-table .php-email-form input {
  height: 44px;
}
.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}
.book-a-table .php-email-form button[type=submit] {
  background: #00A1C9;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.book-a-table .php-email-form button[type=submit]:hover {
  background: #ffa012;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  padding-bottom: 0;
  width: 100%;
}




@media (max-width: 792px) {
  .gallery {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .gallery {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}




.gallery .gallery-item {
  overflow: hidden;

  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
  transform: scale(1.1);
}



/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs {
  background: url("") center center no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}
.chefs::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
}
.chefs .container {
  position: relative;
  z-index: 10;
}
.chefs .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.chefs .member .pic {
  overflow: hidden;
}
.chefs .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 20px 0;
  color: #433f39;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.chefs .member h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
  color: #6c665c;
  position: relative;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.chefs .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #00A1C9;
  bottom: 0;
  left: calc(50% - 25px);
}
.chefs .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.chefs .member .social {
  margin-top: 15px;
}
.chefs .member .social a {
  transition: color 0.3s;
  color: #7a7368;
}
.chefs .member .social a:hover {
  color: #00A1C9;
}
.chefs .member .social i {
  font-size: 16px;
  margin: 0 2px;
}
@media (max-width: 992px) {
  .chefs .member {
    margin-bottom: 110px;
  }
}
@media (min-width: 1024px) {
  .chefs {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 30px 0;
  background: #f5f5f5; /* very light gray */
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(12, 11, 10, 0.0);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #5F5950;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #5F5950;
  font-family: "Poppins", sans-serif;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #5F5950;
  margin: 0 0 15px 0;
  font-family: "Poppins", sans-serif;
}
.testimonials .testimonial-item .stars {
  color: #5F5950;
  margin-bottom: 10px;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(155, 155, 155, 0.9);
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #5F5950;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(155, 155, 155, 0.5);
  opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00A1C9;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}
.contact .info {
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #00A1C9;
  float: left;
  width: 44px;
  height: 44px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #433f39;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 19px;
  color: #7a7368;
}
.contact .info:hover i {

}
.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.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;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #00A1C9;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ffa012;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #35322d;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  color: #00A1C9;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 10px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #46423b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #00A1C9;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.hz {
  background-repeat: no-repeat;
  object-position: center top;
  display: block;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}


/*--------------------------------------------------------------
# S.S.S
--------------------------------------------------------------*/

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  color: #5C5C5C;
  text-align: center;
  background-color: #fff;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
}
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #00A1C9;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0px;
  box-shadow: 0 0 0 0.0rem rgba(13, 110, 253, 0.25);
}
.accordion-header {
  margin-bottom: 0;
}
.accordion-item {
  background-color: #F7F7F7;
  border: 1px solid rgba(50, 50, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(45deg);
}



@media (max-width: 1500px) {
.accordion-button {
    font-size: 0.90rem;
    }
}


/* Hide SEO H1 visually but keep it for screen readers + Google */
.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* =========================
   WhatsApp Floating Button
   ========================= */

.whatsapp-float{
  position: fixed !important;
  right: 18px !important;
  bottom: 20px !important;

  width: 52px;
  height: 52px;
  border-radius: 999px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;
  text-decoration: none;

  z-index: 9999 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.whatsapp-float i{
  font-size: 28px;
  line-height: 1;
}

.whatsapp-float:hover{
  color: #fff;
    box-shadow: 0px 0px 10px rgba(103, 207, 112, 0.75);
}

/* Whatsapp Small screens */
@media (max-width: 576px){
  .whatsapp-float{
    right: 18px !important;
    bottom: 20px !important;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float i{
    font-size: 26px;
  }
}


/* =========================
   Phone Floating Button
   ========================= */

.phone-float{
  position: fixed !important;
  right: 18px !important;
  bottom: 90px !important;

  width: 52px;
  height: 52px;
  border-radius: 999px;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: rgba(0, 111, 255, 0.75);

  color: #fff;
  text-decoration: none;

  z-index: 9999 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.phone-float i{
  font-size: 28px;
  line-height: 1;
}

.phone-float:hover{
  color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 111, 255, 0.75);
}

/* Phone Small screens */
@media (max-width: 576px){
  .phone-float{
    right: 18px !important;
    bottom: 90px !important;
    width: 52px;
    height: 52px;
  }
  .phone-float i{
    font-size: 26px;
  }
}


/* Referans Card */

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

.referans-caption {
  padding-top: 10px;
}

.referans-caption h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.referans-caption p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}


/* Scroll Down FX */

.scroll-down {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 29px solid transparent;
  border-right: 29px solid transparent;
  border-top: 36px solid #ffffff;
  z-index: 20;
  cursor: pointer;
  animation: scrollBounce 2s infinite;
}

/* ripple triangles */

.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 29px solid transparent;
  border-right: 29px solid transparent;
  border-top: 36px solid rgba(0,255,255,0.8);
  transform: translateX(-50%) scale(0.5);
  opacity: 0;
}

/* first ripple */

.scroll-down:hover::before {
  animation: triangleRipple 0.9s ease-out;
}

/* second ripple (delayed) */

.scroll-down:hover::after {
  animation: triangleRipple 0.9s ease-out 0.18s;
}

/* ripple animation */

@keyframes triangleRipple {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(2.5);
    opacity: 0;
  }
}

/* bounce (keeps horizontal center intact) */

@keyframes scrollBounce {
  0%,100% { transform: translate(-50%,0); }
  50% { transform: translate(-50%,8px); }
}

/*--------------------------------------------------------------
# Header Extras
--------------------------------------------------------------*/
.header-extras {
  margin-left: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.header-extras a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111111;
  font-size: 18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.header-extras a i {
  font-size: 18px;
  line-height: 1;
}

.header-extras a:hover {
  color: #00A1C9;
}

.header-extras a:active {
  transform: none;
}

/* separator */
.header-extras a + a {
  position: relative;
  padding-left: 16px;
}

.header-extras a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #e5e7eb;
}

@media (max-width: 991px) {
  .header-extras {
    margin-left: 10px;
    gap: 8px;
  }

  .header-extras a {
    gap: 0;
    font-size: 0;
    width: 34px;
    height: 34px;
    justify-content: center;
    border-radius: 50%;
    white-space: normal;
  }

  .header-extras a i {
    font-size: 18px;
  }

  .header-extras a + a {
    padding-left: 0;
  }

  .header-extras a + a::before {
    display: none;
  }

  .header-extras a span {
    display: none;
  }
}


/* Keep header icon buttons stable inside navbar */
.navbar .header-extras a,
.navbar .header-extras a:focus,
.navbar .header-extras a:active,
.navbar .header-extras a:hover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  width: 34px;
  height: 34px;
  font-size: 0 !important;
  line-height: 1;
  transform: none !important;
  box-shadow: none;
  outline: none;
  white-space: normal;
  -webkit-tap-highlight-color: transparent;
}

.navbar .header-extras a i,
.navbar .header-extras a:focus i,
.navbar .header-extras a:active i,
.navbar .header-extras a:hover i {
  font-size: 18px !important;
  line-height: 1;
  transform: none !important;
}
