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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 992px) {
  .container {
    padding: 0 0.75rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 0.5rem;
  }
}

.header {
  background-color: #f9f6f1;
  padding: 1rem 0;
  font-family: "Open Sans", sans-serif;
  border-bottom: 1px solid #cbbba0;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: inline-block;
}
.header__logo svg {
  height: 86px;
}
.header__nav {
  display: flex;
  align-items: center;
}
.header__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__list-item {
  position: relative;
}
.header__list-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__list-link {
  color: #2e2e2e;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.header__list-link:hover {
  color: #a9745b;
}
.header__list-arrow {
  margin-left: 0.5rem;
  font-size: 0.75rem;
}
.header__dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  background-color: #cbbba0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.header__dropdown-item {
  white-space: nowrap;
}
.header__dropdown-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  color: #2e2e2e;
  text-decoration: none;
}
.header__dropdown-link:hover {
  background-color: #a9745b;
  color: #fff;
}
.header__dropdown-link:hover .header__dropdown-text {
  color: #fff;
}
.header__dropdown-img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
.header__dropdown-text {
  font-size: 0.9rem;
  font-family: "Open Sans", sans-serif;
  color: #2e2e2e;
}
@media (max-width: 992px) {
  .header__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .header__list {
    flex-direction: column;
    gap: 1rem;
  }
  .header__nav {
    width: 100%;
    margin-top: 1rem;
  }
}

.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/hero-bg.webp");
  background-color: #f9f6f1;
  padding: 4rem 0;
  font-family: "Open Sans", sans-serif;
  color: #f9f6f1;
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 992px) {
  .hero__wrapper {
    flex-direction: column;
  }
}
.hero__left {
  flex: 1;
}
.hero__left .hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Merriweather", serif;
  margin-bottom: 1rem;
  color: #f9f6f1;
}
.hero__left .hero__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f9f6f1;
  margin-bottom: 2rem;
}
.hero__left .hero__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero__left .hero__list .hero__item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.hero__left .hero__list .hero__item .hero__icon {
  font-size: 1.25rem;
  color: #a9745b;
  margin-right: 0.75rem;
}
.hero__left .hero__list .hero__item .hero__text {
  color: #2e2e2e;
  font-size: 1rem;
}
.hero__right {
  flex: 1;
}

.search {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.search__header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.search__header__icon,
.search__header .search__icon {
  color: #a9745b;
  font-size: 1.5rem;
  margin-right: 0.75rem;
}
.search__header .search__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6e5843;
}
.search__tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.search__tabs--main {
  margin-bottom: 1rem;
}
.search__tabs--sub {
  margin-bottom: 2rem;
}
.search__tabs .search__tab {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  background-color: #cbbba0;
  color: white;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.3s;
}
.search__tabs .search__tab:not(:last-child) {
  margin-right: 0.5rem;
}
.search__tabs .search__tab--active {
  background-color: #a9745b;
}
.search__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.search__group {
  display: flex;
  flex-direction: column;
}
.search__group .search__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #6e5843;
  font-size: 0.95rem;
}
.search__group .search__select,
.search__group .search__input {
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  color: #2e2e2e;
}
.search__group .search__select:focus,
.search__group .search__input:focus {
  outline: none;
  border-color: #a9745b;
}
.search__row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .search__row {
    flex-direction: column;
  }
}
.search__row .search__group {
  flex: 1;
}
.search__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  background-color: #a9745b;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 1rem;
  font-family: "Open Sans", sans-serif;
}
.search__button i {
  margin-right: 0.5rem;
}
.search__button:hover {
  background-color: #895d48;
}
.search__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(169, 116, 91, 0.4);
}

.features {
  background-color: #f9f6f1;
  padding: 5rem 0;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #2e2e2e;
}
.features__title {
  font-family: "Merriweather", serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #6e5843;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }
}
.features__list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.features__item {
  flex: 1 1 calc(33.333% - 2rem);
  background-color: #fff;
  border: 1px solid #cbbba0;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .features__item {
    flex: 1 1 100%;
  }
}
.features__icon {
  font-size: 2.5rem;
  color: #a9745b;
  margin-bottom: 1rem;
}
.features__subtitle {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #6e5843;
}
.features__text {
  font-size: 1rem;
  line-height: 1.6;
  color: #8a8170;
}

.countries {
  background-color: #f9f6f1;
  padding: 5rem 0;
  font-family: "Open Sans", sans-serif;
  color: #2e2e2e;
}
.countries__title {
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  color: #6e5843;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .countries__title {
    font-size: 2rem;
  }
}
.countries__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.countries__item {
  position: relative;
  flex: 1 1 calc(33.333% - 2rem);
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.countries__item:hover {
  transform: scale(1.02);
}
.countries__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}
.countries__item > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .countries__item {
    flex: 1 1 100%;
  }
}
.countries__item-title {
  font-family: "Merriweather", serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.countries__item-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #eee;
}
.countries__item-btn {
  background-color: #a9745b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.countries__item-btn:hover {
  background-color: #895d48;
}

.activities {
  background-color: #f9f6f1;
  padding: 5rem 0;
  font-family: "Open Sans", sans-serif;
  color: #2e2e2e;
}
.activities__title {
  text-align: center;
  font-family: "Merriweather", serif;
  font-size: 2.5rem;
  color: #6e5843;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .activities__title {
    font-size: 2rem;
  }
}
.activities__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.activities__item {
  position: relative;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.activities__item:hover {
  transform: scale(1.02);
}
.activities__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
}
.activities__item > * {
  position: relative;
  z-index: 2;
}
.activities__item-title {
  font-family: "Merriweather", serif;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.activities__item-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #eee;
}
.activities__item-btn {
  background-color: #a9745b;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.activities__item-btn:hover {
  background-color: #895d48;
}

