    body {
      margin: 0;
      font-family: Poppins, sans-serif;
      background: #050607; 
      color: #fff;
    }

    a {
      color: #00e5ff;
    }

    /* HEADER – feste sichtbare Navigation */
    header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 10px 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
      header.header-hidden {
        transform: translateY(-100%);
        opacity: 0;
      }

    .header-inner {
      width: 100%;
      padding: 0 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
    }

    header img {
      height: 60px;
      flex-shrink: 0;
    }

    .menu-toggle {
        display: none;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.18);
        background: rgba(255,255,255,0.04);
        padding: 10px;
        box-sizing: border-box;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        cursor: pointer;
        transition: background 0.2s ease, border-color 0.2s ease;
        }
        .menu-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,229,255,0.6); }
        .menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
        .menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .menu-toggle.open span:nth-child(2) { opacity: 0; }
        .menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        body.nav-open { overflow: hidden; }


    .nav-links {
      display: flex;
      align-items: center;
      gap: 16px;
      text-transform: uppercase;
      letter-spacing: 1,5px;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      color: #d9d9d9;
      font-size: 20px;
      text-decoration: none;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .openings-dropdown {
  position: relative;
  display: inline-block;
}

.openings-panel {
  position: absolute;
  left: 0;
  top: 110%;
  background: rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 180px;
  z-index: 10;
   
  transform-origin: top;
  transform: scaleY(0.8);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.18s;

}

.openings-dropdown:hover .openings-panel,
.openings-dropdown:focus-within .openings-panel {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
}

.openings-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.openings-panel li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.4;
}

.openings-panel span { color: #00e5ff; }



    .menu-download:hover {
        text-shadow: 0 0 8px #00e5ff;
    }
    .nav-links a:hover {
      color: #00e5ff;
      text-shadow: 0 0 8px #00e5ff;
    }

    /* HERO – SLIDESHOW */
    .hero {
      position: relative;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 140px 20px 0;
      box-sizing: border-box;
      overflow: hidden;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-position: center;
      background-size: cover;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    .hero-slide.active {
      opacity: 1;
    }

    .hero-video-slide {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-size: 38px;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .hero span {
      color: #00e5ff;
    }

    .hero p {
      font-size: 16px;
      opacity: 0.9;
      max-width: 520px;
      margin: 0 auto 25px;
    }

     .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 40px;
      border: 1px solid #00e5ff;
      color: #00e5ff;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 10px;
      text-decoration: none;
      transition: 0.2s ease;
    } 

    .btn:hover {
      background: #00e5ff;
      color: #000;
    }

    /* SECTIONS */
    section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      box-sizing: border-box;
    }

    section h2 {
      text-align: center;
      font-size: 32px;
      letter-spacing: 5px;
      text-transform: uppercase;
      margin-bottom: 50px;
    }

    section h2 span {
      color: #00e5ff;
    }

    /* CLUB MOMENTS */
    .club-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
      margin-bottom: 40px;
    }

    .club-video {
      border-radius: 16px;
      overflow: hidden;
    }

    .club-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .club-text p {
      font-size: 16px;
      opacity: 0.9;
      line-height: 1.7;
    }

    .club-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .club-grid img {
      width: 100%;
      border-radius: 16px;
      max-height: 375px;
      min-height: 220px;
      object-fit: cover;
    }

    .club-carousel {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 30px;
}

.club-carousel.tc--fade::before,
.club-carousel.tc--fade::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.club-carousel-track {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  animation: clubSlide 25s linear infinite ;
  will-change: transform;
}

