/* Allgemeine Stile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Poppins', sans-serif;
  color: #f4f1de;
  line-height: 1.6;
  background-color: #0f172b;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2 {
  font-size: 2.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

p,
ul li {
  font-size: 1.2rem;
  line-height: 1.6;
}

p,
ul {
  margin-bottom: 1em;
}

.text--big {
  font-size: 2.0rem;
  font-weight: 400;

}

.margin-last-element {
  margin-bottom: 0.5rem !important;
}

@media (max-width: 900px) {
  .mobile-bar {
    width: 100vw;
    height: 2rem;
    /* oder gewünschte Höhe */
    background: #0f172b;
    /* oder gewünschte Farbe */
    z-index: 999;
  }

  h2,
  h1 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.2rem;
    margin-bottom: 1em;
  }

  p,
  ul li {
    font-size: 1.125rem;
  }

  p,
  ul {
    margin-bottom: 1em;
  }

  .margin-last-element {
    margin-bottom: 0 !important;
  }

  .text--big {
    font-size: 1.4rem !important;
    font-weight: 400 !important;

  }
}



/* Content Links unterstrichen, aber nicht bei Bildern */
.content-box a:not(:has(img)),
.section a:not(:has(img)),
p a:not(:has(img)),
figcaption a {
  text-decoration: underline;
}


html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

footer {
  background-color: #0f172b;
  color: #f4f1de;
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #f4f1de;
  text-decoration: underline;
  font-size: 1.2rem;
}

.footer-separator {
  color: #f4f1de;
  font-size: 1.2rem;
  user-select: none;
}

@media (max-width: 900px) {
  footer {
    padding: 1rem;
  }

  .footer-links {
    gap: 0.3rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-separator {
    font-size: 0.9rem;
  }
}


/* Social Icons im Header */
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  gap: 1.5rem;
  list-style: none;
  margin-top: 0.5rem;
  padding: 0;
  margin-right: 0.5rem;
  z-index: 2002;
  margin-bottom: 0;
}

/* Social Icons Mobile: Standard ausblenden */
.social-icons-mobile {
  display: none;
}


.social-icon-link {
  display: inline-block;
  width: 36px;
  height: 36px;
  transition: transform 0.2s;
}

.social-icon-link:hover,
.social-icon-link:focus {
  transform: scale(1.13) rotate(-6deg);
  /** svg {
    fill: #f47b0c;
  }**/
}

.social-icon-link .icon-instagram {
  width: 36px;
  height: 36px;
  display: block;
  fill: #f4f1de;
  transform: scale(1.4);
}

.social-icon-link svg {
  width: 36px;
  height: 36px;
  display: block;
}

.circle-icon1 {
  background: #000; 
  border-radius: 50%;
  padding: 1px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 2px solid #f4f1de; 
  display: inline-block;
  width: 36px;
  height: 36px;
  object-fit: contain;
}


/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  color: #f4f1de;
  padding: 1.0rem 2.4rem;
  display: flex;
  align-items: center;
  z-index: 1000;
  justify-content: flex-start;
  gap: 1.8rem;
}

/* Burger */
.burger-checkbox {
  display: none !important;
}

.burger-menu {
  position: relative;
  width: 72px;
  /* Noch länger */
  height: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 30000;
}

.burger-menu span {
  display: block;
  position: absolute;
  height: 5px;
  /* Dünner */
  width: 64px;
  /* Länger */
  background: #f4f1de;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
}

.burger-menu span:nth-child(1) {
  top: 10px;
}

.burger-menu span:nth-child(2) {
  top: 22px;
}

.burger-menu span:nth-child(3) {
  top: 34px;
}

/* Animation zum Kreuz */
.burger-checkbox:checked+.burger-menu span:nth-child(1) {
  transform: rotate(45deg);
  width: 48px;
  top: 22px;
}

.burger-checkbox:checked+.burger-menu span:nth-child(2) {
  opacity: 0;
}

.burger-checkbox:checked+.burger-menu span:nth-child(3) {
  transform: rotate(-45deg);
  width: 48px;
  top: 22px;
}

/* Standard: Menü ist draußen */
.fullscreen-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  background: rgba(5, 10, 20, 0.9);
  /* halbtransparent */
  backdrop-filter: blur(12px);
  /* Bl9r-Effekt */
  -webkit-backdrop-filter: blur(12px);
  /* Für Safari */
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4rem;
  z-index: 999;
  transition: right 0.6s cubic-bezier(.77, 0, .18, 1);
}

/* Logo oben rechts im Fullscreen-Menü */

.fullscreen-menu .fullscreen-logo {
  display: none;
}

