* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #222;
  background: #fff;
    height: 100%;
}

h1, h2, h3 {
  font-family: 'Jost', sans-serif;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000; /* <- erhöhe diesen Wert */
  background: #f8f8f8;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
}

.logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;text-decoration: none;
  color: black;
}

.logo:hover {
  text-decoration: none;
  color: black;

}

nav ul {
  display: flex;
  list-style: none;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #b22222;
}

/* Hero */
.hero {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-text {
  flex: 0 0 40%;
  padding: 100px;
  background: #f0f0f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  flex: 0 0 60%;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
object-position: center;
  display: block;
  border: 0;
}

/* Titel */
.hero-text h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

/* Bereiche */
section {
  width: 100%;
  padding: 60px 20px;
  scroll-margin-top: 100px;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}


@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600&display=swap');

#konzerte {
  scroll-margin-top: 70px;
}
.concerts {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.concert {
  display: flex;
  padding: 0.2rem 0 1.5rem 0;
}
.concert:last-child .concert-info::after {
  content: none; /* Keine Linie beim letzten Konzert */
}
.concert-date {
  font-family: 'Roboto', sans-serif;
  min-width: 120px;
  padding-left: 0rem;
  font-size: 1rem;
  font-weight: 300; /* Dünner */
  color: #b22222;
}

.concert-details {
  
  margin-left: 4rem;
  flex: 1;
}

.concert-location {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1,5rem;
  margin-bottom: 0.25rem;
}

.concert-info {
  position: relative;
  color: #555;
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}

.concert-info::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ccc;
}



/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #f8f8f8;
  border-top: 1px solid #ddd;
  width: 100%;
}

/* RESPONSIVE STYLES */

/* 1. Navigation bei kleiner Breite in ein Burger-Menü umwandeln (optional) */
/* Hier machen wir es erstmal einfacher – Menü umbrechen bei Bedarf */

@media (max-width: 768px) {
  header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .logo {
    flex: 1 1 auto;
    margin-bottom: 0;
  }

  .burger {
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .hero {
    flex-direction: column-reverse;
    height: auto;
  }

 



.hero-text {
    padding: 40px 20px;
  }

  .hero-image {
    padding: 0 !important;  /* <<< Rand entfernen */
    margin: 0 !important;
  }

  .hero-image img {
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border: none;
    display: block;
  }







  section {
    padding: 40px 20px;
  }

  .concert-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2em;
  }

  .concert-date {
    font-size: 1em;
  }

  .concert-location, .concert-info {
    font-size: 0.9em;
  }

  footer {
    font-size: 0.9em;
    padding: 20px;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f8f8f8;
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }

  nav ul.show {
    display: flex;
  }
}

/* Verhindert Umbruch im Logo */
.logo {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Burger Icon – standardmäßig versteckt */
.burger {
  display: none;
  font-size: 2em;
  cursor: pointer;
}

/* Responsive Menü-Anpassung – ab 1024px sichtbar */
/* Responsive Menü-Anpassung – ab 1024px sichtbar */
@media (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    align-items: center;
  }

  .burger {
    display: block;
    margin-left: auto;
  }

  nav {
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  nav ul.open {
    display: flex;
  }

  nav ul li {
    width: 100%;
  }

  nav a {
    padding: 10px 20px;
    display: block;
    width: 100%;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.video-item h3 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #b22222;
}

.video-item iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.accordion-toggle {
  background: #f8f8f8;
  color: #333;
  cursor: pointer;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-left: 5px solid #b22222;
  font-weight: bold;
  text-align: left;
  width: 100%;
  outline: none;
  transition: background 0.3s;
  margin-top: 10px;
}

.accordion-toggle:hover {
  background: #fff5f5;
}

.accordion-content {
  padding: 15px 20px;
  display: none;
  border-left: 5px solid #b22222;
  background: #fefefe;
  border: 1px solid #ddd;
  border-top: none;
  animation: fadeIn 0.3s ease-in-out;
}

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

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  margin-top: 30px;
}

.feedback-card {
  flex: 1 1 calc(45% - 20px);
  min-width: 250px;
  max-width: 400px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
}

.card-toggle {
  background: #b22222;
  color: white;
  border: none;
  padding: 10px 15px;
  width: 100%;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 1em;
  transition: background 0.3s;
}

.card-toggle:hover {
  background: #a11d1d;
}

.card-content {
  display: none;
  padding-top: 15px;
  font-size: 0.95em;
  color: #333;
}

@media (max-width: 768px) {
  .feedback-card {
    flex: 1 1 100%;
  }
}

.feedback-scatter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 20px;
  justify-items: center;
  position: relative;
}

