h1 {
  text-align: center;
  padding: 15px 15px;
}

/* --- NAV --- */
.nav {
  position: sticky;
  top: 10px;
  z-index: 999;
  transition: .25s;
  max-width: 1000px;
  margin: 15px auto 0 auto;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(5px);
}
@media (max-width: 1200px) {
  .nav {
    max-width: 900px;
  }
}
@media (max-width: 991px) {
  .nav {
    top: 0;
    max-width: 100%;
    border-radius: 0;
  }
}

/* --- NAV__FOOD --- */
.nav__food {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (max-width: 767px) {
  .nav__food {
    justify-content: flex-start;
  }
}
.nav__food li {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 0 10px;
}
.nav__food li a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  padding: 0 10px;
  text-decoration: none;
  transform: scale(1);
  transition: .25s;
}
.nav__food li a:hover {
  transform: scale(1.1);
}
.nav__food li a span {
  font-size: 12px;
  color: #000;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}
.nav__food li a img {
  width: 40px;
  margin-bottom: 10px;
}

/* --- CONTAINER --- */
.container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1140px;
}
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}

/* --- SECTION__FOOD --- */
.section__food {
  
  z-index: 10;
  padding: 30px 0 30px 0;
}

.section__food .food__title {
  position: relative;
  z-index: 3;
  overflow: hidden;
  margin-top: 70px;
  padding: 10px 30px;
  font-size: 30px;
  text-align: center;
  color: #fff;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition: .25s;
}
@media (max-width: 991px) {
  .section__food .food__title {
    font-size: 26px;
    padding: 45px 30px;
  }
}
@media (max-width: 767px) {
  .section__food .food__title {
    font-size: 20px;
    text-align: center;
    padding: 30px 15px;
  }
}
.section__food .food__title:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.section__food .food__list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -15px;
  transition: .25s;
}
@media (max-width: 991px) {
  .section__food .food__list {
    margin: 0 -10px;
  }
}
.section__food .food__item {
  flex: 0 0 25%;
  padding: 15px;
}
@media (max-width: 991px) {
  .section__food .food__item {
    flex: 0 0 33.333333%;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .section__food .food__item {
    flex: 0 0 50%;
  }
}
.section__food .food__item .food__item__wrap {
  height: 100%;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  transition: .25s;
}
.section__food .food__item .food__item__wrap:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.section__food .food__item .food__item__wrap:hover .food__img img {
  transform: scale(0.9) rotate(5deg);
}
.section__food .food__item .food__img {
  display: flex;
}
.section__food .food__item .food__img img {
  width: 100%;
  transform: scale(1) rotate(0);
  transition: .25s;
}
.section__food .food__item .food__content {
  padding: 0 15px 25px 15px;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.section__food .food__name {
  margin: 10px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .section__food .food__name {
    font-size: 14px;
  }
}
.section__food .food__name a {
  text-decoration: none;
  color: #000;
  transition: .25s;
}
.section__food .food__name a:hover {
  color: #41b93c;
}
.section__food .food__price {
  font-weight: 500;
}
.section__food .food__price ins {
  font-size: 16px;
  text-decoration: none;
  color: #41b93c;
}
.section__food .food__price del {
  font-size: 16px;
  color: #999;
}
.section__food .food__viewall {
  padding-top: 30px;
  text-align: center;
}
.section__food .food__viewall a {
  text-decoration: none;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 12px 40px;
  transition: .25s;
}
.section__food .food__viewall a:hover {
  color: #fff;
  border-color: #41b93c;
  background-color: #41b93c;
}



/* --- SPECYFICZNE SEKCJE Z OBRAZKAMI --- */
#meat .food__title {
  background-color: #0a2663;
}
#seafood .food__title {
  background-color: #0a2663;
}
#vegetable .food__title {
  background-color: #0a2663;
}
#fruits .food__title {
  color: #000;
  background-color: #0a2663;
}
#bread .food__title {
  background-color: #0a2663;
}
#ebm {
  padding-bottom: 200px;
}
#ebm .food__title {
  background-color: #0a2663;
}