.club-slide {
  flex: 0 0 320px;  /* Breite einer Kachel */
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.club-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-slide:hover,
.club-slide:focus-within {
  transform: scale(1.06);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Pause der Animation bei Hover/Fokus auf dem gesamten Slider */
.club-carousel:hover .club-carousel-track,
.club-carousel:focus-within .club-carousel-track {
  animation-play-state: paused;
}

@keyframes clubSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* Track wird gedoppelt */
}

@media (max-width: 900px) {
  .club-carousel { height: 280px; }
  .club-slide { flex-basis: 240px; }
}


    /* BOTTLE SERVICE + MENÜ */
    .menu-preview img {
      width: 100%;
      max-width: 450px;
      margin: 0 auto;
      display: block;
      border-radius: 16px;
      object-fit: cover;
    }

    .menu-pair {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .menu-card h2 {
        text-align: center;
        margin-bottom: 24px;
    }

    .menu-download {
      text-align: center;
      margin-top: 20px;
    }

    .menu-download a {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: #00e5ff;
      font-size: 18px;
      text-decoration: none;
    }

    .menu-download a:hover {
      text-decoration: underline;
    }

    .menu-icon {
      height: 22px;
      border-radius: 50%;
    }

    /* ROOFTOP MOMENTS */
    .rooftop-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
    }

    .rooftop-video {
      border-radius: 16px;
      overflow: hidden;
    }

    .rooftop-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rooftop-text p {
      font-size: 16px;
      opacity: 0.9;
      line-height: 1.7;
    }

/* äußerer Rahmen begrenzt und zentriert */
.rooftop-carousel-wrap {
  width: min(100%, 1300px);
  margin: 40px auto 0 !important;
  padding: 0 !important;
}

/* das Karussell füllt nur den Wrapper */
.rooftop-carousel {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  height: 380px;
  overflow: hidden;  /* kein Durchlaufen über den Rand */
  border-radius: 16px;
}

.rooftop-carousel.tc--fade::before,
.rooftop-carousel.tc--fade::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.rooftop-carousel.tc--fade::before {
  left: 0;
}
.rooftop-carousel.tc--fade::after {
  right: 0;
}

.rooftop-carousel-track {
  display: flex;
  align-items: center;
  overflow: visible;
  gap: 24px;
  height: 100%;
  padding: 0 12px;
  animation: rooftopSlide 20s linear infinite reverse;
  will-change: transform;
}
.rooftop-slide {
  flex: 0 0 auto;
  width: 320px;
  height: 100%;
  overflow: hidden;              /* wichtig, damit Vergrößerung nicht abgeschnitten wird */
  border-radius: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
}

.rooftop-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: none;               /* kein Zoom auf dem Bild selbst */
}

/* nur das gehoverte/gefokuste Bild skalieren */
.rooftop-slide:hover,
.rooftop-slide:focus-within {
  transform: scale(1.08);
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.rooftop-carousel:hover .rooftop-carousel-track,
.rooftop-carousel:focus-within .rooftop-carousel-track {
  animation-play-state: paused;
}

@keyframes rooftopSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* weil wir den Track doppeln */
}

@media (max-width: 900px) {
  .rooftop-carousel { height: 300px; }
  .rooftop-slide { width: 240px; }
}

    /* RESERVIERUNG */
    .reserve {
      background: #0a0a0c;
      padding: 90px 20px;
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .reserve p a {
      color: #00e5ff;
      text-decoration: none;
    }

    /* KONTAKT */

    .kontakt-with-map {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: untereinander */
  gap: 24px;
}

#kontakt { padding: 0; max-width: none; padding-bottom: 30px;} /* Map bündig links */

.kontakt-map { margin: 0; padding: 0; }
.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 80vh;
  min-height: 260px;
  border: 0;
  border-radius: 0; /* kein Rand/Radius */
  border-bottom-right-radius: 12px;
 
}

.kontakt-info { padding-left: 24px; padding-right: 40px; max-width: 400px; } /* Abstand nur rechts lassen */


@media (min-width: 900px) {
  .kontakt-with-map {
    grid-template-columns: 1.1fr 1fr; /* Map | Info/Form */
    align-items: start;
  }
  .kontakt-info {
    justify-content: center;
  }
}

@media (max-width: 900px) {

  .kontakt-info {
    justify-self: center;
    align-self: center;
    text-align: left;   /* optional, wenn du den Text zentrieren willst */
    max-width: 480px;     /* optional, verhindert zu breite Zeilen */
  }
}

    input, textarea {
      width: 100%;
      padding: 10px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.2);
      background: #050608;
      color: white;
      margin-bottom: 12px;
      font-family: inherit;
    }

.bubble {
    --children: 5;
    --color: white;
    --bubble-width: calc(100% / var(--children));

    position: relative;
    overflow: hidden;
    z-index: 1 ;

    position: relative;
    overflow: hidden;
    z-index: 0;
    background-color: #000;
    border: 1px solid #00e5ff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.bubble span {
    position: absolute;
    left: calc((var(--child) - 1) * var(--bubble-width));
    width: var(--bubble-width);
    height: 100%;
    background-color: #00e5ff;
    transform: translateY(150%);
    border-radius: 35%;
    transition: 0.5s;
    transition-delay: calc((var(--child) - 1) * 0.1s);
    z-index: -1;
}

.bubble:hover,
.bubble:focus{
    border-color:gray;
    color: rgb(0, 0, 0);
}