.burger-checkbox:checked~.fullscreen-menu {
  right: 0;
}

.nav-links {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4rem;
  padding-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
}


.nav-links a {
  text-decoration: none;
  transition: color 0.5s, font-weight 0.5s;
  color: #f4f1de;
}

.nav-links a.active {
  background: linear-gradient(90deg, #f47b0c 0%, #a5a1a1 50%, #2cc0fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}


/* Submenu im Fullscreen-Menü */
.has-submenu {
  position: relative;
}

.submenu {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0rem 0.5rem 0rem;
  padding: 0.5rem 0rem 0.5rem 0em;
  position: static;
  justify-content: center;
  z-index: 10;
  border-top: 1px solid #f4f1de;
  border-bottom: 1px solid #f4f1de;
}

.submenu li a {
  font-size: 1.125rem;
  padding: 0.2rem 0;
}

@media (min-width: 901px) {

  .fullscreen-menu {
    width: 550px;
    right: -550px;
  }

  .burger-checkbox:checked~.fullscreen-menu {
    right: 0;
  }


  .nav-links a:hover {
    background: linear-gradient(90deg, #f47b0c 0%, #a5a1a1 50%, #2cc0fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
  }

  .submenu {
    width: 190px;
    min-width: 180px;
    max-width: 100%;
  }

  .submenu li a {
    margin-left: 1rem;
  }


}


/* Responsive Anpassung */

@media (max-width: 900px) and (orientation: landscape) {
  .fullscreen-menu {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
  }

  .nav-links {
    overflow-y: auto;
    max-height: 100dvh;
    min-height: 0;
    margin-top: 0;
    padding-top: 0rem !important;
  }
}

@media (max-width: 900px) {

  /* Social Icons auf Mobil: Desktop-Icons ausblenden, Mobile-Icons einblenden */
  .social-icons {
    display: none !important;
  }


  .navbar {
    padding: 1rem;
    gap: 0.5rem;
  }

  .submenu-arrow {
    display: none;
  }

  .fullscreen-menu .social-icons-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin-top: 0.5rem;
    padding: 0;
    z-index: 2002;
    margin-bottom: 0.5rem;
  }

  .social-icons-mobile {
    position: fixed;
    top: 1.2rem;
    /* gleiche Höhe wie Burgermenu, ggf. anpassen */
    left: 1rem;
    z-index: 1001;
    display: flex;
    gap: 0.5rem;
    background: none;
    box-shadow: none;
  }

  .social-icons-mobile .social-icon-link svg {
    width: 30px;
    height: 30px;
  }

  .social-icons-mobile {
    transition: opacity 0.3s;
  }

  .social-icons-mobile.hide {
    opacity: 0;
    pointer-events: none;
  }



  .fullscreen-menu .fullscreen-logo {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    right: auto;
    display: block;
  }

  .nav-links {
    padding-top: 0rem;
    align-items: center;
    justify-content: flex-start;
    gap: 0.2rem;
    height: 100vh;
    min-height: 0;
    width: auto;
    margin-top: 2.1rem;

  }

  .nav-links a {
    font-size: 1.2rem;
    text-align: center;
    width: 100%;
    display: block;
  }

  .submenu {
    display: flex;
    flex-direction: column;
    margin: 0.2rem 0 0.2rem 0;
    padding: 0.2rem 0rem 0rem 0rem;
    position: static;
    z-index: 10;

  }

  .submenu li a {
    font-size: 1.1rem;
    padding: 0.2rem 0;
    text-align: center;
  }

  .burger-menu {
    width: 44px;
    height: 44px;
    background: linear-gradient(90deg, #f47b0c 0%, #000000 50%, #2cc0fe 100%);
    /* dunkles Lila */
    border-radius: 50%;
    /* Kreis */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 12px rgba(58, 24, 92, 0.18);
    position: relative;
  }


  .burger-menu span {
    height: 3px;
    width: 28px;
    border-radius: 2px;
    background: #f4f1de;
    position: absolute;
    left: 8px;
    transition: all 0.3s cubic-bezier(.77, 0, .18, 1);
  }

  .burger-menu span:nth-child(1) {
    top: 12px;
  }

  .burger-menu span:nth-child(2) {
    top: 20px;
  }

  .burger-menu span:nth-child(3) {
    top: 28px;
  }

  .burger-checkbox:checked+.burger-menu span:nth-child(1) {
    width: 26px;
    top: 19.5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .burger-checkbox:checked+.burger-menu span:nth-child(2) {
    opacity: 0;
  }

  .burger-checkbox:checked+.burger-menu span:nth-child(3) {
    width: 26px;
    top: 19.5px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }
}





/* Hero-Bereich */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  /* Video füllt den gesamten Bereich */
  z-index: -1;
  /* Video hinter den Text legen */
}

@media (max-width: 900px) {
  .hero {
    height: 45vh;
    /* Weniger Höhe auf mobilen Geräten */
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: 90vh;
  }

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    aspect-ratio: unset;
    object-fit: cover;
  }
}

.logo-container {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%) scale(1);
  display: flex;
  align-items: center;
  z-index: 2;
  transition:
    left 0.4s cubic-bezier(.4, 1.4, .6, 1),
    top 0.4s cubic-bezier(.4, 1.4, .6, 1),
    bottom 0.4s cubic-bezier(.4, 1.4, .6, 1),
    transform 0.4s;
}

.logo-container a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.logo-container--mobile {
  display: none;
}

.logo-container {
  display: block;
}

.logo-container.fixed-top {
  position: fixed !important;
  top: 0;
  bottom: auto;
  z-index: 2000;
}

/* Ab hier Mobile-Logo einblenden, Desktop-Logo ausblenden */
@media (max-width: 900px) {
  .logo-container--mobile {
    display: block;
    position: absolute;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    animation: fadeInLogo 0.5s;
  }

  .logo-container {
    display: none;
  }
}


.title {
  display: flex;
  flex-direction: column;
  line-height: 1;

}

.title span:first-child {
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

.title span:last-child {
  font-style: italic;
  font-size: 1.8rem;
  margin-left: 4.2rem;
}

@media (max-width: 1200px) {
  .title span:first-child {
    font-size: 2rem;
  }

  .title span:last-child {
    font-size: 1.2rem;
    margin-left: 2.5rem;
  }
}

@media (max-width: 900px) {
  .title span:first-child {
    font-size: 1.4rem;
  }

  .title span:last-child {
    font-size: 1.0rem;
    margin-left: 2rem;
  }
}

/* Standard: Desktop zeigt nur das Hintergrundbild */

/* Parallax-Bereich */
.parallax {
  position: relative;
  min-height: 70vh;
  /* Vollbildhöhe */
  min-height: 85vh;
  background-attachment: fixed;
  /* Fixiert das Hintergrundbild */
  background-size: cover;
  /* Füllt den gesamten Bereich */
  background-position: center;
  /* Zentriert das Bild */
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f4f1de;
  /* Heller Text */
  font-family: 'Courier New', Courier, monospace;
  font-size: 2rem;
  text-align: center;
  opacity: 0;
  /* Startet unsichtbar */
  animation: fadeIn 3s ease-in forwards;
  overflow: hidden;
}

.parallax-img-mobile {
  display: none;
}

@media (max-width: 900px),
(pointer: coarse) {
  .parallax {
    display: block;
    overflow: hidden;
    background-attachment: scroll !important;
    position: relative;
    background-image: none !important;
    background-color: #0f172b;
    background-size: cover;
    min-height: 50vh;
    height: 50vh;
  }

  .parallax-img-mobile {
    display: block;
    position: absolute;
    top: -20px;
    left: 0;
    height: 55vh;
    min-height: 55vh;
    width: 100%;
    /* <-- Bild immer so groß wie Section */
    /** object-fit: cover;*/
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
  }


  .parallax .content,
  .parallax>*:not(.parallax-img-mobile) {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 900px) and (orientation: landscape) {

  .parallax {
    min-height: 100vh;
    height: 100vh;
  }

  .parallax-img-mobile {
    top: 0;
    left: 0;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
  }
}


.parallax .content {
  z-index: 1;
}

/* Abschnitte */
.section {
  text-align: center;
  padding: 2.75rem 1rem;
  background-color: #0f172b;
  position: relative;
  color: #f4f1de;
  max-width: 100%;
  box-shadow:
    0 60px 80px -20px rgba(0, 0, 0, 0.32),
    0 -60px 80px -20px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.section h2 {
  text-align: center;
}

.section h1 {
  text-align: center;
}

.section h3 {
  text-align: center;
}

.section ul {
  list-style: none;
  margin-left: 1.5em;
  padding-left: 0;
  margin-bottom: 1.5em;
}

.section ul li {
  position: relative;
  margin-bottom: 0.4em;
  padding-left: 1.2em;
}

.section ul li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #f47b0c;
  /* Orange, kann angepasst werden */
  font-weight: bold;
}

.section-datenschutz h2 {
  font-size: 1.5rem !important;
}

.section-datenschutz h3,
.section-datenschutz h4 {
  font-size: 1.3rem !important;
}

.content-box {
  padding: 0rem 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.content-box--image-right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}

.content-box--image-right .content-text {
  width: 50%;
  text-align: left;
  margin: 0;
}

.content-box--image-right .content-image-wrap {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.content-box--image-right .content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  margin-bottom: 1em;
}

.image-caption {
  text-align: left;
  font-size: 0.95em;
  color: #d0c3c3;
  margin-bottom: 1em;
}


/** content box center **/
@media (min-width: 901px) {

  .section--center {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content-box--center {
    width: auto !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: left;
  }

  .content-box--small {
    max-width: 900px;
    width: 100%;
    text-align: left;
  }

  .content-box--extra-small {
    max-width: 600px;
    width: 100%;
    text-align: left;
  }

}

@media (max-width: 900px) {

  .content-box {
    padding: 0rem 1rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
  }

  .content-box--image-right {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }

  .content-box--image-right .content-text,
  .content-box--image-right .content-image-wrap {
    width: 100%;
    text-align: left;
  }

  .content-box--image-right .content-image {
    width: 100%;
  }
}



.content-box--left {
  width: 100%;
}

.content-box p,
.content-box h2,
.content-box h3,
.content-box h1 {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.center-text {
  text-align: center !important;
}


.video-main {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  position: relative;
  display: block;
}

.video-main img,
.video-main iframe {
  width: 100%;
  border-radius: 1rem;
  display: block;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: background 0.2s;
}

.video-placeholder {
  position: relative;
}
.video-preview {
  position: relative;
}


.play-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.play-btn svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  display: block;
}

.play-btn2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 160px;
  height: 48px;
  background: linear-gradient(90deg, #f47b0c 0%, #000000 50%, #2cc0fe 100%);
  border-radius: 12px;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(58, 24, 92, 0.18);
  transition: background 0.2s, box-shadow 0.2s;
  padding: 0 32px;
}

.play-btn2.small {
  font-size: 1rem;
  height: 30px;
  min-width: 44px;
  padding: 0;
  border-radius: 8px;
  
}

.play-btn2:hover {
  box-shadow: 0 4px 24px rgba(58, 24, 92, 0.28);
  background: linear-gradient(90deg, #f47b0c 0%, #2cc0fe 100%);
}

.cookie-hint {
  position: absolute;
  left: 50%;
  top: calc(50% + 38px); 
  transform: translateX(-50%);
  width: 60%;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  background-color: rgba(15, 23, 43, 0.82); 
  border-radius: 8px;
  padding: 0.4em 0.8em; 
  box-sizing: border-box;
  cursor: pointer;
  pointer-events: auto;
}

.cookie-hint.small{
  width: 95%;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.cookie-hint[style*="display: none"] {
  pointer-events: none !important;
}

@media (max-width: 900px) {

  .play-btn {
    width: 40px;
    height: 40px;
  }

  .play-btn svg {
    width: 24px;
    height: 24px;
  }
}

.video-main iframe {
  aspect-ratio: 16/9;
  border: none;
}

/**.video-thumbs {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  padding: 1.5rem 2rem;
  margin: 0 auto 0 auto;
  justify-content: center;
  box-sizing: border-box;
}

.video-thumbs .thumb {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 0.7rem;
  cursor: pointer;
  object-fit: cover;
  aspect-ratio: 16/9;
 
}**/
.video-flex-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}

.video-main-large {
  flex: 2.2 1 0;
  min-width: 0;
}

.video-side-column {
  flex: 1.05 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-width: 0;
}

.video-side-item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  display: block;
}

.video-main-large iframe,
.video-side-item iframe {
  border: 2px solid #ffffff82;
  border-radius: 1rem;
}

.video-carousel {
  display: none;
}

@media (max-width: 900px) {

  .video-flex-row {
    display: none !important;
  }

  .video-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    max-width: 100vw;
    margin: 0 -1rem;
    padding-left: 2rem;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
  }

  .video-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .carousel-item {
    flex: 0 0 75vw;
    max-width: 80vw;
    scroll-snap-align: center;
    position: relative;
    border-radius: 1rem;
    background: #111;
    cursor: pointer;
  }

  .carousel-item img {
    border: 4px solid rgba(255, 255, 255, 0.8);
    width: 100%;
    min-width: 100%;
    border-radius: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
  }

  .carousel-spacer {
    flex: 0 0 40vw;
    /* Halbe Breite eines 80vw-Items */
    max-width: 40vw;
    pointer-events: none;
    background: transparent;
    padding-right: 1rem;
    margin-right: 1rem;
  }


}


.spotify-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spotify-btn:hover {
  transform: scale(1.08);
}

.spotify-embed {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(.77, 0, .18, 1), opacity 0.4s;
  margin-top: 1rem;
}

.spotify-embed.active {
  max-height: 800px;
  /* oder mehr, je nach Embed-Höhe */
  opacity: 1;
}

.cookie-hint-spotify .spotify-hint-bg {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 352px; /* wie der Spotify-iframe */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-hint-spotify img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.7) blur(1px) brightness(0.7);
  transition: filter 0.3s;
}

.cookie-hint-spotify .spotify-hint-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.cookie-hint-spotify .spotify-hint-text {
  position: absolute;
  z-index: 2;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem;
}

.music-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 1rem 0 1rem 1rem;
}

.music-btn:hover {
  transform: scale(1.08);
}

.sauna-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  padding-bottom: 2rem;
  padding-top: 3rem;
}

