* {
  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;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  color: #333333;
  background-color: #ffffff;
}
body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.container {
  max-width: 300px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .container {
    max-width: 728px;
    padding: 0 20px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1360px;
    padding: 0 40px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #daa520;
  color: #1a1a1a;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #ae8319;
  color: #ffffff;
}

.hero {
  background-image: url("/img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  color: #f5f5dc;
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.6);
  z-index: -1;
}
@media (min-width: 768px) {
  .hero {
    padding: 100px 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding: 150px 0;
  }
}
.hero__wrapper {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .hero__wrapper {
    max-width: 70%;
  }
}
@media (min-width: 1440px) {
  .hero__wrapper {
    max-width: 50%;
  }
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (min-width: 1440px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hero__text {
    font-size: 1.1rem;
  }
}
.hero .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  background-color: #1a1a1a;
  padding: 15px 0;
  color: #ffffff;
}
.header__wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  padding: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: fadeInDown 0.3s ease-out forwards;
}
.header__menu {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.header__menu-link {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}
@media (max-width: 768px) {
  .header__menu-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
  .header__menu-link::after {
    bottom: 0;
  }
}
.header__menu-link--active {
  color: #daa520;
}
.header__menu-link--active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #daa520;
}
.header__menu-link:not(.header__menu-link--active):hover {
  color: #daa520;
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header__burger--active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.hotels {
  padding: 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .hotels {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .hotels {
    padding: 80px 0;
  }
}
.hotels__title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .hotels__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .hotels__title {
    font-size: 3rem;
    margin-bottom: 50px;
  }
}
.hotels__list {
  display: grid;
  gap: 30px;
}
@media (min-width: 768px) {
  .hotels__list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}
@media (min-width: 1440px) {
  .hotels__list {
    gap: 50px;
  }
}
.hotels__list-item {
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}
.hotels__list-item--1 {
  background-image: url("../img/hotel-mobile-1.webp");
}
@media (min-width: 768px) {
  .hotels__list-item--1 {
    background-image: url("../img/hotel-tab-1.webp");
  }
}
@media (min-width: 1440px) {
  .hotels__list-item--1 {
    background-image: url("../img/hotel-desk-1.webp");
  }
}
.hotels__list-item--2 {
  background-image: url("../img/hotel-mobile-2.webp");
}
@media (min-width: 768px) {
  .hotels__list-item--2 {
    background-image: url("../img/hotel-tab-2.webp");
  }
}
@media (min-width: 1440px) {
  .hotels__list-item--2 {
    background-image: url("../img/hotel-desk-2.webp");
  }
}
.hotels__list-item--3 {
  background-image: url("../img/hotel-mobile-3.webp");
}
@media (min-width: 768px) {
  .hotels__list-item--3 {
    background-image: url("../img/hotel-tab-3.webp");
  }
}
@media (min-width: 1440px) {
  .hotels__list-item--3 {
    background-image: url("../img/hotel-desk-3.webp");
  }
}
.hotels__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0));
  z-index: 1;
}
.hotels__list-item > * {
  position: relative;
  z-index: 2;
}
.hotels__item-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .hotels__item-title {
    font-size: 1.8rem;
  }
}
.hotels__item-text {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.hotels__item-link {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.about {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .about {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 80px 0;
  }
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .about__wrapper {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}
.about__content {
  flex: 1;
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1440px) {
  .about__title {
    font-size: 3rem;
  }
}
.about__description {
  margin-bottom: 30px;
}
.about__text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.about__text:last-child {
  margin-bottom: 0;
}
.about__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.about__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .gallery {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .gallery {
    padding: 80px 0;
  }
}
.gallery__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
@media (min-width: 768px) {
  .gallery__list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
}
@media (min-width: 1440px) {
  .gallery__list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
}
.gallery__list-item {
  overflow: hidden;
  border-radius: 8px;
}
.gallery__item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery__item-img:hover {
  transform: scale(1.05);
}

.testimonial {
  background-size: cover;
  background-position: center;
  color: #f5f5dc;
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.7);
  z-index: -1;
}
@media (min-width: 768px) {
  .testimonial {
    padding: 80px 0;
  }
}
@media (min-width: 1440px) {
  .testimonial {
    padding: 100px 0;
  }
}
.testimonial__wrapper {
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .testimonial__wrapper {
    max-width: 60%;
  }
}
@media (min-width: 1440px) {
  .testimonial__wrapper {
    max-width: 45%;
  }
}
.testimonial__text {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}
@media (min-width: 768px) {
  .testimonial__text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1440px) {
  .testimonial__text {
    font-size: 1.5rem;
  }
}
.testimonial__author {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #daa520;
}
@media (min-width: 768px) {
  .testimonial__author {
    font-size: 1.4rem;
  }
}

.contact {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .contact {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__form {
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(26, 26, 26, 0.1);
}
@media (min-width: 768px) {
  .contact__form {
    max-width: 700px;
    padding: 40px;
  }
}
.contact__form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .contact__form-wrapper {
    flex-direction: row;
    gap: 30px;
  }
}
.contact__form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact__form-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 500;
}
.contact__form-input {
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  color: #333333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form-input:focus {
  outline: none;
  border-color: #daa520;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.2);
}
.contact__form-textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__form-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .contact__form-btn {
    width: auto;
    min-width: 200px;
  }
}
.contact__form-status {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  text-align: center;
  margin-top: 20px;
  color: #1a1a1a;
}

.policy,
.terms {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .policy,
  .terms {
    padding: 60px 0;
  }
}
@media (min-width: 1440px) {
  .policy,
  .terms {
    padding: 80px 0;
  }
}
.policy__title,
.terms__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  text-align: center;
}
@media (min-width: 768px) {
  .policy__title,
  .terms__title {
    font-size: 2.8rem;
  }
}
@media (min-width: 1440px) {
  .policy__title,
  .terms__title {
    font-size: 3.5rem;
  }
}
.policy__subtitle,
.terms__subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .policy__subtitle,
  .terms__subtitle {
    font-size: 1.8rem;
  }
}
.policy__text,
.terms__text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333333;
}
.policy__list,
.terms__list {
  margin-bottom: 15px;
  padding-left: 20px;
}
.policy__list-item,
.terms__list-item {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #333333;
  list-style: disc;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
}
.cookie-banner--active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: center;
    padding: 20px 0;
  }
}
.cookie-banner__text {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0 10px 15px 10px;
}
@media (min-width: 768px) {
  .cookie-banner__text {
    margin: 0 20px;
    font-size: 1rem;
    flex-grow: 1;
    text-align: left;
    max-width: 600px;
  }
}
.cookie-banner__text a {
  color: #daa520;
  text-decoration: underline;
}
.cookie-banner__text a:hover {
  color: #ae8319;
}
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .cookie-banner__buttons {
    gap: 15px;
  }
}
.cookie-banner__button {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 4px;
}
.cookie-banner__button--accept {
  background-color: #daa520;
  color: #1a1a1a;
}
.cookie-banner__button--accept:hover {
  background-color: #ae8319;
  color: #ffffff;
}
.cookie-banner__button--decline {
  background-color: transparent;
  color: #daa520;
  border: 1px solid #daa520;
}
.cookie-banner__button--decline:hover {
  background-color: #daa520;
  color: #1a1a1a;
}

.footer {
  background-color: #1a1a1a;
  padding: 25px 0;
  color: #f5f5dc;
  text-align: center;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 25px;
}
.footer__menu-link {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer__menu-link:hover {
  color: #daa520;
}
.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  margin: 0;
}