/* =========================================
   GLOBAL – Basis, Zoom-Sicherheit, Hintergrund
========================================= */

html {
  font-size: clamp(16px, 1.4vw, 20px);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 40, 40, 0.65), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(199, 31, 31, 0.55), transparent 70%),
    radial-gradient(circle at 50% 120%, rgba(231, 84, 84, 0.45), transparent 80%),
    linear-gradient(180deg, #ffffff 0%, #ffdede 40%, #ff9a9a 100%);
  background-size: 180% 180%;
  animation: glowShift 26s ease-in-out infinite;
}

*, *::before, *::after {
  box-sizing: border-box;
}

@keyframes glowShift {
  0% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
  100% { background-position: 50% 0%; }
}

/* =========================================
   TYPO / ÜBERSCHRIFTEN
========================================= */

.Überschrift1 { color: aliceblue; }

.Überschrift2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: rgb(0, 106, 206);
  font-size: clamp(2.4rem, 4vw, 3rem);
}

.Überschrift3 { 
  color: aliceblue;
 }

.Überschrift {
  font-size: clamp(2.5rem, 3vw, 2.4rem);
  text-align: center;
}

/* =========================================
   HEADER – Fixiert, Blur, Navigation
========================================= */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: clamp(10px, 1.5vw, 20px) 0;
  background: rgba(235, 46, 46, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 4%;
  position: relative;
}

.watermark {
  position: absolute;
  left: 1.6%;
  font-size: clamp(0.7rem, 1vw, 0.9rem);
  color: rgba(211, 47, 47, 0.8);
}

/* Burger-Icon (wird per JS getoggelt) */
.burger {
  display: none;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  cursor: pointer;
  user-select: none;
  transition: transform 0.3s ease;
}

.burger.rotate {
  transform: rotate(90deg);
}

/* Navigation */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.nav a:hover {
  color: #ffdede;
}

/* Mobile-Variante (per JS: .nav-open) */
.nav.nav-open {
  display: flex;
  flex-direction: column;
  background: rgba(0,0,0,0.95);
  padding: 1rem 1.4rem;
  border-radius: 10px;
  position: absolute;
  right: 20px;
  top: 70px;
  gap: 0.6rem;
}

/* =========================================
   HERO – Intro-Bereich
========================================= */

.hero {
  min-height: 100vh;
  padding: clamp(120px, 12vw, 180px) 1.6rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  margin: 0 auto;
}

.hero-logo {
  margin-top: 2rem;
}

.hero-logo-img {
  width: clamp(480px, 40vw, 850px); /* größer + skaliert mit Bildschirm */
  height: auto;
  display: block;
  margin: clamp(20px, 3vw, 40px) auto 0 auto;
  object-fit: contain;
  cursor: pointer;
}

.Überschrift1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: rgb(255, 255, 255);
}

.Überschrift2 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: rgb(0, 106, 206);
}

/* =========================================
   DIVIDER – Wellen
========================================= */

.divider {
  line-height: 0;
}

.divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.divider svg path {
  fill: white;
}

/* =========================================
   SECTIONS – Standard-Content
========================================= */

.section {
  background: white;
  padding: clamp(40px, 5vw, 80px) 1.6rem;
}

.section h2 {
  margin-bottom: 1rem;
}

.section p {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

/* About-Text */
.about-text .about-content {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  text-align: center;
}

.Galerie_Info { color: red; }
.Instagram_Kontakt { color: blue; }

/* =========================================
   FADE-IN – Scroll-Animation
========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   GALERIE – Bilder + Text
========================================= */

.gallery-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  flex-wrap: nowrap; /* Desktop: NICHT umbrechen */
  gap: 3vw;          /* skaliert mit Zoom */
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;
}



.gallery-img {
  flex: 1 1 30%;   /* echte Flex-Spalte */
  width: 30%;      /* skaliert mit Zoom */
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  cursor: pointer;
}



.gallery-img:hover {
  transform: scale(1.03);
}

.gallery-text {
  flex: 1 1 30%;
  width: 30%;
  text-align: center;
}


