@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Bauyrsaq CSS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
:root {
  --mantis: #7ac74f;
  --argentinian-blue: #4bb3fd;
  --ghost-white: #f7f7ff;
  --prussian-blue: #0b3954;
  --ut-orange: #ff8811;
}

header {
  padding: 24px;
  background-color: var(--prussian-blue);
}

.navbar-custom {
  background-color: var(--prussian-blue) !important;
}

.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
  color: var(--ghost-white) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--mantis) !important;
}

.navbar-toggler {
  border-color: var(--ghost-white) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}
.logo {
  height: 40px;
}
/* .heading-primary {
  margin-bottom: 24px;
}

#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b3954;
  padding: 1rem 2rem;
  margin-bottom: 24px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0b3954;
  padding: 0 24px;
  border-bottom: 2px solid #eee;
}

nav {
  background-color: var(--prussian-blue);
  padding: 0.5rem 1rem;
}

.logo {
  height: 54px;
}

.nav-link {
  text-decoration: none;
  color: #f7f7f7;
  align-items: center;
  margin-left: 10px;
  padding: 5px 10px;
}

.nav-link:link,
.nav-link:visited {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link:active {
  color: #535353;
}

.nav-link.nav-link-bor:link,
.nav-link.nav-link-bor:visited {
  padding: 12px 24px;
  border-radius: 9px;
  color: #fff;
  background-color: #214d6d;
}

.nav-link.nav-link-bor:hover,
.nav-link.nav-link-bor:active {
  background-color: #1c435e;
} */

/* .about-food {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  margin-bottom: 156px;
}

.description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
  color: rgb(85, 85, 85);
}

.food-photo-box {
  grid-row: 1 / 2;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
}

.food-photo {
  width: 100%;
  display: block;
  transition: all 0.4s;
}

.food-photo-box:hover .food-photo {
  transform: scale(1.05);
} */

body.dark-mode {
  background-color: #121212;
  color: #f1f1f1;
}

.dark-mode .text-dark {
  color: #f1f1f1 !important;
}

.dark-mode .btn-outline-light {
  border-color: #f1f1f1;
}

.grid {
  display: grid;
  column-gap: 64px;
  row-gap: 96px;
}

.footer {
  padding: 64px 0;
  border-top: 1px solid #eee;
  background-color: var(--prussian-blue) !important;
}

.dark-mode footer {
  background-color: #0f0f0f !important;
  color: #e8eef6 !important;
  border-top: 1px solid #2e2e2e;
  transition: background-color 0.4s ease, color 0.4s ease;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 32px;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
}

.social-icon {
  height: 24px;
  width: 24px;
}

.copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #dedee6;
  margin-top: 24px;
}

.footer-heading {
  padding-top: 24px;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #f7f7ff;
}

.contacts {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}

.address {
  margin-bottom: 24px;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 16px;
  color: #dedee6;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #adadb3;
}

.team-col {
  margin-top: 24px;
}

.team-p {
  color: #f7f7ff;
}

.dish-container {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 16px;
  background-color: #fffaf2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  transition: transform 0.3s ease;
}

.dish-container:hover {
  transform: scale(1.02);
}

.dishName {
  font-size: 2rem;
  color: #a0522d;
  font-weight: bold;
}

.dishType,
.dishIngredients,
.dishDesc {
  font-size: 1.2rem;
  color: #333;
  margin-top: 10px;
}

#infoBtn {
  font-size: 1.1rem;
  border-radius: 10px;
}

/* .container {
  max-width: 1200px;
  padding: 0 320px;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 64px;
  row-gap: 96px;
}

p {
  color: #dedee6;
}

.footer {
  padding: 64px 0;
  border-top: 1px solid #eee;
  background-color: #0b3954;
}

.grid--footer {
  grid-template-columns: 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 32px;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
}

.social-icon {
  height: 24px;
  width: 24px;
}

.copyright {
  font-size: 14px;
  line-height: 1.6;
  color: #dedee6;
  margin-top: 24px;
}

.footer-heading {
  padding-top: 24px;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #f7f7ff;
}

.contacts {
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}

.address {
  margin-bottom: 24px;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 16px;
  color: #dedee6;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #adadb3;
}

.team-col {
  margin-top: 24px;
}

.team-p {
  color: #f7f7ff;
} */

* {
  transition: background-color 0.4s ease, color 0.4s ease,
    border-color 0.3s ease;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}
.notification.show {
  opacity: 1;
  transform: translateY(0);
}
/* Прогресс-бар сверху */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px; /* толщина линии */
  width: 0%;
  background: linear-gradient(90deg, #28a745, #80ed99);
  z-index: 9999;
  transition: width 0.15s ease-out;
}
