* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: #080808;
}
@font-face {
  font-family: "PPMori";
  font-style: normal;
  font-weight: 800;
  src: url("/assets/fonts/PPMori/PPMori-Semibold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.header-desktop {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 1.8rem 2.4rem;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  transition: all 0.3s ease-in-out;
}

.header-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-desktop {
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  color: #efe9e3;
  text-decoration: none;
  font-weight: 200;
  font-size: 1.1rem;
}

.lang-link {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-mobile {
  width: 120px;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #efe9e3;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #efe9e3;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #080808;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1rem;
  padding: 30% 1rem 2rem 1rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #efe9e3;
  font-weight: 200;
  font-size: 2rem;
  line-height: 2rem;
}

.menu-divider {
  display: block;
  margin: 1rem 1rem 0 auto;
  width: calc(100% - 2rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #efe9e3;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1rem;
}

.language-switch a {
  text-decoration: none;
  color: #efe9e3;
  margin: 0 0.5rem;
  font-weight: 200;
}

.vertical-line {
  width: 1px;
  background: #efe9e3;
  height: 24px;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 16rem;
}

.hero-text h2 {
  color: #658c58;
  font-weight: 200;
  font-size: 1.2rem;
  margin: 0;
}

h1 {
  color: #efe9e3;
  font-family: "PPMori", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1rem 0 0 0;
}

.hero-text p {
  color: #efe9e3;
  font-weight: 200;
  width: 60%;
  font-size: 1.2rem;
  text-align: center;
}

.hero-img {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.hero-img-wrapper {
  width: 100%;
  padding: 0 8rem;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-wrapper {
  margin: 6rem 8rem;
}

.facts-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.facts-layout h3 {
  color: #efe9e3;
  font-family: "PPMori", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}
.facts-layout sup {
  font-size: 1rem;
}

.fact-item {
  border-bottom: 1px solid #565656;
  border-top: 1px solid #565656;
  padding: 2rem 0;
  width: 25%;
}

.facts-layout p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
  width: 65%;
  margin-bottom: 0;
}

.text-layout h2 {
  color: #efe9e3;
  font-family: "PPMori", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
}

.text-layout p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
}

.images-layout {
  margin-top: 6rem;
}

.img-large {
  width: 100%;
  height: 80vh;
}

.img-solo {
  position: relative;
}

.img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
}

.img-large-2 img {
  object-position: 50% 40%;
}

.img-split {
  display: grid;
  justify-content: space-between;
  gap: 1.8rem;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.8rem;
}

.img-small {
  position: relative;
}

.small-img {
  width: 100%;
  height: 550px;
}

.img-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(190, 188, 188, 0.05) 49.94%,
    rgba(0, 0, 0, 0.5) 98.08%
  );
  z-index: 1;
  pointer-events: none;
}

.img-large img,
.small-img img {
  position: relative;
  z-index: 0;
}

.img-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
}

.img-text h3 {
  color: #efe9e3;
  font-family: "PPMori", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0;
}

.img-text p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
  margin-bottom: 0;
  margin-top: 1rem;
}

.ausstattungen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 6rem;
}

.ausstattungen h2 {
  color: #efe9e3;
  font-family: "PPMori", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.icon-wrapper {
  margin: 2rem auto 0 auto;
  width: 70%;
  display: flex;
  justify-content: center;
}

.layout-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem 1.8rem;
}

.ausstattung-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: auto;
  white-space: nowrap;
}

.ausstattung-item img {
  display: block;
}

.ausstattung-item p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
  margin: 0;
}

.lyvia-plan {
  width: 100%;
  height: auto;
  margin-top: 2rem;
}

.lyvia-plan img {
  width: 100%;
  height: 100%;
}

.apartment-info-warapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2rem;
}

.apartment-info-warapper p {
  color: #efe9e3;
  font-weight: 200;
  font-size: 1.2rem;
  margin-top: 0;
}

.floor-plan {
  width: 100%;
  height: auto;
}
.floor-plan img {
  width: 100%;
  height: auto;
}

