/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */


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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 14px;
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}



/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .filter-tabs {
  list-style: none;
  padding: 6px;
  margin: 0 0 40px 0;
  display: inline-flex;
  gap: 4px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border-radius: 50px;
}

.menu .filter-tabs li {
  cursor: pointer;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
}

.menu .filter-tabs li:hover {
  color: var(--accent-color);
}

.menu .filter-tabs li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 576px) {
  .menu .filter-tabs {
    flex-wrap: wrap;
    border-radius: 16px;
    justify-content: center;
  }

  .menu .filter-tabs li {
    padding: 8px 18px;
    font-size: 14px;
  }
}

.menu .dish-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
}



.menu .dish-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.menu .dish-card.featured::before {
  content: "\f524";
  font-family: "bootstrap-icons";
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.menu .dish-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.menu .dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu .dish-img-wrap .dish-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  color: var(--accent-color);
  backdrop-filter: blur(8px);
}

.menu .dish-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu .dish-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.menu .dish-header h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.menu .dish-header h3 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.menu .dish-header h3 a:hover {
  color: var(--accent-color);
}

.menu .dish-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent-color);
  white-space: nowrap;
  line-height: 1.3;
}

.menu .dish-desc {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
  flex: 1;
}

.menu .dish-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.menu .dish-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.menu .dish-meta span i {
  font-size: 15px;
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .menu .dish-img-wrap {
    height: 180px;
  }

  .menu .dish-body {
    padding: 20px;
  }

  .menu .dish-header h3 {
    font-size: 16px;
  }

  .menu .dish-price {
    font-size: 18px;
  }
}