/********** Template CSS **********/
:root {
    --primary: #F5B800;
    --light: #f1f8ff;
    --dark: #00A3E0;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.btn-primary {
  background-color: #F5B800;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}


.footer {
  background-color: #333;
  color: white;
  /* text-align: center; */
  padding: 20px 0;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #F5B800;
  transition: background-color 0.3s ease;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Footer ***/

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}
@media (max-width: 600px) {
  .contact-img {
    display: none;
  }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #F5B800;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #F5B800;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #F5B800;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #F5B800;
    color: #fff;
    padding: 8px 0;
    background: #F5B800;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #F5B800;
}
#declineBtn {
    background-color: #fff;
    color: #F5B800;
}
#declineBtn:hover {
    background-color: #F5B800;
    color: #fff;
}
/* Footer Style */


/* new styles  */
:root {
  --primary-bg: #F1E0C5;
  --primary-text: #333333;
  --heading-color: #5A3E36;
  --link-color: #00A3E0;
  --link-hover: #F5B800;
  --primary-btn: #F5B800;
  --primary-btn-text: #5A3E36;
  --primary-btn-hover: #D49A00;
  --secondary-btn: #00A3E0;
  --secondary-btn-hover: #0080B3;
  --card-bg: #FFFFFF;
  --card-bg-alt: #FAF8F3;
  --icon-green: #7BA05B;
  --icon-coral: #E28743;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-weight: 700;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-btn-hover);
  color: var(--primary-btn-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-btn);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--secondary-btn-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Стилі для блоку 1: Головний екран */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.hero-content:hover {
  transform: translateY(-5px);
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 500;
}

.hero-description {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btn-wrapper {
  display: flex;
  gap: 15px;
}

@media (max-width: 767.98px) {
  .hero-content {
    width: 100%;
    margin: 0 4px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-btn-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

/* Стилі для блоку 2: О нас */
.about-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
  position: relative;
  overflow: hidden;
}



.about-content {
  position: relative;
  z-index: 2;
}

.about-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 3px;
  width: 60px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 350px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-icon {
  color: var(--icon-coral);
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 5px;
}

/* Стилі для блоку 3: Популярные рецепты */
.recipes-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
  position: relative;
}

.recipes-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.recipes-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.recipe-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(90, 62, 54, 0.1);
}

.recipe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-image img {
  transform: scale(1.1);
}

.recipe-content {
  padding: 1.5rem;
}

.recipe-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 700;
}

