*, :after, :before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #230C0F;
  font-size: 1.1rem;
  font-family: "Lora", serif;
}

main section {
  padding: 30px 20px;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #f5f5f5;
}

h4 {
  margin: 0;
}

.arrow-up {
  margin-top: 32px;
}
@media screen and (min-width: 700px) {
  .arrow-up {
    display: none;
  }
}

.phone_number {
  color: inherit;
  text-decoration: none;
}

.header {
  background-color: #230C0F;
  color: #f5f5f5;
}
@media screen and (min-width: 1000px) {
  .header {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.header__topbar {
  padding: 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .header__topbar {
    padding-bottom: 0px;
    min-height: auto;
  }
}
@media screen and (min-width: 1000px) {
  .header__topbar {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    grid-row: 1/2;
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 2% 1fr 1fr 2%;
  }
}
.header__hero-h1 {
  font-size: 1.8em;
  text-align: center;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 40px;
}
@media screen and (min-width: 1000px) {
  .header__hero-h1 {
    margin: 0;
    font-size: 1.8em;
    text-align: left;
    margin-left: 50px;
    grid-row: 1/2;
    grid-column: 1/-1;
    align-content: center;
  }
}
.header__hero-h1-sub {
  font-size: 0.7em;
}
.header__topbar-menu {
  grid-column: 3/4;
}
.header__icons {
  padding-top: 20px;
  padding-bottom: 15px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 700px) {
  .header__icons {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
}
@media screen and (min-width: 700px) {
  .header__icons-contact {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}
@media screen and (min-width: 700px) {
  .header .header__icons-contact-phone {
    border-right: 2px solid #f5f5f5;
    padding-right: 16px;
  }
}
.header__hero {
  background-image: url("../images/header_bc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 400px;
}
@media screen and (min-width: 700px) {
  .header__hero {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
@media screen and (min-width: 1000px) {
  .header__hero {
    height: 500px;
    grid-column: 1/-1;
    grid-row: 2/3;
  }
}
.header__hero-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #230C0F;
  padding: 10px;
  min-width: 320px;
  border-radius: 10px;
  line-height: 28px;
}
@media screen and (min-width: 1000px) {
  .header__hero-heading {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 700px) {
  .menu__bars {
    display: none;
  }
}

.bar {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35px;
  height: 5px;
  background-color: #f5f5f5;
  border-radius: 10%;
}
@media screen and (min-width: 700px) {
  .bar {
    display: none;
  }
}

.bar:nth-child(2) {
  margin-top: 10px;
  margin-bottom: 10px;
}

.bar.one {
  margin-top: -5px;
  transform: rotate(45deg);
  transition: transform 0.4s ease-in-out;
}

.bar.two {
  display: none;
}

.bar.three {
  margin-top: -5px;
  transform: rotate(-45deg);
  transition: transform 0.4s ease-in-out;
}

.menu__list {
  display: none;
}
@media screen and (min-width: 700px) {
  .menu__list {
    display: flex;
    justify-content: space-around;
    font-weight: bolder;
    margin-bottom: 0px;
    padding-left: 0px;
  }
}

.menu__list.open {
  display: block;
  position: absolute;
  font-weight: bold;
  right: 0%;
  top: 280px;
  z-index: 100;
  background-color: #230C0F;
  width: 100%;
  padding-left: 0;
  -webkit-animation-name: menuOpen;
          animation-name: menuOpen;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

@-webkit-keyframes menuOpen {
  from {
    top: 250px;
  }
  to {
    top: 280px;
  }
}

@keyframes menuOpen {
  from {
    top: 250px;
  }
  to {
    top: 280px;
  }
}
.menu__item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 3px solid #f5f5f5;
}
@media screen and (min-width: 700px) {
  .menu__item {
    border-bottom: none;
    border-right: 3px solid #f5f5f5;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 10px;
  }
}

.menu__item:hover {
  background-color: rgba(85, 134, 140, 0.2588235294);
}
@media screen and (min-width: 700px) {
  .menu__item:hover {
    background-color: transparent;
  }
}

.menu__item:active {
  background-color: rgba(45, 74, 78, 0.2588235294);
}
@media screen and (min-width: 700px) {
  .menu__item:active {
    background-color: transparent;
  }
}

.menu__link {
  color: #f5f5f5;
}
@media screen and (min-width: 700px) {
  .menu__link {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
  }
}

.menu__link:hover {
  text-decoration: underline;
  font-size: 1.2rem;
}

.menu__link:active {
  font-size: 1rem;
}

.catering__wrapper {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  overflow-x: hidden;
}

@media screen and (min-width: 850px) {
  .catering__header-h3 {
    margin-bottom: 100px;
  }
}

.catering__pricing {
  position: relative;
}
@media screen and (min-width: 850px) {
  .catering__pricing {
    display: flex;
    justify-content: space-around;
    height: 270px;
  }
}

.catering__pricing img {
  border: 5px solid #230C0F;
  border-radius: 10px;
  width: 300px;
  min-height: 180px;
}
@media screen and (min-width: 850px) {
  .catering__pricing img {
    transform: translateX(-65px) rotate(270deg);
  }
}

.catering__pricing-wrapper {
  height: 200px;
  transition: all 0.5s;
}
@media screen and (min-width: 850px) {
  .catering__pricing-wrapper {
    width: 150px;
  }
}

.catering__pricing-wrapper:hover,
.catering__pricing-wrapper:focus {
  transform: scale(1.1);
}

.catering-pricing-list {
  border-radius: 50%;
  background-color: #230C0F;
  width: 170px;
  height: 170px;
  padding: 30px 0;
  margin-left: auto;
  margin-right: auto;
  color: #f5f5f5;
  transform: translateY(-198px);
}

.catering__composition {
  margin-top: 32px;
}
@media screen and (min-width: 850px) {
  .catering__composition {
    margin-top: 0;
  }
}

.list {
  background-image: url("../images/stul.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f5f5;
}

.list__wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.list__menu-product {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 700px) {
  .list__menu-product {
    width: auto;
    display: inline-block;
  }
}

.list__showhide {
  font-weight: bold;
  text-decoration: underline;
}

.list__showhide.hide {
  display: none;
}

.list__list.first,
.list__list-two {
  background-color: #f5f5f5;
  color: #230C0F;
  padding: 20px;
  border-radius: 10px;
  max-width: 650px;
  box-shadow: 10px 10px #230C0F;
  margin-bottom: 32px;
  margin-top: 32px;
}
@media screen and (min-width: 700px) {
  .list__list.first,
.list__list-two {
    line-height: 2.5em;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.list__list.second {
  display: none;
}

.form.timeDate > input {
  height: 50px;
  min-width: 280px;
}

.form.timeDate {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.order {
  background-image: url("../images/stul.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.order__wrapper {
  max-width: 1000px;
  background-color: rgba(245, 245, 245, 0.9);
  color: #230C0F;
  padding: 10px;
  margin: 25px auto;
  border-radius: 10px;
  box-shadow: 10px 10px #230C0F;
}

.reference__wrapper {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1000px) {
  .reference__wrapper {
    display: flex;
    justify-content: center;
    gap: 32px;
  }
}

.reference__comment {
  margin-bottom: 32px;
}
@media screen and (min-width: 1000px) {
  .reference__comment {
    flex-basis: 50%;
    padding: 20px;
  }
}

@media screen and (min-width: 1000px) {
  .comment {
    text-align: left;
  }
}

.reference__comment-line {
  font-style: italic;
}

.reference__more {
  font-weight: bolder;
  text-decoration: underline;
  cursor: pointer;
}

.reference__more-hidden {
  font-weight: bolder;
  display: none;
  text-decoration: underline;
  cursor: pointer;
}

.reference__parttwo {
  display: none;
}

.form {
  margin-bottom: 16px;
}

.form > input,
.form textarea {
  width: 100%;
  min-height: 50px;
  border: 2px solid #230C0F;
  border-radius: 10px;
  font-size: 16px;
  padding: 5px 10px;
  background-color: rgba(235, 147, 6, 0.486);
}
@media screen and (min-width: 700px) {
  .form > input,
.form textarea {
    flex: 1 1 100%;
  }
}

.form > label {
  font-weight: bold;
}

.form input:focus,
.form textarea:focus {
  outline: 0;
  border: 2px solid rgb(235, 147, 6);
}

.form input:not(:-moz-placeholder-shown):valid {
  background-color: rgb(217, 232, 237);
}

.form input:not(:-ms-input-placeholder):valid {
  background-color: rgb(217, 232, 237);
}

.form input:not(:placeholder-shown):valid {
  background-color: rgb(217, 232, 237);
}

.required {
  color: red;
  margin: 0;
  display: inline-block;
}

.form_submit-done {
  display: none;
}

.booking-button {
  padding: 10px 20px;
  border: 2px solid #230C0F;
  border-radius: 10px;
  background-color: #230C0F;
  color: #f5f5f5;
  font-size: inherit;
}

.booking-button:hover {
  background-color: #5d4447;
}

.booking-button:active {
  background-color: #f5f5f5;
  color: #230C0F;
}

.gallery__photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 5px;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
@media screen and (min-width: 1000px) {
  .gallery__photos {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery__photos img {
  width: 100%;
  height: 100%;
}

.img-one {
  grid-column: 1/2;
  grid-row: 1/3;
}

.img-two {
  grid-column: 2/3;
  grid-row: 1/2;
}

.img-three {
  grid-column: 3/4;
  grid-row: 1/2;
}

.img-four {
  grid-column: 2/3;
  grid-row: 2/3;
}

.img-five {
  grid-column: 3/4;
  grid-row: 2/4;
}

.img-six {
  grid-column: 1/2;
  grid-row: 3/4;
}

.img-seven {
  grid-column: 2/3;
  grid-row: 3/4;
}

.contact {
  min-height: 300px;
  background-color: #230C0F;
  color: #f5f5f5;
}
@media screen and (min-width: 700px) {
  .contact {
    display: grid;
    grid-template-columns: 5% 1fr 1fr 5%;
    gap: 10px;
  }
}
@media screen and (min-width: 1000px) {
  .contact {
    grid-template-columns: 1% 1fr 1fr 1fr 1%;
  }
}
@media screen and (min-width: 700px) {
  .contact__header {
    grid-row: 1/2;
    grid-column: 1/4;
  }
}
@media screen and (min-width: 1000px) {
  .contact__header {
    grid-column: 1/-1;
  }
}
@media screen and (min-width: 700px) {
  .contact__contacts {
    max-width: 400px;
    justify-self: center;
    align-self: center;
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
.contact__address {
  margin-top: 32px;
}
@media screen and (min-width: 700px) {
  .contact__address {
    margin-top: 0px;
    width: 300px;
    justify-self: center;
    align-self: baseline;
    grid-row: 2/3;
    grid-column: 3/4;
  }
}
.contact__map {
  display: none;
}
@media screen and (min-width: 1000px) {
  .contact__map {
    display: inline-block;
    grid-column: 4/5;
    grid-row: 2/3;
    align-self: center;
  }
}
.contact__address-map {
  text-decoration: underline;
}
@media screen and (min-width: 1000px) {
  .contact__address-map {
    display: none;
  }
}

.naspici {
  background-image: url("../images/naspici_small.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f5f5f5;
  position: relative;
  height: 600px;
}
@media screen and (min-width: 1000px) {
  .naspici {
    background-image: url("../images/naspici.jpg");
    height: 450px;
  }
}
.naspici__wrapper {
  max-width: 1000px;
  min-width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #230C0F;
  border-radius: 10px;
  padding: 10px;
  margin-top: 0;
  color: #f5f5f5;
}
.naspici__wrapper-link--color {
  color: #f5f5f5;
  text-decoration: underline;
}

.arrow-up.naspici-arrow {
  position: absolute;
  top: 85%;
  left: 47%;
}

.footer {
  background-color: #230C0F;
  height: 60px;
  padding-top: 20px;
}

.footer__copyright {
  color: #f5f5f5;
}/*# sourceMappingURL=style.css.map */