.footer {
  background-image: url("../img/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 0;
  font-family: "Open Sans", sans-serif;
  color: #cbbba0;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 46, 46, 0.85);
  z-index: 0;
}
.footer .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer__logo {
  display: inline-block;
  text-decoration: none;
}
.footer__logo svg {
  height: 86px;
  margin-bottom: 1rem;
}
.footer__logo-text {
  font-size: 1rem;
  font-family: "Merriweather", serif;
  line-height: 1.6;
  color: #cbbba0;
}
.footer__title {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #a9745b;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__item {
  margin-bottom: 0.5rem;
}
.footer__link {
  text-decoration: none;
  color: #cbbba0;
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #a9745b;
}
.footer__divider {
  border-top: 1px solid rgba(203, 187, 160, 0.3);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.footer__copyright {
  text-align: center;
  font-size: 0.9rem;
  color: #8a8170;
}
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0;
  }
  .footer__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__logo-text {
    max-width: 100%;
  }
}

.popular-hotels {
  background-color: #f9f6f1;
  padding: 4rem 0;
}
.popular-hotels__title {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #6e5843;
  margin-bottom: 3rem;
  text-align: center;
}
.popular-hotels__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.popular-hotels__item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #fefdfc;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(46, 46, 46, 0.1);
}
@media (max-width: 992px) {
  .popular-hotels__item {
    flex-direction: column;
    text-align: center;
  }
}
.popular-hotels__content {
  flex: 1;
}
@media (max-width: 992px) {
  .popular-hotels__content {
    order: 2;
  }
}
.popular-hotels__name {
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #6e5843;
  margin-bottom: 0.5rem;
}
.popular-hotels__description {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2e2e2e;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.popular-hotels__rating {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #a9745b;
  margin-bottom: 1rem;
}
.popular-hotels__benefits {
  list-style: disc inside;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #8a8170;
  margin: 0;
  padding-left: 1rem;
}
.popular-hotels__benefits li {
  margin-bottom: 0.5rem;
}
.popular-hotels__image {
  flex: 1;
  max-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(46, 46, 46, 0.15);
}
.popular-hotels__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 992px) {
  .popular-hotels__image {
    max-width: 100%;
    order: 1;
    margin-bottom: 1.5rem;
  }
}

.contact {
  background-color: #f9f6f1;
  padding: 4rem 0;
  color: #2e2e2e;
  font-family: "Open Sans", sans-serif;
}
.contact__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 992px) {
  .contact__wrapper {
    flex-direction: column;
  }
}
.contact__left, .contact__right {
  flex: 1;
}
.contact__title {
  font-family: "Merriweather", serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #6e5843;
}
.contact__text {
  font-size: 1rem;
  color: #8a8170;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact__info-title {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #cbbba0;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #2e2e2e;
}
.contact__info-item i {
  color: #a9745b;
  font-size: 1.25rem;
  line-height: 1.5;
}
.contact__info-item p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.contact__form-title {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #6e5843;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__form-field {
  display: flex;
  flex-direction: column;
}
.contact__form-label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #2e2e2e;
}
.contact__form-input, .contact__form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #b8b3a8;
  border-radius: 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #2e2e2e;
  background-color: #fff;
}
.contact__form-input:focus, .contact__form-textarea:focus {
  outline: none;
  border-color: #a9745b;
  box-shadow: 0 0 0 2px rgba(169, 116, 91, 0.2);
}
.contact__form-textarea {
  min-height: 150px;
  resize: vertical;
}
.contact__form-button {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: #a9745b;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact__form-button:hover {
  background-color: #895d48;
}
.contact__form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #8a8170;
}

.legal {
  background-color: #f9f6f1;
  padding: 4rem 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #2e2e2e;
}
.legal__title {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #6e5843;
  margin-bottom: 1.5rem;
  text-align: center;
}
.legal__subtitle {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #a9745b;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal__text {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #2e2e2e;
}
.legal__list {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal__list li {
  margin-bottom: 0.5rem;
  color: #2e2e2e;
}
.legal__updated {
  margin-top: 2rem;
  font-style: italic;
  color: #8a8170;
  text-align: right;
}
.legal a {
  color: #a9745b;
  text-decoration: underline;
}
.legal a:hover {
  color: #895d48;
}
@media (max-width: 768px) {
  .legal {
    padding: 2rem 0;
  }
  .legal__title {
    font-size: 1.5rem;
  }
  .legal__subtitle {
    font-size: 1.25rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  background-color: #cbbba0;
  color: #2e2e2e;
  padding: 1rem;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.95rem;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
.cookie-banner p {
  margin: 0;
  display: inline;
}
.cookie-banner a {
  color: #a9745b;
  text-decoration: underline;
}
.cookie-banner__btn {
  margin-left: 1rem;
  background-color: #a9745b;
  color: #f9f6f1;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.cookie-banner__btn:hover {
  background-color: #895d48;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1500;
}
.popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 46, 46, 0.6);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 1;
}
.popup__content {
  position: relative;
  background-color: #fff;
  padding: 2rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
  z-index: 2;
  text-align: center;
  font-family: "Merriweather", serif;
  color: #2e2e2e;
}
.popup__title {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.popup__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.popup__btn--confirm, .popup__btn--deny {
  padding: 0.6rem 1.6rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.popup__btn--confirm:focus, .popup__btn--deny:focus {
  outline: 2px solid #a9745b;
  outline-offset: 2px;
}
.popup__btn--confirm {
  background-color: #6e5843;
  color: #fff;
}
.popup__btn--confirm:hover {
  background-color: #4e3f30;
}
.popup__btn--deny {
  background-color: #cbbba0;
  color: #2e2e2e;
}
.popup__btn--deny:hover {
  background-color: #b9a37f;
}