
    body.dark-mode .menu-btn {
  filter: invert(1);
}

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=description');

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #f49f5b;
}

.lightbox-nav {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: #f49f5b;
  transform: scale(1.1);
}

.lightbox-counter {
  color: white;
  font-size: 18px;
  margin-top: 15px;
  font-family: 'Baloo 2', cursive;
}

/* Hover-Effekt für Gallery Items */
.gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Dark Mode Anpassungen für Lightbox */
body.dark-mode .lightbox {
  background-color: rgba(255, 255, 255, 0.95);
}

body.dark-mode .lightbox-close {
  color: #333;
}

body.dark-mode .lightbox-prev,
body.dark-mode .lightbox-next {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

body.dark-mode .lightbox-counter {
  color: #333;
}
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.download-item {
  background: rgba(255, 255, 255, 0.1);line-height: 1.5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.download-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
}

.download-icon {
  font-size: 48px;
  color: white;
  margin-bottom: 10px;
}

.download-text {
  font-weight: bold;
  font-size: 1rem;
}

/* Dark Mode Anpassungen */
body.dark-mode .download-item {
  background: rgba(240, 240, 240, 0.9);
}

body.dark-mode .download-link {
  color: black;
}

body.dark-mode .download-icon {
  color: black;
}

/* Bulletpoints in Aufzählungen im Dark-Mode */
body.dark-mode .highlighted-text li::before {
  color: black !important;
}

body.dark-mode .instrument-list li::before {
  color: black !important;
}
    .kontakt-formular {
        margin-top: 20px;
        padding: 20px;
        border-radius: 10px;
    }
    .info .anmerkungen {
  font-size: 0.9rem;
  margin-top: 5px;
  font-style: italic;
  color: rgba(255,255,255,0.8);
}
.instrument-list {
  list-style-type: none; /* Entfernt die Standard-Bullet Points */
  padding-left: 0; /* Entfernt den Standard-Einzug */
}

.instrument-list li {
  position: relative;
  padding-left: 20px; /* Platz für das Bullet lassen */
  margin-bottom: 8px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
}

.instrument-list li::before {
  content: "•";
  color: white; /* Weiße Bullet Points */
  position: absolute;
  left: 0;
}

.activity-list {
  list-style-type: none; /* Entfernt die Standard-Bullet Points */
  padding-left: 0; /* Entfernt den Standard-Einzug */
}

.activity-list li {
  position: relative;
  padding-left: 20px; /* Platz für das Bullet lassen */

  font-weight: normal;
}

.activity-list li::before {
  content: "•";
  color: white; /* Weiße Bullet Points */
  position: absolute;
  left: 0;
}

/* Dark Mode Anpassungen für die Kopie */
body.dark-mode .activity-list li::before {
  color: black !important;
}

body.dark-mode .info .anmerkungen {
  color: rgba(0,0,0,0.7);
}
    .formular-gruppe {
        margin-bottom: 15px;
    }
    
    .formular-gruppe label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .formular-gruppe input,
    .formular-gruppe textarea,
    .formular-gruppe select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background: rgba(255,255,255,0.9);
        font-family: 'Baloo 2', cursive;
    }
    
    .formular-gruppe textarea {
        height: 150px;
    }
    
    .formular-gruppe .checkbox {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .formular-gruppe .checkbox input {
        width: auto;
    }
    
    .fehlermeldung {
        color:  white;
        background: rgba(255,255,255,0.2);
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    
    .erfolgsmeldung {
        color: white;
        background: rgba(255,255,255,0.2);
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 15px;
        font-weight: bold;
    }
    
    .senden-button {
        background: #f49f5b;
        color: white;
        border: none;
        padding: 12px 25px;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Baloo 2', cursive;
        font-size: 1.1rem;
        transition: background 0.3s;
    }
    
    .senden-button:hover {
        background: #ea3c5b;
    }
    /* Ersetze die bestehenden Dark-Mode-Regeln durch diese: */
body.dark-mode {
  background: white !important;
  color: black !important;
}

body.dark-mode a {
  color: black !important;
}

body.dark-mode .section {
  background: white !important;
  color: black !important;
}

body.dark-mode .kontakt-formular {
  background: rgba(255,255,255,0.9) !important;
  color: black !important;
}

body.dark-mode .formular-gruppe input,
body.dark-mode .formular-gruppe textarea,
body.dark-mode .formular-gruppe select {
  background: rgba(240,240,240,0.9) !important;
  color: black !important;
  border-color: #aaa !important;
}

body.dark-mode .sidebar {
  background-color: rgba(255,255,255,0.9) !important;
}

body.dark-mode .sidebar a {
  color: black !important;
}

body.dark-mode .shadow-title {
  color: black !important;
  text-shadow: 10px 10px 30px rgba(0,0,0,0.2) !important;
}

body.dark-mode .highlighted-text li::before {
  color: #ea3c5b !important;
}

body.dark-mode .datum {
  border-color: black !important;
}
body.dark-mode .info {
  border-color: black !important;
}

body.dark-mode .gallery-item {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

body.dark-mode .gallery-caption {
  background: rgba(255,255,255,0.7) !important;
  color: black !important;
}

body.dark-mode .gallery-date {
  color: #ea3c5b !important;
}
   body {

  margin: 0;
  font-family: 'Baloo 2', cursive;
  font-weight: normal;
  background: linear-gradient(
  to bottom,
  #f2693d,
  #ed145b,
  #a73489,
  #2275cc,
  #00a859,
  #c0dc31
);
background-repeat: no-repeat;
  background-size: 100% 100%;
  background-attachment: scroll;
  background-repeat: no-repeat;
  min-height: 100%;
  color: white;
  padding-top: 80px;
  transition: all 0.5s ease;
}

.shadow-title {
  font-family: 'Baloo 2', cursive;
  font-size: 50px;
  font-weight: 700;
  color: white;
  text-shadow: 10px 10px 30px rgba(0, 0, 0, 0.7);
  transform: rotate(-5deg);
  display: inline-block;
  margin-bottom: 30px;
  line-height: 0.7;
}

.shadow-title p {
  margin: 15px 0;
  padding: 0;
}
    
    .Hello-Text {
  transform: rotate(-20deg);
  display: inline-block;  /* Wichtig für korrekte Containergröße */
  font-size: 50px;
  line-height: 90%;
  margin-bottom: 5%; 
  margin-top: 5%;     /* Reduziert */
  transform-origin: left center; /* Drehung von links mittig */
  white-space: nowrap;    /* Verhindert ungewollte Umbrüche */
  padding: 10px 20px;     /* Gibt dem Text etwas Raum */
}
    
    a{
      color: white;
      text-decoration: none;
    }
    

     /* NEU: Gallery-Wrapper für korrekte Positionierung */
    .gallery-position-wrapper {
      position: relative;
      width: 100%;
      margin-top: -80px;
      z-index: 1;
      overflow: hidden;
      max-height: 4000px;
    }

    .gallery-container {
      width: 100%;
      height: auto;
      z-index: 0;
    }
    
    /* Standard-Bild (für größere Bildschirme) */
    .gallery-container .desktop-img {
      margin-top: 20px;
      display: block;
      width: 100%;
      height: auto;
      z-index: 5;
    }
    
    /* Mobile-Bild (standardmäßig ausgeblendet) */
    .gallery-container .mobile-img {
      margin-top: 20px;
      display: none;
      width: 100%;
      height: auto;
    }
    
    /* Media Query für kleinere Bildschirme */
    @media (max-width: 768px) {
      .gallery-container .desktop-img {
        display: none;
      }
      
      .gallery-container .mobile-img {
        display: block;
      }
    }
.header-wrapper {
  position: relative;
  z-index: 10;
}

    
    .highlighted-text{
      font-size: 20px;
        font-weight:bold;
    }

    .gallery-track {
      display: flex;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      align-items: center;
      will-change: transform;
    }
    
    .gallery-slide {
      flex: 0 0 auto;
      width: 80vw;
      max-width: 600px;
      padding: 0 10px;
      box-sizing: border-box;
      transition: transform 0.1s linear;
    }
    
    .gallery-slide img {
      width: 100%;
      height: auto;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: filter 0.5s ease;
    }
    
    @media (min-width: 768px) {
      .gallery-slide {
        width: 50vw;
      }
    }
    
    @media (min-width: 1024px) {
      .gallery-slide {
        width: 40vw;
      }
    }
    
    /* Header bleibt unverändert - funktioniert in beiden Modi gleich */
    .header-wrapper {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 10;
    }
    
    .header-background {
      width: 100%;
      height: 100px;
      display: block;
      transition: filter 0.5s ease;
    }
    
    .header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      padding: 0.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .header .right img {
      height: 24px;
      margin-left: 10px;
      cursor: pointer;
      transition: filter 0.5s ease;
    }

    .logo {
      margin-top: 10px;
      height: 50px;
    }

    .icon-dark{
      margin-bottom: 30px;
    }

    .menu-btn {
      cursor: pointer;
      margin-bottom: 30px;
    }

    .mitglied {
  display: flex;
  align-items: center;
  gap: 1rem; /* Abstand zwischen Bild und Text */
  margin-bottom: 1rem;
}

.mitglied img {
  width: 20%; /* oder eine passende Größe */
  height: auto;
}

.mitglied .name {
  font-weight: bold;
  font-size: 1.2rem;
}

.mitglied .rolle {
  font-size: 1rem;
}
   .sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0; /* Geändert von zentriert auf rechts */
  background-color: rgba(163, 10, 158, 0.9);
  overflow-x: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  white-space: nowrap;
}
    
    .sidebar a {
      padding: 12px 20px;
      text-decoration: none;
      font-size: 1.1rem;
      color: white;
      display: block;
      transition: 0.2s;
      white-space: nowrap;
    }

    .sidebar a:hover {
  transform: scale(1.7); /* Sanfte Skalierung statt abrupte Größenänderung */
  transition: all 0.2s ease-out; /* Schnellere Transition für Hover */
}

    .eintrag {
      display: flex;
      margin-bottom: 15px;
      overflow: hidden;
      gap: 20px
    }

    .datum {
      border: 2px solid #ffffff;
      border-radius: 8px;
      padding: 10px;
      text-align: center;
      width: 60px;
      font-weight: bold;
      padding-right: 10px;
    }

    .datum .tag {
      font-size: 30px;
      line-height: 1;
    }

    .datum .monat {
      font-size: 20px;
    }

    .highlighted-text li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.highlighted-text li::before {
  content: "•";
  color: #f49f5b;
  position: absolute;
  left: 0;
}

.photo-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px;
    }
    
    .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
    
    .gallery-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .gallery-date {
        font-size: 0.8rem;
        color: #f49f5b;
    }
    
    @media (max-width: 768px) {
        .photo-gallery {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
            padding: 15px;
        }
        
        .gallery-item img {
            height: 150px;
        }
    }
    
    .info {
      width: 60%;
      border: 2px solid #ffffff;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      font-size: 20px;
    }

    .info .uhrzeit {
      font-weight: bold;
      margin-bottom: 4px;
    }

    .main-content {
      transition: margin-right .3s;
    }

    .footer-wrapper {
      position: relative;
      width: 100%;
    }

    .footer-background {
      width: 100%;
      height: 120px;
      display: block;
      z-index: 0;
      transition: filter 0.5s ease;
    }

    .footer {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1;
      text-align: center;
      padding: 0.5rem 0;
    }

    .footer a {
      color: white;
      text-decoration: none;
      font-size: 0.8rem;
    }

    .instagram-icon {
      width: 24px;
      transition: filter 0.5s ease;
    }

    .footer-content {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 5px;
    }
.section {
  border-radius: 15px;
  padding: 25px;
  margin: 15px auto;
  max-width: 1200px;
  width: calc(100% - 30px); /* 100% minus doppelter margin-Wert */
  box-sizing: border-box;
}
.about 
{
  padding: 25px;
  margin: 15px auto;
  max-width: 1200px;
  width: calc(100% - 30px); /* 100% minus doppelter margin-Wert */
  box-sizing: border-box;
}
.sidebar {
    height: 0;
    width: 0;
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(163, 10, 158, 0.9);
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    white-space: nowrap;
}

.sidebar.open {
    width: min(450px, 90vw);
    height: min(500px, 90vh);
    max-height: 80vh;
}

.sidebar a {
    padding: 12px 20px;
    opacity: 0;
    transition: all 0.3s ease 0.2s;
    font-size: 1.2rem;
}

.sidebar.open a {
    opacity: 1;
}

@media (min-width: 480px) {
  .about .section {
    padding: 30px;
    margin: 20px auto;
    width: calc(100% - 40px);
  }
}

@media (min-width: 768px) {
  .about .section {
    padding: 35px;
    margin: 25px auto;
    width: 90%;
  }
  .gallery-position-wrapper {
        height: auto;
      }
}

@media (min-width: 1024px) {
  .section {
    padding: 40px;
    margin: 30px auto;
  }
}


    h1 {
      font-size: 1.8rem;
      margin-top: 0;
    }

    @media (min-width: 768px) {
      body {
        padding-top: 120px;
      }
      
      .header-background {
        height: 140px;
      }

      .header {
        padding: 1rem;
      }

      .header .right img {
        height: 30px;
        margin-left: auto;
      }

      .logo {
        height: 70px;
        margin-top: 5px;
      }
      
      .icon-dark{
        margin-right: 10px;
        margin-bottom: 50px;
      }

      .menu-btn {
        cursor: pointer;
        margin-bottom: 50px;
      }/* Zentriertes quadratisches Menü für ALLE Bildschirmgrößen */

      .footer-background {
        height: 200px;
      }

      .footer a {
        font-size: 0.9rem;
      }

      .instagram-icon {
        width: 30px;
        margin-bottom: 10px;
      }

      .section {
        padding: 20px;
        padding-top: 50px;
      }

      h1 {
        font-size: 2.2rem;
      }
      
      .footer-content {
        display: block;
      }

      .footer-links {
        display: block;
      }
    
  }
    