.recipe-description {
  color: var(--primary-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.recipe-link {
  display: inline-flex;
  align-items: center;
  color: var(--link-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.recipe-link:hover {
  color: var(--link-hover);
  text-decoration: none;
  transform: translateX(5px);
}

.recipe-link .material-icons {
  font-size: 1.2rem;
  margin-left: 5px;
}

@media (max-width: 991.98px) {
  .about-image {
    margin-top: 2rem;
  }
  
  .recipe-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-title, .recipes-title {
    font-size: 2rem;
  }
  
  .recipe-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Стилі для блоку 4: Кулинарные секреты */
.secrets-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.secrets-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.secrets-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.secret-item {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secret-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.secret-title {
  font-size: 1.25rem;
  color: var(--heading-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.secret-title .material-icons-outlined {
  margin-right: 10px;
  color: var(--icon-coral);
}

.secret-description {
  color: var(--primary-text);
  line-height: 1.6;
}

/* Стилі для блоку 5: История кухни */
.history-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
  position: relative;
}

.history-container {
  position: relative;
  z-index: 1;
}

.history-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.history-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.history-content {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.history-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-text);
  margin-bottom: 2rem;
  position: relative;
}

.history-text p {
  margin-bottom: 1rem;
}

.history-text p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-btn);
  float: left;
  line-height: 1;
  padding-right: 10px;
  padding-top: 4px;
}

/* Стилі для блоку 6: Отзывы и фото читателей */
.reviews-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.reviews-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.reviews-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.review-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
}

.review-image {
  height: 200px;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.review-card:hover .review-image img {
  transform: scale(1.05);
}

.review-content {
  padding: 1.5rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 25px;
}

.review-author {
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
}

.review-author .material-icons {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--icon-green);
}

@media (max-width: 991.98px) {
  .review-card {
    margin-bottom: 2rem;
  }
  
  .secret-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .history-title, .secrets-title, .reviews-title {
    font-size: 2rem;
  }
  
  .history-text {
    font-size: 1rem;
  }
  
  .review-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Стилі для блоку 7: Форма подписки */
.form-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
}

.form-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.form-content {
  padding: 2.5rem;
}

.form-title {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.form-description {
  color: var(--primary-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.form-floating {
  margin-bottom: 1.25rem;
}

.form-floating input {
  border: 1px solid rgba(90, 62, 54, 0.2);
  border-radius: 8px;
}

.form-floating input:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 184, 0, 0.25);
  border-color: var(--primary-btn);
}

.form-floating label {
  color: var(--primary-text);
  opacity: 0.8;
}

.form-control::placeholder {
  color: transparent;
}

.form-section .btn-primary {
  margin-top: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Стилі для блоку 8: Контактная информация */
.contact-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.contact-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.contact-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--primary-btn);
  font-size: 1.5rem;
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-info-content {
  flex: 1;
}

.contact-info-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-info-text {
  color: var(--primary-text);
  line-height: 1.6;
}

.contact-info-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.contact-info-list li {
  margin-bottom: 0.5rem;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {
  .form-image {
    min-height: 300px;
  }
  
  .contact-card {
    margin-bottom: 2rem;
  }
  
  .map-container {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .form-title {
    font-size: 1.75rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
}

/* Стилі для блоку 9: Список категорий блюд */
.categories-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
}

.categories-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.categories-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.category-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--primary-btn);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-title {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.category-title .material-icons {
  margin-right: 10px;
  color: var(--icon-coral);
}

.category-description {
  color: var(--primary-text);
  line-height: 1.6;
}

/* Стилі для блоку 10: Новинки */
.new-recipes-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.new-recipes-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  text-align: center;
}

.new-recipes-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--primary-text);
  line-height: 1.6;
}

.recipe-tabs {
  margin-bottom: 2rem;
}

.nav-tabs {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 2rem;
}

.nav-tabs .nav-item {
  margin: 0 5px;
}

.nav-tabs .nav-link {
  border: none;
  background-color: var(--card-bg);
  color: var(--primary-text);
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
}

.nav-tabs .nav-link.active {
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
  border: none;
}

.tab-content {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.recipe-tab-content {
  display: flex;
  flex-direction: column;
}

.recipe-title {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.recipe-ingredients {
  margin-bottom: 1.5rem;
}

.recipe-ingredients-title {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.ingredients-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.ingredients-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-btn);
  font-weight: bold;
}

.recipe-instructions {
  margin-bottom: 1.5rem;
}

.recipe-instructions-title {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.instructions-list {
  list-style: none;
  padding-left: 0;
  counter-reset: instruction-counter;
}

.instructions-list li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.instructions-list li::before {
  counter-increment: instruction-counter;
  content: counter(instruction-counter) ".";
  position: absolute;
  left: 0;
  color: var(--primary-btn);
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .category-card {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .categories-title, .new-recipes-title {
    font-size: 2rem;
  }
  
  .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .nav-tabs .nav-item {
    flex-shrink: 0;
  }
}

/* Стилі для блоку 11: Приготовление мяса и его выдержка */
.meat-preparation-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
}

.meat-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.meat-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.meat-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  margin-bottom: 30px;
}

.meat-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.meat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.meat-card:hover .meat-image img {
  transform: scale(1.05);
}

.meat-content {
  padding: 1.5rem;
}

.meat-subtitle {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
}

.meat-subtitle .material-icons {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--icon-coral);
}

.meat-description {
  color: var(--primary-text);
  margin-bottom: 1rem;
}

.meat-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.meat-list-item {
  padding-left: 25px;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.meat-list-item::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--primary-btn);
  font-weight: bold;
  font-size: 1.2rem;
}

.meat-list-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Стилі для блоку 12: Пряности и травы в казахской кухне */
.spices-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.spices-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.spices-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.spices-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.spices-image-container {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.spices-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spices-container:hover .spices-image-container img {
  transform: scale(1.05);
}

.spices-content {
  padding: 2rem;
}

.spices-subtitle {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.spices-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 60px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.spice-item {
  margin-bottom: 1.5rem;
}

.spice-name {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.spice-name .material-icons {
  font-size: 1.2rem;
  margin-right: 8px;
  color: var(--icon-coral);
}

.spice-description {
  color: var(--primary-text);
  line-height: 1.6;
}

.spices-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  border-left: 3px solid var(--primary-btn);
  margin-bottom: 20px;
}

.spices-card:hover {
  transform: translateY(-5px);
}

.spices-card-title {
  font-size: 1.2rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.spices-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.spices-list-item {
  padding-left: 25px;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.spices-list-item::before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--primary-btn);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .meat-card, .spices-card {
    margin-bottom: 2rem;
  }
  
  .spices-image-container {
    height: 250px;
  }
}

@media (max-width: 767.98px) {
  .meat-title, .spices-title {
    font-size: 2rem;
  }
  
  .meat-subtitle, .spices-subtitle {
    font-size: 1.3rem;
  }
  
  .spices-image-container {
    height: 200px;
  }
}

/* Стилі для блоку 13: Эволюция традиций */
.evolution-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.evolution-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.evolution-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.evolution-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.evolution-content {
  padding: 2rem;
}

.evolution-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-text);
  text-align: justify;
}

.evolution-text p {
  margin-bottom: 1rem;
}

.evolution-text p:first-of-type::first-letter {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-btn);
  float: left;
  line-height: 0.8;
  padding-right: 10px;
  padding-top: 4px;
}

.evolution-image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.evolution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.evolution-container:hover .evolution-image img {
  transform: scale(1.05);
}

.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 3px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--icon-coral);
  border: 3px solid var(--card-bg);
  box-shadow: 0 0 0 3px var(--primary-btn);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.timeline-text {
  color: var(--primary-text);
  line-height: 1.6;
}