/* Versteckte Zusatzbilder für Lightbox */
.gallery-hidden {
  display: none;
}

/* =========================================
   LIGHTBOX – Galerie + Logo
========================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2000;
}

#gallery-lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

/* Pfeile */
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: red;
  background: none;
  border: none;
  cursor: pointer;
  user-select: none;
}

.gallery-btn.left { left: 2%; }
.gallery-btn.right { right: 2%; }

.gallery-caption {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.85);
  border-radius: 0.5rem;
  font-weight: 600;
  color: #333;
}

/* =========================================
   SHOWS – Termine
========================================= */

.shows-header {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
}

.month-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.4rem 0.8rem;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  border: none;
  border-radius: 6px;
  background-color: #ff4b4b;
  color: white;
  cursor: pointer;
}

.month-btn.left { left: 0; }
.month-btn.right { right: 0; }

.month-btn:disabled {
  background-color: #ccc;
  color: #666;
  cursor: not-allowed;
}

.show-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  background: rgba(255,255,255,0.85);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
}

.show-tip-click {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: red;
  background: rgba(255,255,255,0.85);
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  transition: 0.35s ease;
}

.show-tip-click.hide {
  opacity: 0;
  transform: translateY(-10px);
}

/* Show-Items */
.show-item {
  background: linear-gradient(135deg, #ff6b6b, #4dabf7);
  border-radius: 10px;
  padding: 1.1rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: white;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.show-item.show-slide {
  opacity: 1;
  transform: translateY(0);
}

.show-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.show-date {
  font-weight: bold;
}

.show-location {
  opacity: 0.95;
}

/* Details ein-/ausklappbar (per JS .open) */
.show-details {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    transform 0.45s ease;
}

.show-details.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.show-details a {
  color: #ffe0e0;
  text-decoration: underline;
}

/* Text in den Terminen zentrieren */
.show-item,
.show-main,
.show-details {
  text-align: center;
}

#shows-list p {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   KONTAKT – Sauber, zentriert, modern
========================================= */
.Kontakt_Text {
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  text-align: center;
  margin: 0.5rem auto;
}
/* =========================================
   DOWNLOAD – Logo + Button
========================================= */

.download-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.download-preview {
  width: 480px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.download-btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 2.0rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6b6b, #4dabf7);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* =========================================
   INSTAGRAM – Floating Button + Mobile-Link
========================================= */

.insta-float {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 12vw, 150px);
  z-index: 1000;
  transition: top 0.6s ease, transform 0.6s ease;
}

.insta-float img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.insta-float img:hover {
  transform: scale(1.1);
}

/* per JS: .scrolled, wenn weiter unten */
.insta-float.scrolled {
  top: 80px;
  transform: none;
}

.insta-menu {
  display: none;
  font-weight: 600;
}

/* =========================================
   RESPONSIVE – Tablet & Mobile
========================================= */

@media (max-width: 1100px) {
  .gallery-container {
    flex-wrap: wrap;
  }

  .gallery-img,
  .gallery-text {
    width: 100%;
    max-width: 100%;
  }
}


@media (max-width: 768px) {

  /* Header / Nav */
  .burger {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
  }

  .nav.nav-open {
    display: flex;
  }

  /* Shows: Tipp-Bubbles nicht überlagern */
  .show-tip,
  .show-tip-click {
    position: static;
    transform: none;
    margin: 0.5rem auto;
    max-width: 90%;
    text-align: center;
  }

  .hero-logo-img { 
    width: 90%;
    max-width: 360px;
    height: auto;
    object-fit: contain; 
  }
  /* Galerie untereinander */
  .gallery-container {
    flex-direction: column;
    margin-top: 2rem;
  }

  .gallery-img,
  .gallery-text {
    flex: 1 1 100%;
  }

  /* Download untereinander */
  .download-wrapper {
    flex-direction: column;
    gap: 1.5rem;
  }

  .download-preview {
    width: 70%;
  }

  .download-btn {
    width: 90%;
    text-align: center;
  }

  /* Instagram: Floating aus, Menü-Link an */
  .insta-float {
    display: none;
  }

  .insta-menu {
    display: inline-block;
  }
}

