* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
body {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}

button {
  font-family: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

input,
textarea {
  font-family: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  width: 24px;
  height: 24px;
  display: block;
}

address {
  font-style: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  background-color: #1a1a1a;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1300px;
    padding: 0;
  }
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d4af37;
  color: #1a1a1a;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #a27b0a;
}
@media (min-width: 768px) {
  .btn {
    padding: 12px 25px;
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .btn {
    padding: 15px 30px;
    font-size: 20px;
  }
}

.header {
  background-color: #1a1a1a;
  padding: 15px 0;
}
.header__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .header__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.header__logo-img {
  width: 120px;
}
.header__menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .header__menu {
    gap: 25px;
  }
}
@media (min-width: 1440px) {
  .header__menu {
    gap: 40px;
  }
}
.header__menu-link {
  color: #ffffff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #d4af37;
}
@media (min-width: 768px) {
  .header__menu-link {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .header__menu-link {
    font-size: 18px;
  }
}

.hero {
  height: 430px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/img/hero-bg-tab.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 56px;
  }
}
.hero__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .hero__text {
    font-size: 20px;
  }
}

.features {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .features {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .features {
    padding: 80px 0;
  }
}
.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .features__list {
    gap: 50px;
  }
}
.features__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .features__list-item {
    flex-direction: row;
    text-align: left;
  }
  .features__list-item:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.features__item-img-wrapper {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .features__item-img-wrapper {
    width: 50%;
  }
}
.features__item-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.features__item-info {
  flex-grow: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .features__item-info {
    width: 50%;
    padding: 0 20px;
  }
}
.features__item-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 24px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .features__item-title {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  .features__item-title {
    font-size: 38px;
  }
}
.features__item-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .features__item-text {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  .features__item-text {
    font-size: 18px;
  }
}

.services {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .services {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .services {
    padding: 80px 0;
  }
}
.services__head-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .services__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .services__head-title {
    font-size: 42px;
  }
}
.services__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .services__head-text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .services__head-text {
    font-size: 20px;
  }
}
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .services__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .services__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.services__list-item {
  background-color: #343434;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.services__list-item:hover {
  transform: translateY(-5px);
}
.services__list-item--violet {
  background-color: #4b0082;
}
.services__list-item--blue {
  background-color: #4169e1;
}
.services__list-item--red {
  background-color: #9b111e;
}
.services__list-item--green {
  background-color: #008a52;
}
.services__list-item--silver {
  background-color: #c0c0c0;
  color: #1a1a1a;
}
.services__item-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .services__item-title {
    font-size: 24px;
  }
}
.services__item-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .services__item-text {
    font-size: 16px;
  }
}