/* Стилі для блоку 14: Региональные особенности */
.regional-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
}

.regional-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.regional-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.region-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.region-card:hover {
  transform: translateY(-10px);
}

.region-image {
  height: 200px;
  overflow: hidden;
}

.region-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.region-card:hover .region-image img {
  transform: scale(1.1);
}

.region-content {
  padding: 1.5rem;
}

.region-name {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.region-name .material-icons {
  margin-right: 10px;
  color: var(--icon-coral);
}

.region-description {
  color: var(--primary-text);
  line-height: 1.6;
}

.region-badge {
  display: inline-block;
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 5px;
  margin-bottom: 5px;
}

.region-badges {
  margin-top: 1rem;
}

.region-map {
  height: 100%;
  min-height: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.region-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .evolution-image {
    min-height: 300px;
  }
  
  .region-card {
    margin-bottom: 2rem;
  }
  
  .region-map {
    margin-top: 2rem;
    min-height: 250px;
  }
}

@media (max-width: 767.98px) {
  .evolution-title, .regional-title {
    font-size: 2rem;
  }
  
  .evolution-image {
    min-height: 250px;
  }
  
  .timeline {
    padding-left: 20px;
  }
  
  .timeline-item {
    padding-left: 15px;
  }
  
  .timeline-item::before {
    left: -24px;
    width: 12px;
    height: 12px;
  }
}
/* Стилі для блоку 15: Степная и предгорная кухня */
.steppe-section {
  padding: 80px 0;
  background-color: var(--card-bg-alt);
}

.steppe-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.steppe-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.steppe-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.steppe-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.steppe-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-text);
}

.steppe-text p {
  margin-bottom: 1rem;
}

.steppe-text p:last-child {
  margin-bottom: 0;
}

.steppe-image {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.steppe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.steppe-container:hover .steppe-image img {
  transform: scale(1.05);
}

.steppe-icon {
  font-size: 3rem;
  color: var(--primary-btn);
  opacity: 0.2;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/* Стилі для блоку 16: Городская кулинарная адаптация */
.urban-section {
  padding: 80px 0;
  background-color: var(--primary-bg);
  position: relative;
}

.urban-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--heading-color);
  text-align: center;
  position: relative;
}

.urban-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 80px;
  background-color: var(--primary-btn);
  border-radius: 2px;
}

.urban-container {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.urban-content {
  padding: 2rem;
}

.urban-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--primary-text);
}

.urban-text p {
  margin-bottom: 1rem;
}

.urban-text p:last-child {
  margin-bottom: 0;
}

.urban-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  margin-top: 1.5rem;
}

.urban-image-item {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  position: relative;
}

.urban-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.urban-image-item:hover img {
  transform: scale(1.1);
}

.urban-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.urban-feature:last-child {
  margin-bottom: 0;
}

.urban-feature-icon {
  background-color: var(--primary-btn);
  color: var(--primary-btn-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.urban-feature-icon .material-icons {
  font-size: 1.2rem;
}

.urban-feature-content {
  flex: 1;
}

.urban-feature-title {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.urban-feature-text {
  color: var(--primary-text);
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .steppe-image {
    min-height: 250px;
  }
  
  .urban-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .steppe-title, .urban-title {
    font-size: 2rem;
  }
  
  .steppe-text, .urban-text {
    font-size: 1rem;
  }
  
  .steppe-content, .urban-content {
    padding: 1.5rem;
  }
}