.video-wrapper {
  width: min(1100px, 100%);
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

footer {
  background-color: #0d0d0d;
  width: 100%;
  padding: 2rem 8rem 1rem 8rem;
}

.footer-logo-img {
  width: 130px;
  height: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  color: #dbd5c9;
  align-items: flex-start;
}

.footer-logo p {
  font-size: 1.2rem;
  width: 80%;
}

.social-links-layout {
  display: flex;
  gap: -2px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #3c3d37;
  padding-top: 0.9rem;
  margin-top: 2rem;
}

.footer-layout div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-layout h3 {
  font-size: 1.4rem;
  font-weight: 200;
  color: #dbd5c9;
  margin-bottom: 14px;
}

.footer-layout a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 100;
  color: #dbd5c9;
}

.footer-layout p {
  font-size: 1rem;
  font-weight: 100;
  color: #dbd5c9;
  margin: 0;
}

.footer-partners h3 {
  font-size: 1.4rem;
  font-weight: 200;
  color: #dbd5c9;
  margin-bottom: 14px;
}

.partners-layout {
  display: flex;
  gap: 1.4rem;
}

.borsalino-logo {
  width: 100px;
  height: auto;
  cursor: pointer;
}

.hotel-logo {
  width: 70px;
  height: auto;
  cursor: pointer;
}

.milla-logo {
  width: 60px;
  height: auto;
  cursor: pointer;
}

.apartments-logo {
  width: 90px;
  height: auto;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #3c3d37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom p {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 0.8rem;
  text-decoration: none;
  margin: 0;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  main {
    padding: 0 1rem;
    text-align: center;
  }
  h1 {
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .hero-text {
    padding-top: 12rem;
  }
  .hero-text p {
    width: 90%;
  }
  .hero-img-wrapper {
    height: 70vh;
    padding: 0;
  }
  .page-wrapper {
    margin: 6rem 1rem 6rem 1rem;
  }
  .facts-layout {
    flex-direction: column;
    gap: 0;
  }
  .fact-item {
    width: 100%;
    border-top: none;
  }
  .img-text {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .img-large {
    height: 550px;
  }
  .img-split {
    grid-template-columns: 1fr;
  }
  .ausstattungen h2 {
    width: 100%;
    font-size: 2rem;
  }
  .apartment-info-warapper {
    flex-direction: column-reverse;
  }
  .apartment-info-warapper h2 {
    width: 100%;
    font-size: 2rem;
  }

  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-layout {
    flex-direction: column;
  }
  .partners-layout {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hotel-logo {
    width: 60px;
  }
  .milla-logo {
    width: 50px;
  }
  .apartments-logo {
    width: 75px;
  }
  .borsalino-logo {
    width: 90px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  main {
    padding: 0 3rem;
    text-align: center;
  }
  h1 {
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .hero-text {
    padding-top: 12rem;
  }
  .hero-text p {
    width: 90%;
  }
  .hero-img-wrapper {
    height: 70vh;
    padding: 0;
  }
  .page-wrapper {
    margin: 6rem 3rem 6rem 3rem;
  }
  .facts-layout {
    flex-direction: column;
    gap: 0;
  }
  .fact-item {
    width: 100%;
    border-top: none;
  }
  .img-text {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .img-large {
    height: 550px;
  }
  .img-split {
    grid-template-columns: 1fr;
  }
  .ausstattungen h2 {
    width: 100%;
    font-size: 2rem;
  }

  .apartment-info-warapper {
    flex-direction: column-reverse;
  }
  .apartment-info-warapper h2 {
    width: 100%;
    font-size: 2rem;
  }

  footer {
    padding: 2rem 3rem 1rem 3rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-layout {
    flex-direction: column;
  }
  .partners-layout {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hotel-logo {
    width: 60px;
  }
  .milla-logo {
    width: 50px;
  }
  .apartments-logo {
    width: 75px;
  }
  .borsalino-logo {
    width: 90px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .hero-text {
    padding-top: 8rem;
  }
}

@media only screen and (min-width: 1224px) and (max-width: 1520px) {
  .hero-img-wrapper {
    padding: 0 5rem;
  }

  .page-wrapper {
    margin: 6rem 5rem;
  }

  footer {
    padding: 2rem 5rem 1rem 5rem;
  }
}
