.header-logo {
  opacity: 0;
  animation:
    fadeIn 1s ease-out 1s forwards;
}

/* Start: Titel unsichtbar, dann fadeIn, halten, fadeOut */
.animated-title {
  opacity: 0;
  /* 1s einblenden, 1s ausblenden nach 5s Verzögerung */
  animation:
    fadeIn 1s ease-out 2s forwards,
    fadeOut 1s ease-in 8s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  background-color: #e7e0d7!important;
  font-size: 1rem;
}

.footer, .footer a {
  color: #472414!important;
}

.footer .legal {
  display: flex;
  justify-content: center;
  gap: 43px
}

.logos img {
  max-height: 55px;
  width: auto;
}

.form-intro {
    max-width: 680px;
    margin-bottom: 100px;
}

.s-contacts .contact-person {
  padding: 7px 0 0;
}

/* .person-name {
  margin-bottom: 40px;
} */

.s-contacts .contact-person figure .person-img {
  max-width: 500px;
}

.glightbox-open {
  overflow: initial;
}

.contact-logo img {
  max-width: 180px;
}

.header .header-logo {
  width: 190px;
}

ol, ul {
  padding-left: 28px;
}

.contact-person ul li {
  color: #472414;
  font-weight: 500;
}

.footer .copyright {
  width: initial;
}

.footer .logos ul li a {
  height: 100px;
}

.footer .logos ul li:first-child img {
  transform: translate(-6px, 0px);
}

.fc-h-event .fc-event-title {
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--alt-font);
  font-weight: 500;
}

.s-details .subheadline {
  color: #472414;
}

.details-text.details-text-special {
  flex-direction: initial;
}

.s-details .s-footer {
  border-top: initial;
  padding: 2.65rem 0 8rem;
  margin: 4rem 0 0rem;
}

.details-btn {
  text-transform: initial;
}

.detials-btn-wrapper {
  margin-top: 1rem;
}

.btn-arrow-special {
  background-color: #e3d7c7;
}

.btn-arrow-special:hover {
  background-color: #d4c2aa;
  color: #472414;
}

.details-image-bg {
  background-image: url(https://lakeview-penthouse.ch/media/pages/home/a289855b74-1754479946/aria_aussen_01.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1026 / 754;
}

.s-hero .hero-bg {
  position: relative;
  width: 100%;
  height: 100vh;               
  overflow: hidden;
}

.s-hero .hero-bg video,
.s-hero .hero-bg .hero-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-hero .hero-bg .hero-image-mobile {
  display: none;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header .menu-lang li+li:before {
  margin: 0 .35rem 0 .5rem;
}

.header .btn {
  background-color: transparent;
}

/* Respo */
@media (min-width: 1800px) {
  .s-gallery-grid .gallery-grid {
    margin: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (max-width: 1024px) {
  .special-ps {
    padding-left: 0;
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .header .menu-lang li+li:before {
      margin: 0 0 0 0.25rem;
  }
}

@media (max-width: 767px) {
  .footer .legal {
    justify-content: start;
  }
}

/* Unter 600px: Desktop ausblenden, Mobile einblenden */
@media (max-width: 600px) {

  h1.animated-title {
    filter: drop-shadow(0px 0px 10px black);
}
  .s-hero .hero-bg video,
  .s-hero .hero-bg .hero-image {
    display: none;
  }

  .s-hero .hero-bg .hero-image-mobile {
    display: block;
  }

  .s-gallery-grid {
    display: none;
  }
}