@font-face {
  font-family: 'Bebas Neue Cyrillic';
  src: url('../fonts/BebasNeueCyrillic.eot');
  src: local('Bebas Neue Cyrillic'), local('BebasNeueCyrillic'),
    url('../fonts/BebasNeueCyrillic.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BebasNeueCyrillic.woff2') format('woff2'),
    url('../fonts/BebasNeueCyrillic.woff') format('woff'),
    url('../fonts/BebasNeueCyrillic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #F0EDE6;

}

header {
  background: #FF5224;
}

.navbar {
  padding: 25px 0;
  background: #FF5224;
}

.row {
  z-index: 10;
}

.nav-link {
  color: #F0EDE6 !important;
  font-weight: 300;
  font-size: 16px;
}

.active {
  border-bottom: 1px solid #F0EDE6;
}

.hero {
  padding: 135px 0 100px 0;
}

.hero-title {
  font-family: 'Bebas Neue Cyrillic';
  font-size: 100px;
  font-weight: 500;
  color: #F0EDE6;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-subtext {
  max-width: 460px;
  color: #F0EDE6;
  font-size: 16px;
  margin-top: 20px;
}

.btn {
  position: relative;
  z-index: 9;
}

.hero-btn {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.btn-white {
  background-color: #F0EDE6;
  color: #ff4f24;
  font-weight: bold;
  padding: 12px 50px;
  text-transform: uppercase;
  border-radius: 20px;
}

.btn-outline-white {
  border: 2px solid #F0EDE6;
  color: #F0EDE6;
  font-weight: bold;
  padding: 12px 0;
  font-size: 16px;
  width: 220px;
  text-transform: uppercase;
  border-radius: 20px;
}

.btn-title {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  padding: 12px 30px;
  color: #FF5224;
  border: 1px solid #FF5224;
  border-radius: 20px;
}

.btn-title:hover {
  background: #FF5224;
  color: #F0EDE6;
}

.btn-card {
  font-size: 16px;
  text-transform: uppercase;
  width: 160px;
  padding: 10px 0;
  color: #FF5224;
  border: 1px solid #FF5224;
  border-radius: 30px;
}

.btn-card:hover {
  background: #FF5224;
  color: #F0EDE6;
}

.food-card {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.food-card img {
  height: 100%;
  object-fit: cover;
}

.order-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #F0EDE6;
  color: #FF5224;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-badge img {
  width: 18px;
  height: 18px;
}


.about-descr {
  font-size: 20px;
  color: #FF5224;
  font-weight: 700;
  max-width: 650px;
}

.about-wrapper {
  position: relative;
}

.highlight-block {
  position: relative;
  background: #F0EDE6;
  padding: 120px 0 90px 0;
}

.main-word {
  font-family: 'Bebas Neue Cyrillic';
  font-size: 200px;
  text-transform: uppercase;
  opacity: 0.1;
  color: #FF5224;
  font-weight: 500;
  margin-left: 150px;
}

.text-block {
  font-family: 'Bebas Neue Cyrillic';
  color: #ff4f24;
  position: absolute;
  font-weight: 400;
  top: 70%;
  left: 37%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 700px;
  text-transform: uppercase;
  font-size: 25px;
}

.tag {
  font-family: 'Bebas Neue Cyrillic';
  color: #ff4f24;
  border: 1px solid #ff4f24;
  border-radius: 20px;
  padding: 10px 30px 5px 30px;
  font-size: 25px;
  position: absolute;
  white-space: nowrap;
  background-color: transparent;
}

.tag1 {
  top: 22%;
  left: 50%;
  transform: rotate(5deg);
}

.tag2 {
  top: 45%;
  right: 15%;
  transform: rotate(-4deg);
}

.tag3 {
  bottom: 22%;
  left: 15%;
  transform: rotate(-2deg);
}

@media (max-width: 768px) {
  .text-block {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 1rem;
    margin-top: -100px;
  }
 
  .tag {
    display: none;
  }
}

.swiper {
  width: 100%;
  background: #F0EDE6;
  padding-bottom: 100px;
}

.swiper-slide {
  width: 285px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.marquee-wrapper {
  background-color: #ff4f22;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.marquee-text {
  display: flex;
  padding: 50px 0;
}

.marquee-text span {
  font-family: 'Bebas Neue Cyrillic';
  display: inline-block;
  font-weight: 700;
  margin: 0 50px;
  font-size: 32px;
  color: white;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.menu {
  padding: 100px 0;
  background: #F0EDE6;
  position: relative;
}

.index-line {
  position: absolute;
  top: 0;
  z-index: 1;
}

.index-line img {
  height: 100%;
}

.index-line-right {
  right: 0;
  top: 65%;
}

.index-line-left {
  left: -25px;
  height: 750px;
  top: 30%;
}

@media (max-width: 991.98px) {
  .index-line {
    display: none;
  }
}

.title-block {
  font-family: 'Bebas Neue Cyrillic';
  text-transform: uppercase;
  font-size: 60px;
  color: #FF5224;
}

.cards {
  margin-top: 40px;
  position: relative;
  z-index: 9;
}

.card {
  padding: 20px;
}

.card-body {
  margin-top: 20px;
  padding: 0;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  min-height: 55px;
}

.card-text {
  font-size: 18px;
  font-weight: 400;
  min-height: 70px;
}


.card-price {
  font-family: 'Bebas Neue Cyrillic';
  color: #FF5A2B;
  font-size: 24px;
}

.card-call {
  font-family: 'Bebas Neue Cyrillic';
  font-size: 20px;
  color: #959595;
}

.menu-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-wrapper {
  position: relative;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.menu-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF5A2B;
  color: white;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-wrapper:hover .menu-hover {
  opacity: 1;
}

.image-wrapper:hover .menu-img {
  opacity: 0;
}

.semi .image-wrapper:hover .menu-img {
  opacity: 1;
}

.fire-icon {
  position: absolute;
  line-height: 0;
  bottom: -1rem;
  right: 1rem;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 50%;
  z-index: 3;
}

.fire-icon img {
  width: 25px;
  height: 25px;
}

.title-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-list li {
  font-size: 20px;
}

.semi {
  margin-top: 100px;
}

.special {
  margin-top: 100px;
}


.special-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 9;
}


.special-img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  object-fit: cover;
}

.special-title {
  font-size: 20px;
  font-weight: 700;
}

.special-subtitle {
  color: #FF5224;
  margin-top: 20px;
}

.dot {
  color: black;
  font-size: 1rem;
  margin-right: 5px;
}

.special-list {
  margin-top: 10px;
  font-size: 16px;
}

.text-muted {
  font-size: 12px;
  color: #959595;
}

.special-list li {
  margin-top: 10px;
  margin-left: 5px;
}

.menu-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 60px;
}

.menu-price {
  margin-right: 40px;
}

.menu-kcal {
  color: #999;
}

.order-btn {
  border: 1px solid #ff3d00;
  color: #ff3d00;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  transition: all 0.3s;
}

.order-btn:hover {
  background-color: #ff3d00;
  color: white;
}


.team {
  background: #F0EDE6;
  padding-bottom: 100px;
}

.team-title {
  font-family: 'Bebas Neue Cyrillic';
  color: #FF5224;
  text-transform: uppercase;
  font-size: 185px;
  letter-spacing: 5px;
  text-align: center;
  opacity: 0.1;
  z-index: 2;
}

.team-block {
  margin-top: -115px;
}

.team-member {
  text-align: center;
  z-index: 10;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.team-member h5 {
  font-size: 20px;
  margin-top: 10px;
  font-weight: 700;
}

.team-member p {
  margin-top: 10px;
  font-size: 16px;
  color: #959595;
}

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 450px;
  position: relative;
  overflow: hidden;
  padding: 125px 0;
  background: url(../images/bg-banner.png) center center/cover no-repeat
}

.banner-content {
  position: relative;
  z-index: 5;
}

.banner-content img {
  position: absolute;
  bottom: -45%;
  width: 450px;
  height: 455px;
  z-index: -1;
}

.banner-title {
  font-family: 'Bebas Neue Cyrillic';
  font-size: 80px;
  color: #FF5224;
  margin: 0;
  margin-bottom: 35px;
  z-index: 10;
}



.footer {
  margin-top: 100px;
  background-color: #FF5224;
  color: white;
  padding: 70px 0;
  font-family: 'Bebas Neue Cyrillic';
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-left h2 {
  font-size: 35px;
}

.footer-left p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
  margin-top: 15px;
}

.footer-right {
  text-align: left;
}

.footer-right p {
  font-family: "Lato", sans-serif;
  font-size: 18px;

}


.footer-right img {
  width: 32px;
  height: 32px;
  margin-top: 15px;
  vertical-align: middle;
}

.copyright {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  margin-top: 25px;
}



@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-right {
    text-align: center;
  }
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: #fff;
  border-left: 1px solid #ccc;
  padding: 20px;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}

.cart-sidebar.show {
  transform: translateX(0);
}


.cart-sidebar h4 {
  color: #FF5224;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 25px;
}

.cart-item {
  background: #F6F6F6;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 16px;
  margin-top: 25px;
}

.cart-item img {
  width: 125px;
  height: 125px;
  border-radius: 16px;
  object-fit: cover;
}

.cart-items-main {
  width: 100%;
  padding: 20px 15px 20px 25px;
  display: flex;
  flex-direction: column;
}

.cart-items-name {
  font-size: 18px;
}

.cart-items-bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 28px;
}

