@font-face {
  font-display: swap;
  font-family: "Alumni Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/alumni-sans-v18-cyrillic_cyrillic-ext_latin_latin-ext-regular.woff2") format("woff2");
}
body,
html {
  height: 100vh;
}

body {
  min-width: 320px;
  font-family: "Alumni Sans", sans-serif;
  background-color: #0a0a0a;
  scroll-behavior: smooth;
}

button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #957d4f;
  font-weight: normal;
}

main {
  margin-top: 7rem;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #0a0a0a, rgba(149, 124, 79, 0.4784313725));
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.1) inset;
  border-radius: 8px;
}

.cursor {
  position: fixed;
  border: 2px solid #faf9f6;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px #957d4f;
  top: -10rem;
  left: -10rem;
  height: 30px;
  width: 30px;
  transition: transform 0.2s;
  z-index: 999;
}

.loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  transition: opacity 0.75s, visibility 0.75s;
  z-index: 1000;
}
.loader:after {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid rgba(40, 40, 40, 0.3);
  border-top-color: #957d4f;
  border-radius: 50%;
  animation: loading 2s ease infinite;
}
@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  width: 100%;
  padding-inline: 2rem;
  background-color: #0a0a0a;
  z-index: 100;
  transition: all 0.7s ease-in-out;
}

.logo {
  display: flex;
  justify-content: center;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.nav li {
  margin: 0 2rem;
  padding: 0 0.5rem;
  color: #957d4f;
  text-transform: uppercase;
  font-size: 25px;
}
.nav li:hover {
  transform: translateX(5px);
  transition: all ease 0.3s;
}
.nav a {
  text-decoration: none;
  color: #957d4f;
}

.burger {
  display: none;
  position: relative;
  z-index: 50;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  height: 18px;
}
.burger:before, .burger:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #957d4f;
  transition: all 0.3s ease 0s;
}
.burger:before {
  top: 0;
}
.burger:after {
  bottom: 0;
}
.burger.active span {
  transform: scale(0);
}
.burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}
.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
}
.burger span {
  height: 2px;
  width: 80%;
  transform: scale(1);
  background-color: #957d4f;
}

