/* ---------- root variables - Olga ---------- */
:root {
  --text-color: #393331;
  --main-green: #395443;
  --main-yellow: #fcca3b;
  --main-pink: #e50069;
  --main-blue: #90c0ea;
  --green: #708f39;
  --yellow: #fef481;
  --pink: #fdeae5;
  --blue: #b8d7f1;
  --green-light: #b5c499;
  --yellow-light: #fff9f0;
  --pink-light: #fdeae5;
  --blue-light: #c5def3;
  --background: #fff9f0;
  --white: #ffffff;
  --dark-orange: #c27060;
  --placeholder: #000000;
}

/* ---------- page styling - Olga ---------- */
html,
body {
  width: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  max-width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

h1 {
  font-family: kansasnew, serif;
  font-weight: 700;
  font-style: normal;
  font-size: 48pt;
  color: var(--text-color);
}

h2 {
  font-family: kansasnew, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 34pt;
  color: var(--text-color);
}

p {
  font-family: montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color);
}

/* ---------- general styling ---------- */

.text-center {
  text-align: center !important;
}

.page {
  display: none;
  animation: fadeIn 0.4s;
  padding: 0;
}

/*----------loader----------*/

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
}

.loading {
  width: 6em;
  height: 6em;
  background-image: url(../img/sunnaked-01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotating 10s linear infinite;
    -webkit-animation: rotating 10s linear infinite;
    -moz-animation: rotating 10s linear infinite;
    -ms-animation: rotating 10s linear infinite;
    -o-animation: rotating 10s linear infinite;
}

.loaded .loader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s 1s ease-out;
    -webkit-transition: all 0.3s 1s ease-out;
    -moz-transition: all 0.3s 1s ease-out;
    -ms-transition: all 0.3s 1s ease-out;
    -o-transition: all 0.3s 1s ease-out;
}

/*--------- nav - Olga ----------*/

nav a {
  cursor: pointer;
}

.bookbtn {
  position: fixed;
  z-index: 101;
  bottom: 0;
  right: 0;
  margin-right: 2.4em;
  margin-bottom: 2.4em;
  background-color: var(--green-light);
  padding: 0.2em 1.4em;
  border-radius: 50%;
  color: #ffffff;
}

.s-hover:hover .bookbtn {
  background-color: var(--pink) !important;
}

.bookbtn p {
  font-family: kansasnew, serif;
  font-weight: 700;
  font-size: 12px;
}

.bookbtn-bord {
  position: fixed;
  z-index: 101;
  bottom: 0;
  right: 0;
  border: 0.2em solid var(--text-color);
  width: 5em;
  height: 3.4em;
  border-radius: 50%;
  transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    -moz-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
  margin-right: 2.1em;
  margin-bottom: 2.5em;
}

.small-logo {
  top: 0;
  width: 3em;
  position: fixed;
  z-index: 110;
  margin-top: 2em;
  margin-left: 2em;
  visibility: hidden;
}

.small-logo2 {
  top: 0;
  width: 3em;
  position: fixed;
  z-index: 110;
  margin-top: 2em;
  margin-left: 2em;
  animation: rotating 16s infinite linear;
  -webkit-animation: rotating 16s infinite linear;
  -moz-animation: rotating 16s infinite linear;
  -ms-animation: rotating 16s infinite linear;
  -o-animation: rotating 16s infinite linear;
}

.small-logo-animate {
  visibility: visible;
  transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  transition-delay: 350ms;
    -webkit-transition-delay: 350ms;
    -moz-transition-delay: 350ms;
    -ms-transition-delay: 350ms;
    -o-otransition-delay: 350ms;
  animation: rotating 16s infinite linear;
    -webkit-animation: rotating 16s infinite linear;
    -moz-animation: rotating 16s infinite linear;
    -ms-animation: rotating 16s infinite linear;
    -o-animation: rotating 16s infinite linear;
}

.navbtn {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  margin: 2.5em;
  cursor: pointer;
  height: 2em;
}

.line {
  display: flex;
  z-index: 200;
  width: 2.8em;
  height: 0.4em;
  background-color: var(--text-color);
  margin: 0.3em;
  transition: 0.6s ease-in-out;
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -ms-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
  transform: rotate(0deg) translate(0em);
    -webkit-transform: rotate(0deg) translate(0em);
    -moz-transform: rotate(0deg) translate(0em);
    -ms-transform: rotate(0deg) translate(0em);
    -o-transform: rotate(0deg) translate(0em);
  border-radius: 0.5em;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  background-color: var(--background);
  overflow-x: hidden;
  transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  font-family: kansasnew, serif;
  font-weight: 800;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 10px;
  text-decoration: none;
  font-size: 32px;
  color: var(--text-color);
  display: block;
  transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
}

/*--------- main - scrolling - Olga -----------*/

.cover {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
  transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
  overflow: hidden;
  background: var(--background);
}