.feedback-card {
  background: #fffefb;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 3px 6px 12px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 300px;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

.feedback-card:hover {
  transform: scale(1.03);
}

.rotate1 { transform: rotate(-2deg); }
.rotate2 { transform: rotate(1.5deg); }
.rotate3 { transform: rotate(-1.2deg); }
.rotate4 { transform: rotate(2.3deg); }
.rotate5 { transform: rotate(-3deg); }

.card-toggle {
  background: #b22222;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.card-content {
  display: none;
  font-size: 0.95em;
  color: #333;
}
@media (min-width: 768px) {
  .burger {
    display: none;
  }
}
@media (max-width: 600px) {
  .feedback-scatter {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    transform: rotate(0deg) !important;
  }
}


.burger {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: black;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  position: absolute;
  left: 0;
}

.burger span:nth-child(1) {
  top: 2px;
}
.burger span:nth-child(2) {
  top: 8px;
}
.burger span:nth-child(3) {
  top: 14px;
}
.burger span:nth-child(4) {
  top: 20px;
}

/* Animation: Burger wird zu X */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}
.burger.active span:nth-child(2),
.burger.active span:nth-child(3) {
  opacity: 0;
}
.burger.active span:nth-child(4) {
  transform: rotate(-45deg);
  top: 11px;
}






/* Nur sichtbar bis max-width 1024px */
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background-color: #f8f8f8;
    padding: 10px 0;
  }

  nav ul.open {
    display: flex;
  }
}

#medien {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}

.video-main {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 30px;
}

.video-main iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnails {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.video-thumbnails img {
  width: 160px;
  height: auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s, opacity 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-thumbnails img:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 60px;
}

.media-gallery img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media-gallery img:hover {
  transform: scale(1.03);
}



.custom-footer {
  background-color: #000;
  color: #fff;
  font-family: 'Jost', sans-serif;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
}

.footer-left,
.footer-center {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left a,
.footer-center a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-left a:hover,
.footer-center a:hover {
  color: #b22222;
}

@media (max-width: 600px) {
  .custom-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-center {
    justify-content: flex-start;
  }
}

.feedback-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 0.2rem 0 1.5rem 0;
  align-items: start;
}
.feedback-person {
  font-family: 'Jost', sans-serif;
  min-width: 120px;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin-left: 0rem;
}

.feedback-text {
  margin-left: 7rem;
  flex: 1;
  position: relative;
  font-size: 1rem;
  color: #444;
  padding-bottom: 0.5rem;
}

.feedback-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #ccc;
}

.feedback-item:last-child .feedback-text::after {
  content: none;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.schueler-erfolge {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}

.erfolg-card {
  background: #f9f9f9;
  border: 0px solid black;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}



.erfolg-card ul {
  list-style-type: disc;
  padding-left: 1.2rem;
  text-align: left;
  margin: 0.5rem 0 0 0;
}

.erfolg-card li {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 0.3rem;
}



.erfolg-card:hover {
  transform: scale(1.03);
}

.erfolg-card p {
  font-size: 0.95rem;
  color: #333;
}
.erfolg-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.violinzirkus-card img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.violinzirkus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  max-width: 100%;
  width: 100%;
  padding: 0 2rem;
}



.kauf-optionen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.kauf-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.kauf-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.kauf-card p,
.kauf-card ul {
  font-size: 0.95rem;
  color: #333;
}

.kauf-card ul {
  list-style: disc inside;
  padding-left: 0;
}

.etsy-button {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #690e23;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

.etsy-button:hover {
  background-color: #d45200;
}

@media (max-width: 600px) {
  .feedback-text {
    margin-left: 0;
    padding-left: 1rem;
  }
}