* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth; /* optional smooth transition */
}

body {
  font-family: "Roboto", sans-serif;
  color: #111827;
  font-size: 16px;
  background: linear-gradient(to bottom, #fff, #999);
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-track {
  background: #f0f0f0;
}
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (min-width: 541px) {
  body {
    font-size: 18px;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

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

h2 {
  margin: 1em 0 0.5em 0;
}
h2:first-child {
  margin-top: 0;
}

h3 {
  margin: 2em 0 1em 0;
}

h2 + h3 {
  margin-top: 1em;
}

figure {
  display: block;
  margin: 0;
  padding: 0;
}

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

p:last-child {
  margin-bottom: 0;
}

main {
  height: 100vh; /* each section fills viewport */
  scroll-snap-type: y mandatory; /* enable vertical snap */
  overflow-y: scroll; /* allow scrolling */
  max-width: 767px;
  margin: 0 auto;
  background: #fff;
}
main::-webkit-scrollbar {
  width: 3px;
}
main::-webkit-scrollbar-track {
  background: #f0f0f0;
}
main::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
main::-webkit-scrollbar-thumb:hover {
  background: #555;
}

section {
  height: 100vh; /* each section is full screen */
  scroll-snap-align: start; /* snap to top of section */
}
section:not([data-no-padding]) {
  padding: 3.25rem 1.5rem 1.5rem 1.5rem;
}

.home-section {
  position: relative;
}
.home-section__slider {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.home-section__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-section__slider:not(.swiper-initialized) img:not(:first-child) {
  display: none;
}
.home-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(152deg, black, transparent);
}

.home {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow-y: scroll;
  color: #fff;
}
.home__h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-size: 35px;
  padding-top: 0.5em;
}
.home__h1 span {
  display: block;
}
.home__stretch {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
}
.home__no-stretch {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.home__price {
  font-size: 30px;
  font-weight: 500;
}
.home__price sup {
  font-weight: 300;
}
.home__price__num {
  font-size: 44px;
  font-weight: 900;
}
.home__overview {
  font-size: 20px;
}
.home__overview__apts {
  border: 1px solid rgba(238, 238, 238, 0.1882352941);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.5em;
  border-radius: 0.5em;
  color: #fff;
}
.home__overview__apts__link {
  text-decoration: none;
  display: flex;
  gap: 0.35em;
  align-items: center;
}
.home__overview__features {
  font-size: 15px;
  margin-top: 2em;
}
@media (max-width: 420px) and (max-height: 777px) {
  .home__overview__features {
    display: none;
  }
}
.home__overview__features li {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.home__button {
  display: flex;
  justify-content: center;
  font-size: 18px;
}
.home__button__btn {
  font-size: 1em;
  color: #fff;
  background-color: #0b5fff;
  border-radius: 1.5em;
  padding: 0.6em 1.2em;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.3s;
}
.home__button__btn:hover {
  transform: scale(1.02);
  background-color: rgba(11, 95, 255, 0.8666666667);
}
.home__note {
  font-size: 12px;
}

.apt-stretch {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
}

.apt-selector {
  flex: 0 0 auto;
}

.apt-selector {
  flex: 0 0 auto;
  background: rgba(217, 217, 217, 0.63);
  backdrop-filter: blur(5px);
  border-radius: 2.3rem;
  display: flex;
  justify-content: space-between;
  padding: 2px;
}
.apt-selector__item {
  font-size: 18px;
  padding: 0.3em 0.8em;
  font-weight: 400;
  border-radius: 2.3rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.35);
  transition: background-color 0.3s;
}
.apt-selector__item:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.apt-selector__item.active {
  background: #0b5fff;
  color: #fff;
  pointer-events: none;
  font-weight: 500;
}

.apt {
  flex: 1 1 auto;
  flex-direction: column;
  display: flex;
  overflow-y: scroll;
}
.apt__descr {
  margin-top: 1em;
}
.apt__descr p {
  margin: 0;
}
.apt__descr p:not(:last-child) {
  margin-bottom: 1.5em;
}
.apt__features {
  gap: 1em;
  font-weight: 500;
  margin-top: 2em;
}
.apt__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  align-items: center;
}
.apt__buttons__btn {
  font-size: 1em;
  color: #fff;
  background-color: #0b5fff;
  border-radius: 1.5em;
  padding: 0.6em 1.2em;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.3s;
}
.apt__buttons__btn:hover {
  transform: scale(1.02);
  background-color: rgba(11, 95, 255, 0.8666666667);
}
.apt__buttons__btn {
  font-size: 14px;
}
.apt__buttons__alt {
  font-size: 11px;
}
.apt__pic img {
  border-radius: 0.25em;
}

.apt-bottom {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.common-nav {
  display: flex;
  justify-content: space-between;
  background: rgba(86, 86, 86, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 2.3rem;
  padding: 4px 12px;
  position: absolute;
  z-index: 4;
  width: calc(100% - 3rem);
  top: 1em;
  left: 50%;
  max-width: calc(767px - 3rem);
  transform: translateX(-50%);
}
.common-nav__item {
  font-size: 12px;
  color: #fff;
}

.apt-room {
  height: 100%;
  position: relative;
}
.apt-room__content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 3.25rem 1.5rem;
  background: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  width: 100%;
}
.apt-room__content h2 {
  color: #fff;
  font-size: 1.5em;
}
.apt-room__content p {
  color: #fff;
  font-size: 1.1em;
}
.apt-room__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.apt-room__slider__item {
  display: block;
  width: 100%;
  height: 100%;
}
.apt-room__slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-room__next {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 2rem;
  font-size: 14px;
}
.apt-room__next__btn {
  font-size: 1em;
  color: #fff;
  background-color: #0b5fff;
  border-radius: 1.5em;
  padding: 0.6em 1.2em;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.3s;
}
.apt-room__next__btn:hover {
  transform: scale(1.02);
  background-color: rgba(11, 95, 255, 0.8666666667);
}
.apt-room__next__btn {
  background: rgba(11, 95, 255, 0.831372549);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  gap: 0.3em;
}

.rules {
  position: relative;
}
.rules__button {
  display: flex;
  justify-content: center;
  margin-top: 3em;
}
.rules__button__btn {
  font-size: 1em;
  color: #fff;
  background-color: #0b5fff;
  border-radius: 1.5em;
  padding: 0.6em 1.2em;
  text-decoration: none;
  width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.3s;
}
.rules__button__btn:hover {
  transform: scale(1.02);
  background-color: rgba(11, 95, 255, 0.8666666667);
}

.pay {
  position: relative;
}
.pay__scroller {
  height: 100%;
  overflow-y: scroll;
}
.pay .paymethods-v {
  max-width: 100%;
}
@media (min-width: 449px) {
  .pay .paymethods-v {
    width: 400px;
  }
}

.oferta {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.oferta__head {
  flex: 0 0 auto;
}
.oferta__dog {
  flex: 1 1 auto;
  border: 1px solid #eee;
  padding: 0 1em 1em 1em;
  border-radius: 3px;
  overflow-y: scroll;
}
.oferta__dog::-webkit-scrollbar {
  width: 3px;
}
.oferta__dog::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.oferta__dog::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.oferta__dog::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.contacts {
  position: relative;
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.contacts__list p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

footer {
  max-width: 767px;
  margin: 0 auto;
  padding: 1.5rem;
  font-size: 12px;
  background: #eee;
}

#scroll-dots-nav {
  position: fixed;
  right: calc(0.75rem - 2px);
  top: 50%; /* Vertically centered */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px; /* Space between dots */
  z-index: 1000; /* Ensure it's above content */
}

.scroll-dot {
  width: 4px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-dot:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.scroll-dot.active {
  background-color: #000; /* Black (or your theme color) */
  transform: scale(1.2); /* Make it slightly bigger */
}

/*# sourceMappingURL=styles.min.css.map */