.sauna-gallery figure {
  flex: 1 1 140px;
  max-width: 180px;
  text-align: center;
  margin: 0;
}

.sauna-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  transition: opacity 0.3s;
}

.sauna-gallery figcaption {
  margin-top: 1rem;
  color: #f4f1de;
  font-size: 1.2rem;
}

.sauna-gallery-mobile {
  display: none;
}

.swipe-icon {
  display: none;
}

@media (max-width: 900px) {
  .sauna-gallery {
    display: none !important;
  }

  .sauna-gallery-mobile {
    position: relative;
    display: flex;
    gap: 0rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    max-width: 100vw;
    margin: 0 -1rem;
    padding-left: 0rem;
    box-sizing: content-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sauna-gallery-mobile figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* horizontal zentriert */
    justify-content: center;
    flex: 0 0 50vw;
    max-width: 55vw;
    scroll-snap-align: center;
    margin: 0;
  }

  .sauna-gallery-mobile figcaption {
    font-size: 1rem;
    margin-top: 1rem;
  }

  .sauna-gallery-mobile figure:first-child {
    /**margin-left: 32.5vw; /* Passe den Wert nach Wunsch an */
    /** mit swipe icon **/
    margin-left: 12.5vw;
    margin-right: 12.5vw;

  }

  /** bei swipe icon **/
  .sauna-gallery-mobile figure:first-child figcaption {
    margin-left: 7rem;
    /* Passe den Wert nach Wunsch an */
  }

  .sauna-gallery-mobile figure:last-child {
    margin-right: 32.5vw;
    /* Passe den Wert nach Wunsch an */
  }

  .sauna-gallery-mobile img {
    width: auto;
    height: 320px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
  }

  .swipe-img-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Kein position: relative nötig */
  }

  .swipe-icon {
    display: inline-flex;
    align-items: center;
    margin-right: 4rem;
    /* Abstand zum Bild, nutze den freien Platz */
    animation: swipePulse 1.2s infinite;
    pointer-events: none;
    position: static;
    /* NICHT absolute! */
  }

  .swipe-icon svg {
    fill: #f4f1de;
    width: 80px;
    height: 80px;
    display: block;
  }
}