.cover.cover-close {
  height: 0;
}

.container {
  height: 100%;
  position: relative;
}

/*------main - front - Olga -----*/

.arrow {
  width: 100vw;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  bottom: 0;
  margin-bottom: 1em;
  z-index: 10;
}

.sun {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.sun img {
  width: 15em;
}

.sun-rays {
  animation: rotating 16s infinite linear;
    -webkit-animation: rotating 16s infinite linear;
    -moz-animation: rotating 16s infinite linear;
    -ms-animation: rotating 16s infinite linear;
    -o-animation: rotating 16s infinite linear;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-359deg);
  }
}

    @-webkit-keyframes rotating {
      from {
        -webkit-transform: rotate(0deg);
      }

      to {
        -webkit-transform: rotate(-359deg);
      }
    }

    @-moz-keyframes rotating {
      from {
          -moz-transform: rotate(0deg);
      }

      to {
          -moz-transform: rotate(-359deg);
      }
    }

    @-ms-keyframes rotating {
      from {
          -ms-transform: rotate(0deg);
      }

      to {
          -ms-transform: rotate(-359deg);
      }
    }

    @-o-keyframes rotating {
      from {
          -o-transform: rotate(0deg);
      }

      to {
          -o-transform: rotate(-359deg);
      }
    }

