@import url("fonts.css");
@import url("null.css");

body {
  font-family: "Source Sans Pro", sans-serif;
}

[class*="__container"] {
  max-width: 1054px;
  padding-inline: 15px;
  margin: 0 auto;
}
/* ------------------ */

[class*="page__"], .footer {
  padding-block: 64px;
}
@media (max-width: 767.98px) {
  [class*="page__"], .footer {
    padding-block: 32px;
  }
}

/* ------------------ */

/* Components */
.button {
  border-radius: 4px;
  background-color: #d8ae5e;
  color: #f4f4f4;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .button:hover {
    background-color: #8a6e3b;
  }
}

.header-block {
  text-align: center;
}

.header-block::after {
  content: "";
  width: 120px;
  height: 1px;
  background-color: #d8ae5e;
  margin-top: 32px;
}

.header-block__title {
  font-family: "Bodoni 72", serif;
  text-transform: uppercase;
  font-size: 64px;
}

.header-block__title:not(:last-child) {
  margin-bottom: 8px;
}

.header-block__text {
  letter-spacing: 0.8px;
  line-height: 1.2;
  text-transform: uppercase;
}

.header-block__text p:not(:last-child) {
  margin-bottom: 5px;
}

@media (max-width: 767.98px) {
  .header-block__title {
    font-size: 39px;
  }
  .header-block::after {
    margin-top: 16px;
  }
  .header-block__text {
    font-size: 14px;
  }
}

@media (max-width: 479.98) {
  .header-block__title {
    font-size: 32px;
  }
}

/* ----------------- */
.wrapper {
  min-height: 100%;

  display: flex;
  flex-direction: column;
}
.wrapper > main {
  flex-grow: 1;
}
/* Hero */
.hero {
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 2;
  opacity: 0.6;
}

.hero__container {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 7.76699svh; /* 64/824 */
  row-gap: 15.54svh;
}
.hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 3.88svh;
}

.menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 15px;
}

@media (any-hover: hover) {
  .menu__link:hover {
    text-decoration: underline;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 2.427184svh; /* 20/824 */
}

.hero__title {
  font-family: "Bodoni 72", serif;
  font-size: 96px;
  text-transform: uppercase;
}

.hero__labal {
  letter-spacing: 3.6px;
  font-size: 24px;
  text-transform: uppercase;
}

.hero__image {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .hero__title {
    font-size: 66px;
  }

  .menu__link {
    font-size: 20px;
  }
}

/* About */
.about__header {
  margin-bottom: 32px;
}

.about__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.about__text {
  line-height: 1.5;
  font-size: 20px;
}

.about__text:not(:last-child) {
  margin-bottom: 32px;
}

.about__text p:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .about__text {
    font-size: 16px;
  }

  .about__text:not(:last-child) {
    margin-bottom: 16px;
  }

  .about__header {
    margin-bottom: 16px;
  }
}
/* --------------- */

/* Activities */
.activities {
  background-color: #f4f4f4;
}
.activities__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}

.activities__items {
  max-width: 930px;
  margin: 0 auto;
  align-self: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 128px;
  row-gap: 96px;
}
.activities__item {
  text-align: center;
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-activities__image {
  flex-grow: 1;
}
.item-activities__icon {
  max-width: 100%;
}
.item-activities__image:not(:last-child) {
  margin-bottom: 16px;
}
.item-activities__label {
  letter-spacing: 1px;
  font-size: 20px;
}
.activities__link {
  padding-bottom: 8px;
  border-bottom: 1px solid #d8ae5e;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .activities__link:hover {
    border-bottom: 1px solid #000;
  }
}

@media (max-width: 991.98px) {
  .activities__items {
    row-gap: 50px;
    column-gap: 80px;
  }
  .activities__container {
    gap: 44px;
  }
}
@media (max-width: 767.98px) {
  .activities__items {
    row-gap: 30px;
    column-gap: 50px;
  }
  .activities__container {
    gap: 32px;
  }
}
@media (max-width: 430px) {
  .activities__items {
    justify-content: flex-start;
    row-gap: 25px;
    column-gap: 20px;
  }
  .activities__item {
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    flex: 1 1 100%;
  }
  .item-activities__image {
    flex: 0 0 60px;
  }
  .item-activities__image:not(:last-child) {
    margin-bottom: 0px;
  }
}

/* Amenities */
.amenities__header:not(:last-child) {
  margin-bottom: 64px;
}
.amenities__section:not(:last-child) {
  margin-bottom: 74px;
}

.section-amenities__title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3.6px;
  font-size: 24px;
}
.section-amenities__title:not(:last-child) {
  margin-bottom: 32px;
}
.section-amenities__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.section-amenities__item {
  border-radius: 4px;
  overflow: hidden;
  flex-basis: 291px;
}

.section-amenities__item:nth-child(6n + 3),
.section-amenities__item:nth-child(6n + 4) {
  flex-basis: 408px;
}

.section-amenities__item:nth-child(6n + 3) .section-amenities__link,
.section-amenities__item:nth-child(6n + 4) .section-amenities__link {
  aspect-ratio: 408 /286;
}

@media (any-hover: hover) {
  .section-amenities__item:hover .section-amenities__image {
    transform: scale(1.1);
  }
}

.section-amenities__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  aspect-ratio: 291 / 286;
}

.section-amenities__link::after {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  background-color: #000;
  opacity: 0.2;
}
.section-amenities__label {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 4.2px;
  line-height: 1.2;
}
.section-amenities__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

@media (max-width: 767.98) {
  .amenities__header:not(:last-child) {
    margin-bottom: 32px;
  }

  .amenities__section:not(:last-child) {
    margin-bottom: 32px;
  }
}

/* Contacts */
.contacts {
  background-color: #f4f4f4;
}
.contacts__container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.contacts__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contacts__link {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.8px;
}

.contacts__link--phone::before {
  content: url("../img/contacts/phone.svg");
}
.contacts__link--mail::before {
  content: url("../img/contacts/email.svg");
}
.contacts__link--map::before {
  content: url("../img/contacts/map.svg");
}

@media (any-hover: hover) {
  .contacts__link:hover {
    text-decoration: underline;
  }
}

@media (max-width: 767.98) {
  .contacts__container {
    margin-bottom: 32px;
  }
  .contacts__items {
    gap: 15px;
  }
}
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 32px;
  row-gap: 16px;
}

/* Footer */

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  letter-spacing: 0.8px;
}

.footer__text {
  text-align: center;
  line-height: 1.5;
}

.footer__copy {
  text-align: center;
}
.footer__copy p:not(:last-child) {
  margin-bottom: 15px;
}

@media (any-hover:hover) {
  .footer__text a:hover {
    text-decoration: underline;
  }
  .footer__copy a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 767.98) {
  .footer__container {
    gap: 32px;
  }
}

/* Scroll up */
#scrollToTop {
  position: fixed;
  bottom: 40px;
  left: 73%;
  display: none;
  cursor: pointer;
  background-color: rgb(199, 188, 173);
  border-radius: 50%;
  padding: 10px;
  opacity: 0.8;
}

@media (min-width: 768px) {
  #scrollToTop {
    left: 80%;
  }
}

@media (min-width: 1440px) {
  #scrollToTop {
    left: 77%;
  }
}

.scroll-up {
  fill: #674a11;
}