.dropdown {
  width: 4rem;
  position: relative;
}
.dropdown span.selected {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.select {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.select-clicked {
  box-shadow: 0 0 2px #957d4f;
}

.caret {
  width: 0;
  height: 0;
  border-left: 0.3rem solid transparent;
  border-right: 0.3rem solid transparent;
  border-top: 0.3rem solid #957d4f;
  transition: 0.3s;
  margin-left: 1rem;
}

.caret-rotate {
  transform: rotate(180deg);
}

.menu {
  flex-direction: column;
  background: #0a0a0a;
  box-shadow: 0 0 20px #0a0a0a;
  border-radius: 0.5rem;
  color: #0a0a0a;
  position: absolute;
  left: 50%;
  width: 100%;
  transform: translate(-50%);
  opacity: 0;
  display: none;
  transition: 0.2s;
  z-index: 1;
}
.menu li {
  padding: 0.7rem 0.5rem;
  margin: 0.3rem 0;
  border-radius: 0.5rem;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #faf9f6;
}
.menu li:hover {
  background: #957d4f;
  color: #0a0a0a;
}

.menu-open {
  display: block;
  opacity: 1;
}

.main {
  flex: 1 1 auto;
}

.open {
  display: flex !important;
}

.focused {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.no-scroll {
  overflow-y: hidden;
}

.none {
  display: none;
}

.video {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 550px;
  margin-bottom: 2rem;
}
.video video {
  filter: grayscale(1) brightness(0.5);
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.heading {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.heading h1 {
  position: relative;
  display: inline-block;
  color: #faf9f6;
  font-size: clamp(2.25rem, 2.0357rem + 1.0714vw, 3.75rem);
  text-transform: uppercase;
  animation: fade-down 1s 1.3s backwards;
}
.heading h1:before, .heading h1:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100px;
  background-color: #957d4f;
  top: 50%;
}
.heading h1:before {
  right: 30px;
  transform: translate(-100%);
}
.heading h1:after {
  left: 30px;
  transform: translate(100%);
}

.button {
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 3rem 3rem;
}
.button a {
  text-decoration: none;
}

.btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  background-color: #0a0a0a;
  border: 2px solid #957d4f;
  border-radius: 50%;
  outline: none;
}
.btn-main i {
  font-size: 20px;
  color: #957d4f;
}
.btn-main:hover {
  background-color: rgba(149, 124, 79, 0.8235294118);
  box-shadow: 0 0 15px #957d4f;
  transition: all ease 0.5s;
}
.btn-main:hover i {
  color: #0a0a0a;
}

.about {
  padding-top: 2rem;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 3rem;
}

.about-title h1 {
  color: #faf9f6;
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 2rem;
  animation: fade-down 1s 0.5s backwards;
}

.about-image {
  border-radius: 15px;
  overflow: hidden;
  max-width: 200px;
  animation: fade-down 1s 0.5s backwards;
}
.about-image img {
  width: 100%;
  height: auto;
}

.about-text-container {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.about-text-container pre {
  padding: 1.5rem 0;
  color: #957d4f;
  font-size: 25px;
  text-align: center;
  animation: fade-up 1s 0.5s backwards;
  font-family: "Alumni Sans", sans-serif;
}

.bar-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bar-menu .burger-menu {
  margin-block: 3rem;
}
.bar-menu .drink-menu {
  margin-bottom: 2rem;
}
.bar-menu .burger-menu,
.bar-menu .drink-menu {
  margin-inline: 5rem;
  filter: grayscale(1) brightness(0.7);
  transition: filter 0.3s;
  animation: fade-up 1s 0.5s backwards;
  will-change: filter;
}
.bar-menu .burger-menu:hover,
.bar-menu .drink-menu:hover {
  filter: grayscale(0) brightness(0.9);
}
.bar-menu .burger-menu img,
.bar-menu .drink-menu img {
  height: auto;
  width: 80vw;
}

.bar-menu-title {
  text-align: center;
}
.bar-menu-title h1 {
  color: #faf9f6;
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem 0;
  animation: fade-down 1s 0.5s backwards;
}
.bar-menu-title p {
  color: #957d4f;
  font-size: 25px;
  text-align: center;
  animation: fade-down 1s 0.5s backwards;
}

.swiper {
  width: 100%;
  height: 100%;
  padding: 3rem 1rem 2rem 1rem;
  animation: fade-up 1s 0.5s backwards;
  text-align: center;
}

.swiper-button-prev,
.swiper-button-next {
  padding: 0 10rem;
  color: #957d4f;
  user-select: none;
}
.swiper-button-prev:active,
.swiper-button-next:active {
  outline: none;
  box-shadow: none;
}

.swiper-pagination {
  position: static;
  margin-top: 2rem;
}

.swiper-pagination-bullet {
  background: #957d4f;
  border-radius: 0;
  height: 3px;
  width: 3px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  padding-inline: 2rem;
}

.swiper-slide {
  opacity: 1;
  transition: opacity 1s ease;
}

.swiper-slide.swiper-slide-active {
  opacity: 1;
}

.swiper-slide.swiper-slide-next,
.swiper-slide.swiper-slide-prev {
  opacity: 0;
}

.swiper-slide img {
  height: 650px;
  width: auto;
}

.gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-title {
  text-align: center;
}
.gallery-title h1 {
  color: #faf9f6;
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem 0;
  animation: fade-down 1s 0.5s backwards;
}
.gallery-title p {
  color: #957d4f;
  font-size: 25px;
  text-align: center;
  animation: fade-down 1s 0.5s backwards;
}

.items-1,
.items-2,
.items-3,
.items-4 {
  display: flex;
  gap: 0.5rem;
  perspective: calc((1vw + 1vh) * 80);
  animation: fade-up 1s 0.5s backwards;
}

.items-1,
.items-2,
.items-3,
.items-4 {
  margin: 3rem 1rem 2rem 1rem;
}

.item {
  width: calc((1vw + 1vh) * 5);
  height: calc((1vw + 1vh) * 13);
  background-color: #faf9f6;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  filter: grayscale(100%) brightness(0.9);
  transition: transform 1.25s cubic-bezier(0.1, 0.7, 0, 1), filter 2s cubic-bezier(0.1, 0.7, 0, 1), width 1.25s cubic-bezier(0.1, 0.7, 0, 1);
  will-change: transform, filter;
}
.item::before, .item::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 20px;
  right: calc((1vw + 1vh) * -1);
}
.item::after {
  left: calc((1vw + 1vh) * -1);
}
.item:hover {
  filter: inherit;
  transform: translateZ(calc((1vw + 1vh) * 12));
  z-index: 1;
}
.item:hover + * {
  filter: inherit;
  transform: translateZ(calc((1vw + 1vh) * 10)) rotateY(30deg);
  z-index: 2;
}
.item:has(+ :hover) {
  filter: inherit;
  transform: translateZ(calc((1vw + 1vh) * 10)) rotateY(-30deg);
}
.item.active, .item:focus {
  width: 16vw;
  filter: inherit;
  z-index: 100;
  transform: translateZ(calc((1vw + 1vh) * 12));
  margin: 0 0.35vw;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-title {
  padding: 2rem 0;
}
.contact-title h1 {
  font-size: 60px;
  text-transform: uppercase;
  color: #faf9f6;
  animation: fade-down 1s 0.5s backwards;
}

.contact-subtitle {
  display: flex;
  align-content: center;
  justify-content: center;
}

.contact-image {
  border-radius: 15px;
  overflow: hidden;
  max-width: 200px;
  animation: fade-down 1s 0.5s backwards;
}
.contact-image img {
  width: 100%;
  height: auto;
}

.number {
  display: flex;
  flex-direction: column;
}

iframe {
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
}

.accordion {
  text-align: center;
  width: 650px;
  animation: fade-up 1s 0.5s backwards;
}
.accordion li {
  text-decoration: none;
  list-style: none;
  width: 100%;
  color: #957d4f;
  margin: 1rem 0;
}
.accordion li label {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 25px;
  cursor: pointer;
}
.accordion li label span {
  margin-left: auto;
  margin-right: auto;
}
.accordion li label i:first-child {
  margin-right: 1rem;
  color: #957d4f;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  font-size: 12px;
  transition: 0.5s;
}
.accordion a {
  font-size: 25px;
  color: #faf9f6;
  text-decoration: none;
  padding: 1rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
}
.accordion p {
  font-size: 25px;
  padding: 1rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  color: #faf9f6;
}
.accordion span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  text-transform: uppercase;
}
.accordion span:hover {
  transform: translateX(5px);
  transition: all ease 0.3s;
}

.icon-rotate {
  transform: rotate(-180deg);
}

.accordion .contact-media i {
  font-size: 25px;
}

.accordion .social-media ul {
  display: flex;
  justify-content: center;
}

label:after {
  content: "";
  font-size: 40px;
}

input[type=radio] {
  display: none;
}

.accordion .map,
.accordion .number,
.accordion .social-media,
.accordion .working-hours {
  padding: 0 10px;
  line-height: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s, padding 1s;
}

.accordion input[type=radio]:checked + label + .map,
.accordion input[type=radio]:checked + label + .number,
.accordion input[type=radio]:checked + label + .working-hours,
.accordion input[type=radio]:checked + label + .social-media {
  max-height: 600px;
  padding-top: 10px 0;
}

.accordion input[type=radio]:checked + label + .hours .menu {
  max-height: 300px;
}

.social-media i {
  font-size: 25px;
  padding: 0;
  color: #faf9f6;
  box-shadow: 0 0 20px #957d4f;
  border-radius: 50%;
  margin: 2rem 0.5rem 1rem 0.5rem;
}

.cookies {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: fixed;
  max-width: 100%;
  width: 90%;
  left: -50%;
  bottom: 20px;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  padding: 1rem 1.7rem 1.5rem;
  transition: all 0.3s ease;
  z-index: 20;
}
.cookies.show {
  left: 50%;
  transform: translateX(-50%);
}
.cookies .data {
  margin-top: 1rem;
}
.cookies .data p {
  font-size: 14px;
  font-weight: 100;
  padding: 0.2rem 1rem;
  color: #fff;
}
.cookies .data p a {
  color: #957d4f;
  text-decoration: underline;
}
.cookies .data p strong {
  color: #957d4f;
}
.cookies .button-container {
  margin-top: 1rem;
  max-width: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookies .button-container .button {
  background-color: #000;
  color: #fff;
  padding: 0.1rem;
  cursor: pointer;
  width: calc(50% - 10px);
  font-size: 14px;
  transition: 0.3s;
  padding-block: 3px;
  border: 1px solid #957d4f;
}
.cookies .button-container .button:hover {
  background-color: #000;
  border: 1px solid #fff;
}

.privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 3rem;
}
.privacy__inner {
  max-width: 1100px;
  text-wrap: balance;
}
.privacy__title {
  text-align: center;
  animation: fade-down 1s backwards 0.5s;
}
.privacy__title h1 {
  font-size: 60px;
  margin-block: 2rem;
  text-transform: uppercase;
  color: #fff;
}
.privacy__description {
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  animation: fade-up 1s backwards 0.5s;
}
.privacy__description ul {
  list-style: square;
}
.privacy__description p,
.privacy__description li {
  font-size: 20px;
  color: #fff;
  padding-block: 0.5rem;
}
.privacy__description strong {
  font-size: 25px;
}

.footer {
  margin-block: 2rem;
}
.footer__menu-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  list-style: none;
  font-size: 14px;
}
.footer__menu-item {
  text-transform: uppercase;
}
.footer__menu-item span {
  color: #fff;
}
.footer__menu-link {
  text-decoration: none;
  transition: 0.3s;
}
.footer__menu-link:hover {
  color: #fff;
}
.footer__menu-link.ew {
  color: #fff;
}
.footer__menu-link.ew:hover {
  color: #957d4f;
}

@media only screen and (max-width: 1366px) {
  :root {
    --swiper-navigation-size: 16px;
    --swiper-pagination-bottom: 30px;
  }
  .items-1,
  .items-2,
  .items-3,
  .items-4 {
    display: none;
  }
  .swiper {
    display: block;
  }
  .burger-menu {
    filter: brightness(100%) !important;
  }
  .drink-menu {
    filter: brightness(50%) !important;
  }
  .highlighted {
    filter: brightness(100%) !important;
  }
  .dimmed {
    filter: brightness(50%) !important;
  }
}
@media only screen and (max-width: 992px) {
  .burger {
    display: flex;
  }
  .nav {
    display: none;
    flex-direction: column;
    align-items: start;
    position: fixed;
    height: 100%;
    width: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    overflow: hidden;
    padding: 50px 40px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    animation: burgerAnimation 0.5s;
  }
  .nav ul {
    flex-direction: column;
    row-gap: 30px;
    padding-top: 50px;
  }
  .nav li {
    margin-left: 0;
    margin-right: 0;
  }
  .menu-open {
    display: block;
    opacity: 1;
    top: -150px;
    row-gap: 0 !important;
    padding-top: 0 !important;
  }
  .dropdown {
    margin-bottom: 1rem;
  }
  .accordion span:hover {
    transform: none;
    transition: none;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  @keyframes burgerAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@keyframes fade-down {
  0% {
    opacity: 0;
    transform: translateY(-100px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0px) scale(1);
  }
}
@media only screen and (max-width: 600px) {
  .swiper-slide img {
    height: auto;
    width: 90%;
  }
  iframe {
    border-radius: 20px;
    width: 100vw;
    box-sizing: border-box;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .footer__menu-list {
    flex-direction: column;
    row-gap: 1rem;
  }
}
@media only screen and (max-width: 370px) {
  .swiper-slide img {
    height: auto;
    width: 90%;
  }
}

/*# sourceMappingURL=styles.css.map */