.face-box {
  position: absolute;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.sun-border {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 28em !important;
  background-color: var(--green-light);
  padding: 1em;
  border-radius: 50%;
}

.wink-box {
  position: absolute;
}

.sun-face-wink {
  position: absolute;
  opacity: 0;
  animation: winking 5s infinite;
    -webkit-animation: winking 5s infinite;
    -moz-animation: winking 5s infinite;
    -ms-animation: winking 5s infinite;
    -o-animation: winking 5s infinite;
}

.sun-face {
  position: absolute;
  animation: winking2 5s infinite;
    -webkit-animation: winking2 5s infinite;
    -moz-animation: winking2 5s infinite;
    -ms-animation: winking2 5s infinite;
    -o-animation: winking2 5s infinite;
}

@keyframes winking {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  90% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

    @-webkit-keyframes winking {
      0% {
        opacity: 0;
      }

      70% {
        opacity: 0;
      }

      80% {
        opacity: 1;
      }

      90% {
        opacity: 0;
      }

      100% {
        opacity: 0;
      }

    }@-moz-keyframes winking {
      0% {
        opacity: 0;
      }

      70% {
        opacity: 0;
      }

      80% {
        opacity: 1;
      }

      90% {
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }
    
    @-ms-keyframes winking {
      0% {
        opacity: 0;
      }

      70% {
        opacity: 0;
      }

      80% {
        opacity: 1;
      }

      90% {
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }
    
    @-o-keyframes winking {
      0% {
        opacity: 0;
      }

      70% {
        opacity: 0;
      }

      80% {
        opacity: 1;
      }

      90% {
        opacity: 0;
      }

      100% {
        opacity: 0;
      }
    }

@keyframes winking2 {
  0% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

    @-webkit-keyframes winking2 {
      0% {
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      80% {
        opacity: 0;
      }

      90% {
        opacity: 1;
      }

      100% {
        opacity: 1;
      }
    }

    @-moz-keyframes winking2 {
      0% {
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      80% {
        opacity: 0;
      }

      90% {
        opacity: 1;
      }

      100% {
        opacity: 1;
      }
    }

    @-ms-keyframes winking2 {
      0% {
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      80% {
        opacity: 0;
      }

      90% {
        opacity: 1;
      }

      100% {
        opacity: 1;
      }
    }

    @-o-keyframes winking2 {
      0% {
        opacity: 1;
      }

      70% {
        opacity: 1;
      }

      80% {
        opacity: 0;
      }

      90% {
        opacity: 1;
      }

      100% {
        opacity: 1;
      }
    }

.green-bg {
  background-color: var(--green-light);
  height: 100%;
  width: 50%;
  position: absolute;
}

.flowers-img {
  position: absolute;
  width: 14em;
  transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.flowers-img-small {
  width: 9em !important;
}

.flowers-img2 {
  position: absolute;
  width: 5em;
  transition: 1s ease;
    -webkit-transition: 1s ease;
    -moz-transition: 1s ease;
    -ms-transition: 1s ease;
    -o-transition: 1s ease;
}

.flowers-img-small2 {
  width: 3em !important;
  right: 8% !important;
}

.flowers-img-small3 {
  width: 3em !important;
  left: 4% !important;
}

.flowers {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20;
}

.leaf1 {
  transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
  left: 0%;
  top: -10%;
}

.leaf2 {
  transform: rotate(105deg);
    -webkit-transform: rotate(105deg);
    -moz-transform: rotate(105deg);
    -ms-transform: rotate(105deg);
    -o-transform: rotate(105deg);
  top: -20%;
  left: 25%;
}

.leaf3 {
  transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
  top: -20%;
  left: 65%;
}

.leaf4 {
  transform: rotate(230deg);
    -webkit-transform: rotate(230deg);
    -moz-transform: rotate(230deg);
    -ms-transform: rotate(230deg);
    -o-transform: rotate(230deg);
  top: 5%;
  right: 0%;
}

.leaf5 {
  transform: rotate(-60deg);
    -webkit-transform: rotate(-60deg);
    -moz-transform: rotate(-60deg);
    -ms-transform: rotate(-60deg);
    -o-transform: rotate(-60deg);
  right: -2%;
  bottom: 15%;
}

.leaf6 {
  transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
    -moz-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    -o-transform: rotate(-20deg);
  bottom: -15%;
  right: 12%;
}

.leaf7 {
  transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
  bottom: -10%;
  left: 15%;
}

.leaf8 {
  transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
  left: -5%;
  bottom: -10%;
}

.leaf9 {
  transform: rotate(130deg);
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    -ms-transform: rotate(130deg);
    -o-transform: rotate(130deg);
  left: -3%;
  top: 25%;
}

.leaf10 {
  left: 12%;
  top: 30%;
}

.leaf11 {
  right: 22%;
  top: 15%;
}

/*---------photos - Olga --------*/

.static-box,
.static-box2,
.static-box3,
.static-box4,
.static-box5,
.static-box6,
.static-box7 {
  position: relative;
  width: 100%;
  padding: 40px;
  margin: auto;
  margin-top: 4em;
  height: 13em;
}

.move-pic,
.move-pic2,
.move-pic3,
.move-pic4,
.move-pic5,
.move-pic6,
.move-pic7 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  width: 100%;
  min-height: 75vh;
}

.cafe-pic2 {
  width: 40em;
  border-radius: 1em;
  margin-left: 35%;
}

.cafe-pic {
  width: 40em;
  border-radius: 1em;
  margin-left: 35%;
}

.cafe-pic4 {
  width: 45em;
  border-radius: 1em;
  margin-left: 35%;
}

.cafe-pic5 {
  width: 45em;
  border-radius: 1em;
  margin-left: 35%;
}

/*-------- booking - Marius --------*/

.booking-popup {
  display: none;
  position: fixed;
  margin: 0 auto;
  width: 400px;
  height: auto;
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  z-index: 90;
}

.booking-container {
  margin: 0 auto;
  width: 68%;
  text-align: center;
}

.close-icon {
  position: absolute;
  right: 26px;
  top: 26px;
  width: 14px;
}

.booking-title {
  font-family: kansasnew, serif;
  font-weight: 700;
  color: var(--main-green);
  font-size: 30px;
  line-height: 0;
  padding: 0;
  padding-top: 20px;
}

.request-button {
  width: 116px;
  padding-bottom: 20px;
}

.booking-subtitle {
  color: var(--main-green);
  font-size: 12px;
  margin-top: -12px;
}

.booking-required {
  color: var(--dark-orange);
  font-size: 8px;
  line-height: 0;
  padding: 0;
  text-align: right;
  padding-top: 10px;
}

.booking-field {
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-color);
  width: 92%;
  height: 30px;
  padding: 0 4%;
  border: 0.5px solid var(--main-green);
}

.booking-buttons {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 24px;
  margin-bottom: 24px;
}

.calendar-month {
  font-size: 12px;
}

.booking-button {
  width: 30%;
  height: 30px;
  text-align: center;
  background-color: transparent;
  border-radius: 9px;
  border: 0.4px solid var(--main-green);
  font-size: 12px;
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-svg {
  margin-right: 0px;
  fill: var(--main-green);
}

.booking-button-active {
  color: var(--white);
  background-color: var(--main-green);
}

.datesvg {
  fill: var(--white);
}

.timesvg {
  fill: var(--main-green);
}

.guestssvg {
  fill: var(--main-green);
}

.booking-field-info {
  border-radius: 8px;
  font-size: 12px;
  font-family: montserrat, sans-serif;
  color: var(--text-color);
  width: 92%;
  height: 60px;
  padding: 4px 4%;
  border: 0.4px solid var(--main-green);
  margin-top: 24px;
}

.booking-additional {
  color: var(--main-green);
  font-size: 12px;
  text-align: left;
}

.booking-date {
  vertical-align: middle;
  display: table-cell;
  position: relative;
  width: 92%;
  height: 150px;
  background-color: var(--yellow-light);
  padding: 0 4%;
  border-radius: 5.5px;
  margin-top: 14px;
}

.booking-time {
  vertical-align: middle;
  display: none;
  position: relative;
  width: 92%;
  height: 210px;
  background-color: var(--yellow-light);
  padding: 0 4%;
  border-radius: 8px;
  margin-top: 24px;
}

.calendar-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.days {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 5px;
  align-items: center;
  justify-content: center;
}

.number {
  border-radius: 8px;
  font-size: 10px;
  width: 26px;
  height: 26px;
  border: 0.4px solid var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.active-day {
  color: var(--white);
  background-color: var(--main-green);
}

.day {
  font-size: 10px;
  border: 0.4px solid transparent;
  width: 26px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time {
  border-radius: 8px;
  font-size: 12px;
  width: 39px;
  height: 26px;
  border: 0.4px solid var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timebox {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  column-gap: 5px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.booking-guests {
  margin: 0 auto;
  display: none;
  flex-direction: row;
  justify-content: center;
}

.guests-number {
  width: 30%;
  height: 26px;
  text-align: center;
  background-color: transparent;
  border-radius: 8px;
  border: 0.4px solid var(--main-green);
  font-size: 10px;
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.increment-buttons {
  display: flex;
  flex-direction: row;
  background-color: var(--yellow-light);
  border-radius: 8px;
  border: 0.4px solid var(--main-green);
  margin-left: 5px;
}

.minus-button {
  width: 26px;
  height: 26px;
  text-align: center;
  background-color: var(--yellow-light);
  border-radius: 8px;
  border: 0;
  font-size: 12px;
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-button {
  width: 26px;
  height: 26px;
  text-align: center;
  border: 0;
  background-color: var(--yellow-light);
  border-radius: 8px;
  font-size: 12px;
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-arrow {
  transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  margin-left: -30%;
}

.days-show {
  display: block;
}

.time-show {
  display: none;
}

.success {
  display: none;
}

/* -------- Our Favourites - Vlada ------ */
.main-heading {
  margin-top: 120px;
}

.menu-favourites {
  display: grid;
  grid-template-columns: repeat(2, 300px);
  grid-template-rows: repeat(2, 400px);
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  justify-content: center;
  margin: 0;
}

.menu-favourites article:nth-child(2) {
  margin-top: 150px;
}

.menu-favourites article:nth-child(4) {
  margin-top: 210px;
}

.navigate-btn {
  cursor: pointer;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background-color: var(--pink-light);
  padding: 5px 40px;
  width: 7%;
  border-radius: 50%;
  margin: 0 auto;
  margin-top: 220px;
  z-index: 50;
}

.navigate-btn p {
  font-family: montserrat, serif;
  font-weight: 700;
  font-size: 1vw;
  color: var(--dark-orange);
  text-align: center;
}

.navigate-btn-bord {
  position: absolute;
  border: 0.2em solid var(--text-color);
  width: 10em;
  height: 3.3em;
  border-radius: 50%;
  transform: rotate(-8deg);
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
}

/* ----About section - Vlada ----- */
.about-container {
  height: 700px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  background-color: var(--yellow-light);
  margin-top: 120px;
}

.about-text {
  display: flex;
  flex-direction: column;
  width: 50%;
  align-items: center;
  justify-content: center;
}

.about-heading {
  width: 60%;
  font-weight: 900;
  margin-top: 80px;
  margin-bottom: 15px;
}

.about-subheading {
  font-family: montserrat, serif;
  color: var(--text-color);
  font-size: 22pt;
  font-weight: 500;
  width: 60%;
  margin-bottom: 15px;
  margin-top: 0;
}

.about-description {
  width: 60%;
  font-size: 10pt;
  margin-bottom: 70px;
}

.about-img-container {
  display: flex;
  justify-self: center;
  align-items: center;
  width: 50%;
  background-color: var(--pink-light);
}

.about-img {
  width: 65%;
  margin: 0 auto;
}

/*-------- Menu - Vlada --------*/
.menu-head {
  text-align: center;
  color: var(--text-color);
}

.menu-next {
  display: block;
}

.menu-list {
  width: 70%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px 20px;
  padding: 10px;
  margin: 0 auto;
}

#menu-list {
  display: grid;
}

.menu-list article {
  width: 300px;
}

.menu-img {
  display: block;
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
}

.menu-text {
  width: 290px;
  height: inherit;
  background-color: var(--yellow-light);
  padding: 1vw 0.5vw;
  border-radius: 20px;
  margin-top: 10px;
}

.menu-heading {
  padding: 0 5px;
  margin: 0;
  font-size: 1.2vw;
  color: var(--text-color);
  text-transform: none;
}

.menu-description {
  margin-top: 5px;
  font-size: 0.85vw;
  color: var(--text-color);
  text-transform: lowercase;
  padding: 0 5px;
}

.drink-description {
  display: block;
}

.menu-price {
  color: var(--text-color);
  font-size: 1vw;
  text-align: right;
  padding: 0 5px;
  margin-bottom: 0;
}

.drink-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--yellow-light);
  padding: 0.5vw;
  border-radius: 20px;
}

.warmdrink-heading,
.colddrink-heading,
.beer-heading,
.cocktails-heading {
  display: none;
  text-align: center;
  font-size: 2.5vw;
  margin-top: 100px;
}

.warmdrink-heading {
  margin-top: 0;
}

#colddrink-list,
#warmdrink-list,
#beer-list,
#cocktails-list {
  display: none;
}

.icons-filter {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.button-filter {
  border: 0;
  background: 0;
  margin: 0 15px;
}

.icon-body1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  background-image: url("../img/icons/hover.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  color: var(--main-green);
}

.icon-body2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  color: var(--main-green);
}

.filter-img {
  width: 5vw;
  height: 5vw;
}

.food {
  fill: #393331;
}

.drinks {
  stroke: #b5c499;
}

.icon-name1 {
  color: var(--green-light);
}

/*-------- spin the wheel - Marius --------*/

.ad-banner {
  width: 100%;
  height: 150px;
  background-color: var(--pink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  background-image: url("../img/wheel-of-fortune.png");
  background-size: 500px;
  background-position-y: 50%;
  background-position: 120%;
  background-repeat: no-repeat;
  padding-top: 8em; 
  display: inline-block; 
}

.ad-banner2 {
  width: 100%;
  height: 150px;
  background-color: var(--pink);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 0 auto;
  background-image: url("../img/wheel-of-fortune.png");
  background-size: 500px;
  background-position-y: 50%;
  background-position: 120%;
  background-repeat: no-repeat;
  padding-top: 8em;
  display: inline-block; 
}


.ad-banner-menu {
  padding-top: 6em !important;
}

.ad-banner-title {
  margin-top: 0;
  font-size: 14pt;
  font-family: montserrat, sans-serif;
  font-weight: 500;
  text-decoration: none;
}

.ad-banner-subtitle {
  font-size: 12pt;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  color: #c27060;
  cursor: pointer;
  position: relative;
  z-index: 30 !important;
}



.spin-popup {
  display: none;
  position: fixed;
  margin: 0 auto;
  width: 700px;
  height: auto;
  background-color: var(--white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  z-index: 90;
}

.spin-flexbox {
  margin: 0 auto;
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.spin-container {
  margin: 0 auto;
  width: 50%;
  text-align: left !important;
}

.underlined {
  text-decoration: underline;
  color: #c27060;
}

.checkbox-text {
  font-size: 12px;
}

.checkbox-box {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-items: center;
}

#app {
  width: 250px;
  height: 350px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 50px;
}

.marker {
  width: 26px;
  margin-bottom: 10px;
}

.wheel {
  width: 250px;
  height: 250px;
}

.button {
  display: block;
  width: 250px;
  margin: 40px auto;
  cursor: pointer;
}

.button:hover {
  opacity: 0.8;
}

.blur {
  animation: blur 10s;
    -webkit-animation: blur 10s;
    -moz-animation: blur 10s;
    -ms-animation: blur 10s;
    -o-animation: blur 10s;
}

@keyframes blur {
  0% {
    filter: blur(1.5px);
  }

  80% {
    filter: blur(1.5px);
  }

  100% {
    filter: blur(0px);
  }
}

    @-webkit-keyframes blur {
      0% {
        -webkit-filter: blur(1.5px);
      }

      80% {
        -webkit-filter: blur(1.5px);
      }

      100% {
        -webkit-filter: blur(0px);
      }
    }

    @-moz-keyframes blur {
      0% {
        -moz-filter: blur(1.5px);
      }

      80% {
        -moz-filter: blur(1.5px);
      }

      100% {
        -moz-filter: blur(0px);
      }
    }

    @-ms-keyframes blur {
      0% {
        -ms-filter: blur(1.5px);
      }

      80% {
        -ms-filter: blur(1.5px);
      }

      100% {
        -ms-filter: blur(0px);
      }
    }

    @-o-keyframes blur {
      0% {
        -o-filter: blur(1.5px);
      }

      80% {
        -o-filter: blur(1.5px);
      }

      100% {
        -o-filter: blur(0px);
      }
    }

/*--------footer - Olga --------*/

footer {
  background-color: var(--background);
  bottom: 0;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  padding: 1em;
  margin-top: 25em;
}

.bottom-logo {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  top: -9em;
  background-color: var(--green-light);
  border-radius: 50%;
  padding: 0.5em;
}

.bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}

.mini-logo {
  width: 2em;
  margin-bottom: -0.5em;
}

.bottom-text {
  text-align: center;
  font-size: 10pt !important;
}

.foot-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0 auto;
  margin-bottom: 2em;
  width: 100%;
  margin-left: 6em;
  margin-right: 6em;
  margin-top: -10em;
  position: relative;
  z-index: 50;
}

.map-box {
  width: 400px;
  height: 300px;
  z-index: 80;
  border-radius: 1em;
}

.foot-innerflex h1 {
  margin-left: -0.3em;
}

.foot-innerflex {
  margin-left: 5em;
  margin-right: 5em;
  width: 30em;
}

.foot-innerflex h1 {
  font-size: 30pt;
}

.flower-bottom {
  position: relative;
  width: 500px;
  height: 430px;
  background-image: url(../img/flowerone.png);
  background-position: top;
  background-size: 70%;
  background-repeat: no-repeat;
  margin-bottom: -8em;
}

.some-icon {
  width: 2em;
  margin-right: 1em;
  position: relative;
  z-index: 80;
}

@media only screen and (max-width: 1200px) {
  /*---------nav - Olga --------*/

  .bookbtn {
    font-size: 0.8em;
    margin-bottom: 4em;
  }

  .bookbtn-bord {
    width: 4.8em;
    height: 3em;
    margin-bottom: 3.4em;
    margin-right: 1.5em;
  }

  /*---------front Olga ---------*/

  .sun img {
    width: 10em;
  }

  .sun-border {
    width: 20em !important;
    padding: 0.8em;
  }

  .flowers-img {
    position: absolute;
    width: 9em;
  }

  .flowers-img2 {
    position: absolute;
    width: 4em;
  }

  .leaf1 {
    top: -10%;
  }

  .leaf2 {
    top: -10%;
  }

  .leaf3 {
    top: -10%;
  }

  .leaf4 {
    top: 2%;
  }

  .leaf5 {
    right: 0%;
  }

  .leaf6 {
    bottom: -10%;
  }

  .leaf7 {
    bottom: -8%;
  }

  .leaf8 {
    bottom: -2%;
  }

  .flowers-img-small {
    width: 6em !important;
  }

  /*-----footer - Olga ----*/

  .bottom-logo {
    width: 12em;
    top: -7em;
  }

  .foot-flex {
    margin-left: 3em;
    margin-right: 3em;
  }

  /*-------- booking - Marius --------*/

  .booking-popup {
    width: 33vw;
    border-radius: 1.5vw;
  }

  .booking-container {
    width: 68%;
  }

  .close-icon {
    right: 1.5vw;
    top: 1.5vw;
  }

  .booking-title {
    font-size: 2.5vw;
    padding-top: 4vw;
  }

  .booking-subtitle {
    font-size: 0.9vw;
    margin-top: -0.9vw;
  }

  .booking-required {
    font-size: 0.6vw;
  }

  .booking-field {
    border-radius: 0.6vw;
    font-size: 0.9vw;
    width: 92%;
    height: 2.4vw;
    padding: 0 4%;
    border: 0.03vw solid var(--main-green);
  }

  .booking-buttons {
    margin-top: 1.8vw;
    margin-bottom: 1.6vw;
  }

  .booking-button {
    width: 30%;
    height: 2.4vw;
    border-radius: 0.6vw;
    border: 0.03vw solid var(--main-green);
    font-size: 0.9vw;
  }

  .booking-svg {
    margin-right: 0px;
  }

  .booking-field-info {
    border-radius: 0.6vw;
    border: 0.03vw solid var(--main-green);
    font-size: 0.9vw;
    width: 92%;
    height: 7.5vw;
    padding: 0.3vw 4%;
    margin-top: 1.6vw;
  }

  .booking-additional {
    font-size: 0.9vw;
  }

  .booking-date {
    width: 92%;
    height: 19.8vw;
    padding: 0 4%;
    border-radius: 0.6vw;
    margin-top: 1.6vw;
  }

  .booking-time {
    width: 92%;
    height: 19.8vw;
    padding: 0 4%;
    border-radius: 0.6vw;
    margin-top: 1.6vw;
  }

  .days {
    row-gap: 0.3vw;
    column-gap: 0.6vw;
  }

  .number {
    border-radius: 0.6vw;
    font-size: 0.8vw;
    width: 2.2vw;
    height: 2.2vw;
    border: 0.03vw solid var(--main-green);
  }

  .day {
    font-size: 0.8vw;
    border: 0.03vw solid transparent;
    width: 2.2vw;
    height: 1vw;
  }

  .time {
    border-radius: 0.6vw;
    font-size: 0.8vw;
    width: 3.7vw;
    height: 2.2vw;
    border: 0.03vw solid var(--main-green);
  }

  .timebox {
    row-gap: 0.3vw;
    column-gap: 0.6vw;
  }

  .guests-number {
    width: 30%;
    height: 2.2vw;
    border-radius: 0.6vw;
    border: 0.03vw solid var(--main-green);
    font-size: 0.9vw;
  }

  .increment-buttons {
    border-radius: 0.6vw;
    border: 0.03vw solid var(--main-green);
    margin-left: 0.6vw;
  }

  .minus-button {
    width: 2.2vw;
    height: 2.2vw;
    border-radius: 0.6vw;
    border: 0;
    font-size: 1.3vw;
  }

  .plus-button {
    width: 2.2vw;
    height: 2.2vw;
    border-radius: 0.6vw;
    font-size: 1.3vw;
  }

  .calendar-month {
    font-size: 0.9vw;
  }

  .request-button {
    width: 9.58vw;
  }

  .about-container {
    flex-direction: column;
    margin-bottom: 12em;
  }

  .about-text {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    width: 70%;
  }

  .about-heading {
    font-size: 30pt;
  }

  .about-subheading {
    width: 100%;
    font-size: 18pt;
  }

  .about-description {
    width: 100%;
    font-size: 10pt;
    margin-bottom: 40px;
  }

  .about-img-container {
    margin-top: 30px;
    width: 100%;
  }

  .about-img {
    width: 50%;
  }

  .ad-banner-title {
    font-size: 3vw;
    padding-left: 5em;
    padding-right: 5em;
  }

  .ad-banner-subtitle {
    font-size: 1.6vw;
  }
}

@media only screen and (max-width: 900px) {
  /*---------nav - Olga --------*/

  .bookbtn {
    font-size: 0.6em;
    margin-bottom: 4em;
  }

  .bookbtn-bord {
    width: 4.4em;
    height: 3em;
    margin-bottom: 2.6em;
    margin-right: 1em;
  }

  .navbtn {
    margin: 1.2em;
  }

  .overlay a {
    font-size: 1em;
  }

  .small-logo {
    width: 3em;
    margin-top: 1.3em;
    margin-left: 1.2em;
  }

  .small-logo2 {
    width: 3em;
    margin-top: 1.3em;
    margin-left: 1.2em;
  }

  .arrow {
    margin-bottom: 10em;
  }

  /*---------front Olga ---------*/

  .sun img {
    width: 6em;
  }

  .sun-border {
    width: 12em !important;
    padding: 0.5em;
  }

  .flowers-img {
    position: absolute;
    width: 8em;
  }

  .flowers-img2 {
    position: absolute;
    width: 3em;
  }

  .leaf1 {
    top: -5%;
  }

  .leaf2 {
    top: -8%;
  }

  .leaf3 {
    top: -10%;
  }

  .leaf4 {
    top: 2%;
    right: -4%;
  }

  .leaf5 {
    bottom: 15%;
    right: -2%;
  }

  .leaf6 {
    bottom: -5%;
    right: 7%;
  }

  .leaf7 {
    bottom: -4%;
    left: 0%;
  }

  .leaf8 {
    bottom: 10%;
    left: -10%;
  }

  .leaf9 {
    top: 20%;
  }

  .leaf10 {
    left: 35%;
    top: 20%;
  }

  .leaf11 {
    right: 10%;
    top: 35%;
  }

  .flowers-img-small {
    width: 4.5em !important;
  }

  .flowers-img-small2,
  .flowers-img-small3 {
    width: 1.5em !important;
  }

  /*----photos-Olga-----*/

  .cafe-pic,
  .cafe-pic2,
  .cafe-pic4,
  .cafe-pic5 {
    width: 20em;
    margin-left: 0%;
  }

  .cafe-pic {
    margin-left: -20em;
  }

  .cafe-pic2 {
    margin-left: 20em;
  }

  .cafe-pic4 {
    margin-left: -20em;
  }

  .cafe-pic5 {
    margin-left: 45em;
  }


  .static-box,
  .static-box2,
  .static-box3,
  .static-box4,
  .static-box5,
  .static-box6,
  .static-box7 {
    height: 3em;
  }



  /*---- footer Olga ------*/

  footer {
    margin-top: 16em;
  }

  .bottom-logo {
    width: 10em;
    top: -6.5em;
  }

  .foot-flex {
    flex-direction: column;
    margin-top: -4em;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }

  .foot-innerflex {
    width: 80%;
    margin-left: 2em;
    margin-right: 2em;
  }

  .flower-bottom {
    display: none;
  }

  .map-box {
    width: 250px;
    justify-self: center;
    margin: 0 auto;
  }

  /*-----------Marius --------------*/

  .booking-popup {
    width: 310px;
    border-radius: 14px;
  }

  .booking-container {
    width: 68%;
  }

  .close-icon {
    right: 20px;
    top: 20px;
    width: 11px;
  }

  .booking-title {
    font-size: 24px;
    padding-top: 24px;
  }

  .booking-subtitle {
    font-size: 9px;
    margin-top: -9px;
  }

  .booking-required {
    font-size: 6px;
  }

  .booking-field {
    border-radius: 6px;
    font-size: 9px;
    width: 92%;
    height: 23px;
    padding: 0 4%;
    border: 0.37px solid var(--main-green);
  }

  .booking-buttons {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .booking-button {
    width: 30%;
    height: 23px;
    border-radius: 6px;
    border: 0.37px solid var(--main-green);
    font-size: 9px;
  }

  .booking-svg {
    margin-right: 0px;
  }

  .booking-field-info {
    border-radius: 6px;
    border: 0.37px solid var(--main-green);
    font-size: 9px;
    width: 92%;
    height: 48px;
    padding: 2px 4%;
    margin-top: 16px;
  }

  .booking-additional {
    font-size: 9px;
  }

  .booking-date {
    width: 92%;
    height: 19.8vw;
    padding: 0 4%;
    border-radius: 0.6vw;
    margin-top: 1.6vw;
  }

  .booking-time {
    width: 92%;
    height: 160px;
    padding: 0 4%;
    border-radius: 6px;
    margin-top: 16px;
  }

  .days {
    row-gap: 3px;
    column-gap: 3px;
  }

  .number {
    border-radius: 6px;
    font-size: 7px;
    width: 20px;
    height: 20px;
    border: 0.37px solid var(--main-green);
  }

  .day {
    font-size: 7px;
    border: 0.37px solid transparent;
    width: 20px;
    height: 10px;
  }

  .time {
    border-radius: 6px;
    font-size: 7px;
    width: 30px;
    height: 20px;
    border: 0.37px solid var(--main-green);
  }

  .timebox {
    row-gap: 3px;
    column-gap: 3px;
  }

  .guests-number {
    width: 30%;
    height: 20px;
    border-radius: 6px;
    border: 0.37px solid var(--main-green);
    font-size: 9px;
  }

  .increment-buttons {
    border-radius: 6px;
    border: 0.37px solid var(--main-green);
    margin-left: 6px;
  }

  .minus-button {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: none;
    font-size: 10;
  }

  .plus-button {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 10px;
  }

  .calendar-month {
    font-size: 9px;
  }

  .request-button {
    width: 90px;
  }

  /* -- menu style - Vlada */
  .menu-list {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0;
    justify-content: center;
    align-content: center;
    grid-gap: 30px 0;
    margin: 0 auto;
  }

  .menu-list article {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 250px;
  }

  .menu-head {
    font-size: 2.5rem;
  }

  .menu-img {
    width: 250px;
    height: 150px;
  }

  .menu-text {
    width: 250px;
  }

  .menu-heading {
    font-size: 4vw;
    padding-top: 5px;
  }

  .menu-description {
    font-size: 3vw;
    padding: 5px;
    margin-bottom: 0;
  }

  .menu-price {
    font-size: 3.5vw;
    margin-top: 0;
    padding: 7px 10px;
  }

  .warmdrink-heading,
  .colddrink-heading,
  .beer-heading,
  .cocktails-heading {
    font-size: 5vw;
    margin-top: 50px;
  }

  .filter-img {
    width: 10vw;
    height: 10vw;
  }

  .icons-filter button {
    padding: 10px;
    margin: 0;
  }

  /* --- Our Favourites style - Vlada ----  */
  .main-heading {
    font-size: 3.3rem;
    padding-top: 30px;
    margin-bottom: 0;
    margin-top: 60px;
  }

  .menu-favourites {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .menu-favourites article {
    margin-top: 30px;
  }

  .menu-favourites article:nth-child(2) {
    margin-top: 30px;
  }

  .menu-favourites article:nth-child(4) {
    margin-top: 30px;
  }

  .navigate-btn {
    width: 30%;
    margin-top: 50px;
    margin-bottom: 100px;
  }

  .navigate-btn p {
    font-size: 4vw;
  }

  .navigate-btn-bord {
    width: 14em;
  }

  /* --- About section - Vlada --- */
  .about-container {
    flex-direction: column;
    margin-top: 0;
    height: inherit;
    margin-bottom: 0;
  }

  .about-text {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    width: 70%;
  }

  .about-heading {
    font-size: 30pt;
    width: 100%;
  }

  .about-subheading {
    width: 100%;
    font-size: 18pt;
  }

  .about-description {
    width: 100%;
    font-size: 10pt;
  }

  .about-img-container {
    margin-top: 30px;
    width: 100%;
  }

  .about-img {
    width: 70%;
    padding: 20px;
  }

  /* wheel - Marius */
  .ad-banner {
    margin-top: 0;
    height: 180px;
    background-position: -70%;
    display: none;
  }

  .ad-banner2 {
    margin-top: 0;
    height: 180px;
    background-position: -70%;
    display: inline-block;
  }

  .ad-banner-title {
    width: 50%;
    font-size: 12pt;
  }

  .ad-banner-subtitle {
    font-size: 10pt;
  }

  .spin-popup {
    width: 300px;
    height: auto;
  }

  .spin-flexbox {
    margin: 0 auto;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .spin-container {
    margin: 0 auto;
    width: 80%;
    text-align: center !important;
    order: 1;
  }

  .underlined {
    text-decoration: underline;
    color: #c27060;
  }

  .checkbox-text {
    text-align: left;
    font-size: 10px;
  }

  #app {
    order: 2;
    width: 100%;
    height: 250px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .marker {
    width: 20px;
    margin-bottom: 10px;
  }

  .wheel {
    width: 200px;
    height: 200px;
  }

  .button {
    display: block;
    width: 250px;
    margin: 40px auto;
    cursor: pointer;
  }
}