/* Footer */
.footer {

  padding: 2rem 2rem 5rem 2rem; /* oben, rechts, unten, links */
  text-align: center;
}

@keyframes swipePulse {
  0% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.0);
  }

  100% {
    opacity: 0.7;
    transform: translateY(-50%) scale(1);
  }
}

/* Einblendeanimation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/** Cookie Banner **/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(30, 43, 80, 0.98);
  color: #f4f1de;
  z-index: 9999;
  box-shadow: 0 -2px 24px rgba(0,0,0,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.2rem;
  font-size: 0.9rem;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1), opacity 0.7s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-right: 2rem;
}
.cookie-banner .cookie-text a {
  text-decoration: underline;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 1rem;
}
.cookie-banner .cookie-btn {
  padding: 0.6em 1.4em;
  font-size: 0.9rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.cookie-banner .cookie-btn.decline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-banner .cookie-btn.agree {
  background: #fff;
  color: #0a1020;
  border: 2px solid #fff;
}
.cookie-banner .cookie-btn.agree:hover {
  background: rgba(255, 255, 255, 0.7);
  /* border-color: #2cc0fe; */
}
.cookie-banner .cookie-btn.decline:hover {
  background: #2cc0fe;
  color: #fff;
  border-color: #2cc0fe;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.2rem;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Optional: Fade-In-Animation */
@keyframes fadeInLogo {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Pulsierende Animation für den Play-Button */
@keyframes pulsePlay {
  0% {
    box-shadow: 0 0 0 0 rgba(253, 207, 84, 0.7);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(253, 207, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(253, 207, 84, 0);
  }
}