.bubble:hover span,
.bubble:focus span {
    transform: translateY(0) scale(2);
}

    .bubble span:nth-child(1) {
        --child: 1;
    }
    
    .bubble span:nth-child(2) {
        --child: 2;
    }
    
    .bubble span:nth-child(3) {
        --child: 3;
    }
    
    .bubble span:nth-child(4) {
        --child: 4;
    }
    
    .bubble span:nth-child(5) {
        --child: 5;
    }

    /* IMPRESSUM & DATENSCHUTZ */
    .legal-section {
      font-size: 14px;
      line-height: 1.7;
    }

    .legal-section h3 {
      font-size: 20px;
      margin-top: 30px;
      margin-bottom: 10px;
      text-transform: none;
      letter-spacing: 0;
    }

    .legal-section p {
      margin: 5px 0 12px;
    }

    .legal-section ul {
      padding-left: 20px;
      margin: 5px 0 15px;
    }

    .legal-section li {
      margin-bottom: 4px;
    }

    /* FOOTER */
    footer {
      padding: 30px 20px 40px;
      text-align: center;
      font-size: 13px;
      opacity: 0.7;
      background-color: #3c4043;
    }

    .footer-links {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        }
    .footer-ig,
    .footer-TikTok {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        text-decoration: none;
        }
    .footer-ig:hover,
    .footer-TikTok:hover { color: #00e5ff; text-shadow: 0 0 8px #00e5ff;}

    .streamline-logos--tiktok-logo {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M16.5 2.25v3.17a6 6 0 0 0 3.75 1.33v2.45a8.45 8.45 0 0 1-3.75-.91v6.37a5.75 5.75 0 1 1-5.75-5.75c.24 0 .48.02.71.05v2.63a3.13 3.13 0 1 0 2.17 2.97V2.25z'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        text-shadow: 0 0 8px #00e5ff;
        }


    .footer-links a {
      color: #d9d9d9;
      font-size: 13px;
      text-decoration: none;
      margin: 0 8px;
    }

    .footer-links a:hover {
      color: #00e5ff;
    }

    .footer-hours {
      margin: 16px auto 10px;
      padding: 12px 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      display: inline-block;
      text-align: left;
      color: #d9d9d9;
    }

    .footer-hours strong {
      display: block;
      margin-bottom: 6px;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .footer-hours ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-hours li {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      font-size: 13px;
      line-height: 1.5;
    }

    .footer-hours span {
      color: #00e5ff;
    }

    /* MOBILE – Menü als Slider UNTER dem Logo */
    @media (max-width: 900px) {
      header img {
        height: 52px; margin: 0 auto; 
      }

    .header-inner {
        padding: 0 14px;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        gap: 0;
    }    

    .menu-toggle {
        display: flex;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        background: rgba(5,6,7,0.96);
        padding: 16px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.12);
        box-shadow: 0 14px 40px rgba(0,0,0,0.45);
        backdrop-filter: blur(10px);
    }


    .nav-links.open { display: flex; }
    .nav-links a { font-size: 15px; width: 100%; }
    .hero { padding-top: 120px; }

    .club-video {
        margin: 0;
    }
}

    /* DESKTOP ab 901px */
    @media (min-width: 901px) {
      header {
        padding: 18px 0;
      }

      .header-inner {
        padding: 0 45px;
        flex-direction: row;
        align-items: center;
      }

      header img {
        height: 75px;
      }

      .hero {
        padding-top: 120px;
      }

      .hero h1 {
        font-size: 60px;
      }

      .club-wrapper,
      .rooftop-wrapper,
      .kontakt-grid {
        grid-template-columns: 1.2fr 1fr;
      }

      @media (min-width: 901px) {
      .rooftop-wrapper {
          display: grid;
          grid-template-columns: 1fr 1.2fr; /* Text | Video */
          align-items: center;
          column-gap: 30px;
        }
      .rooftop-text { order: 1; text-align: left; }
      .rooftop-video { order: 2; }
    }


      .club-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      }
      
    .menu-pair {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
    }
}
  
    .streamline-logos--instagram-logo-2-solid {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M7.5.75A6.75 6.75 0 0 0 .75 7.5v9a6.75 6.75 0 0 0 6.75 6.75h9a6.75 6.75 0 0 0 6.75-6.75v-9A6.75 6.75 0 0 0 16.5.75zM2.25 7.5c0-2.9 2.35-5.25 5.25-5.25h9c2.9 0 5.25 2.35 5.25 5.25v9c0 2.9-2.35 5.25-5.25 5.25h-9a5.25 5.25 0 0 1-5.25-5.25zM19.5 6.25a1.25 1.25 0 1 1-2.5 0a1.25 1.25 0 0 1 2.5 0M12 7.75a4.25 4.25 0 1 0 0 8.5a4.25 4.25 0 0 0 0-8.5M6.25 12a5.75 5.75 0 1 1 11.5 0a5.75 5.75 0 0 1-11.5 0' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        }

    .streamline-logos--tiktok-logo {
        display: inline-block;
        width: 24px;
        height: 24px;
        --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linejoin='round' d='M16 1.5h-3.5V16c0 1.5-1.5 3-3 3s-3-.5-3-3c0-2 1.899-3.339 3.5-3V9.5c-6.12 0-7 5-7 6.5s.977 6.5 6.5 6.5c4.522 0 6.5-3.5 6.5-6v-8c1.146 1.018 2.922 1.357 5 1.5V6.5c-3.017 0-5-2.654-5-5Z' stroke-width='1'/%3E%3C/svg%3E");
        background-color: currentColor;
        -webkit-mask-image: var(--svg);
        mask-image: var(--svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        }