.cart-items-price {
  font-family: 'Bebas Neue Cyrillic';
  font-size: 20px;
  color: #FF5224;
}

.cart-item input[type="number"] {
  width: 60px;
  padding: 2px 4px;
}



.remove-item {
  position: absolute;
  top: 5px;
  right: 5px;
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: #c00;
  cursor: pointer;
}

.add-to-cart.added {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}


.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px; 
  margin-top: 20px;
}

.cart-total p {
  font-size: 16px;
  color: #959595;

}

#cart-total  {
  font-size: 20px;
  font-weight: 700;
  color: #262626;
}


.cart-items-order {
  width: 100%;
  padding: 12px 0;
  border-radius: 30px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 20px;
  background: #FF5224;
  border: 1px solid #FF5224;
  margin-top: 30px;
}

.cart-items-order:hover {
  color: #FF5224;
  border: 1px solid #FF5224;
}

.cart-items-order:active {
  color: #FF5224 !important;
  background: white !important;
  border: 1px solid #FF5224 !important;
  box-shadow: 1px 1px 10px #FF5224 !important;
}

.cart-items-order:focus-visible {
  box-shadow: 1px 1px 10px #FF5224;
  background: white;
  color: #FF5224;
}

.btn-success:hover {
  color: #FF5224;
  background: white;
  border: 1px solid #FF5224;
}

.btn-success:active {
  color: #FF5224 !important;
  background: white !important;
  border: 1px solid #FF5224 !important;
  box-shadow: 1px 1px 10px #FF5224 !important;
}


.btn-success:focus-visible {
  box-shadow: 1px 1px 10px #FF5224;
  background: white;
  color: #FF5224;
}

#cart-toggle.animated {
  animation: cart-bounce 0.4s ease;
}

@keyframes cart-bounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.dinners {
  position: relative;
  z-index: 10;
}

.dinner-img__human {
  position: absolute;
  bottom: 12%;
  right: 0;
}

.dinner-img__human img {
  height: 650px;
}

@media (max-width: 991.98px) {
  .dinner-img__human {
    display: none;
  }
}