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


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



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

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

.header .topbar {
  background-color: var(--menu-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;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
position: fixed;
visibility: hidden;
opacity: 0;
border-radius: 4px;
transition: all 0.4s;
}

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



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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Menu 5 Section
--------------------------------------------------------------*/
.menu-5 .menu-filters {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu-5 .menu-filters li {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: all ease-in-out 0.3s;
  font-family: var(--heading-font);
  display: inline-flex;
  align-items: center;
}

.menu-5 .menu-filters li i {
  margin-right: 8px;
  font-size: 14px;
}

.menu-5 .menu-filters li:hover,
.menu-5 .menu-filters li.filter-active {
  color: var(--accent-color);
}

.menu-5 .menu-filters li:last-child {
  margin-right: 0;
}

.menu-5 .menu-item {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.menu-5 .menu-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-5 .menu-text {
  flex: 1;
  min-width: 0;
}

.menu-5 .menu-content {
  margin-bottom: 5px;
}

.menu-5 .menu-content a {
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
}

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

.menu-5 .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: var(--nav-font);
 
}

.menu-5 .menu-price {
  flex-shrink: 0;
  padding-left: 10px;
}

.menu-5 .menu-price span {
  color: var(--accent-color);
  font-weight: 600;
}

@media (min-width: 768px) {
  .menu-5 .menu-item {
    align-items: center;
    flex-wrap: nowrap;
  }

  .menu-5 .menu-text {
    flex: 1;
  }

  .menu-5 .menu-price {
    padding-left: 10px;
    align-self: center;
  }
}

@media (max-width: 767px) {
  .menu-5 .menu-item {
    padding-right: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .menu-5 .menu-text {
    width: calc(100% - 95px);
  }

  .menu-5 .menu-price {
    width: calc(100% - 95px);
    margin-left: 95px;
    padding-left: 0;
  }
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}