.about {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 80px 0;
  }
}
.about__head-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .about__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .about__head-title {
    font-size: 42px;
  }
}
.about__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .about__head-text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .about__head-text {
    font-size: 20px;
  }
}
.about__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1440px) {
  .about__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.about__item-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.restaurant {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .restaurant {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .restaurant {
    padding: 80px 0;
  }
}
.restaurant__head-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .restaurant__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .restaurant__head-title {
    font-size: 42px;
  }
}
.restaurant__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .restaurant__head-text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .restaurant__head-text {
    font-size: 20px;
  }
}
.restaurant__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.contact {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__head-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact__head-title {
    font-size: 36px;
  }
}
@media (min-width: 1440px) {
  .contact__head-title {
    font-size: 42px;
  }
}
.contact__head-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .contact__head-text {
    font-size: 18px;
  }
}
@media (min-width: 1440px) {
  .contact__head-text {
    font-size: 20px;
  }
}
.contact__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.contact__left {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__left {
    width: 45%;
  }
}
.contact__right {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__right {
    width: 50%;
  }
}
.contact__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
}
.contact__address-text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .contact__address-text {
    font-size: 16px;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
    gap: 30px;
  }
}
.contact__form-field {
  flex-grow: 1;
  width: 100%;
}
.contact__form-label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
  color: #cccccc;
}
.contact__form-input, .contact__form-textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: #343434;
  border: 1px solid #cccccc;
  border-radius: 5px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  box-sizing: border-box;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #d4af37;
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-btn {
  width: 100%;
}
@media (min-width: 768px) {
  .contact__form-btn {
    width: auto;
    align-self: flex-start;
  }
}
.contact__form-btn.loading {
  cursor: not-allowed;
  opacity: 0.7;
  position: relative;
}
.contact__form-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.form-message.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.form-message--success {
  background-color: #4caf50;
  color: #ffffff;
}
.form-message--error {
  background-color: #f44336;
  color: #ffffff;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.footer {
  background-color: #1a1a1a;
  padding: 30px 0;
  text-align: center;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__block {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__block {
    width: 30%;
  }
}
.footer__logo-img {
  max-width: 120px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .footer__logo-img {
    max-width: 150px;
  }
}
.footer__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 15px;
  }
}
.footer__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 20px;
  margin-bottom: 15px;
  color: #d4af37;
}
@media (min-width: 768px) {
  .footer__title {
    font-size: 24px;
  }
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__menu-item {
  margin-bottom: 10px;
}
.footer__menu-link {
  color: #cccccc;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #d4af37;
}
.footer__address-text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 10px;
}
.footer__copy {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #cccccc;
  padding-top: 20px;
  border-top: 1px solid #343434;
}
@media (min-width: 768px) {
  .footer__copy {
    font-size: 14px;
  }
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #1a1a1a;
  border: 1px solid #d4af37;
  border-radius: 10px;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal {
    padding: 30px;
    max-width: 600px;
  }
}
@media (min-width: 1440px) {
  .modal {
    max-width: 800px;
  }
}
.modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal__content {
  position: relative;
}
.modal__close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease-in-out;
}
.modal__close-btn:hover {
  color: #d4af37;
}
@media (min-width: 768px) {
  .modal__close-btn {
    top: 15px;
    right: 15px;
    font-size: 35px;
  }
}
.modal__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 20px;
  text-align: center;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 36px;
    padding-right: 40px;
  }
}
.modal__text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 15px;
}
.modal__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .modal__text {
    font-size: 18px;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  color: #ffffff;
  padding: 15px 0;
  z-index: 1100;
  transform: translateY(100%);
  transition: transform 0.5s ease-out;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .cookie-banner__content {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}
.cookie-banner__text {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    font-size: 15px;
    margin-bottom: 0;
    flex-grow: 1;
    padding-right: 20px;
  }
}
@media (min-width: 1440px) {
  .cookie-banner__text {
    font-size: 16px;
  }
}
.cookie-banner__link {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-banner__link:hover {
  color: #a27b0a;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .cookie-banner__buttons {
    gap: 15px;
  }
}
.cookie-banner__btn {
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 768px) {
  .cookie-banner__btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
.cookie-banner__btn--accept {
  background-color: #d4af37;
  color: #1a1a1a;
}
.cookie-banner__btn--accept:hover {
  background-color: #a27b0a;
}
.cookie-banner__btn--decline {
  background-color: #cccccc;
  color: #1a1a1a;
}
.cookie-banner__btn--decline:hover {
  background-color: #a6a6a6;
}

.legal {
  padding: 60px 0;
  background-color: #272727;
  color: #ffffff;
}
@media (min-width: 768px) {
  .legal {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .legal {
    padding: 100px 0;
  }
}
.legal__title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 32px;
  color: #d4af37;
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .legal__title {
    font-size: 42px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1440px) {
  .legal__title {
    font-size: 56px;
  }
}
.legal__intro {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: white;
}
@media (min-width: 768px) {
  .legal__intro {
    font-size: 18px;
  }
}
.legal__section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #2e2e2e;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .legal__section {
    margin-bottom: 50px;
    padding: 30px;
  }
}
.legal__section-title {
  font-family: "Cinzel Decorative", cursive;
  font-size: 26px;
  color: #d4af37;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
@media (min-width: 768px) {
  .legal__section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
.legal__subsection-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .legal__subsection-title {
    font-size: 24px;
  }
}
.legal__text {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #cccccc;
}
.legal__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .legal__text {
    font-size: 16px;
  }
}
.legal__list {
  padding-left: 25px;
  margin-bottom: 15px;
  color: #cccccc;
}
.legal__list li {
  list-style: disc;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .legal__list li {
    font-size: 16px;
  }
}
.legal__link {
  color: #d4af37;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.legal__link:hover {
  color: #a27b0a;
}