/* ===============================
   Grundlegende Text-Styles
   =============================== */
body {
    font-family: Arial, Verdana, sans-serif;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 1em;
    line-height: 1.3;
    font-size: 1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ausnahme für die Übersichtsseite */
body.uebersicht {
    max-width: 99%;
}

/* ===============================
   Breadcrumbs Navigation
   =============================== */
.breadcrumbs {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 1.5em;
}

.breadcrumbs a {
    color: #555;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.4em; /* Abstand zwischen Zeilen */
}

.breadcrumbs span {
    display: inline-block;
    margin-bottom: 0.4em;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus {
    text-decoration: underline;
}
.breadcrumbs > * {
    display: inline;
}
.breadcrumbs > *:not(:last-child)::after {
    content: " > ";
    color: #999;
}

.breadcrumbs img {
    float: left;
    border-radius: 50%;
    margin-right: 0.5em;
    width: 32px;
    height: 32px;
    object-fit: cover;
}

/* ===============================
   img naechster Link
   =============================== */
.naechster {
    border: 1px solid #ccc;
     background: #eee;
    padding: 0.3em 0.6em;
    margin-left: 1em;
    text-decoration: none;
}
.naechster:hover {
   
    background-color:#00FFB5;

}

/* ===============================
   Interne Links
   =============================== */

   .interne {background-color:#e6e6e6; padding:0.3em 0.5em; border: 1px solid #000; border-radius:5px; }

   .interne a {color: #000; text-decoration: none; padding:0.3em;}

   .interne a:hover {text-decoration: underline; color:#555;}
/* ===============================
   Klangskizze
   =============================== */

.klangskizze {
    margin: 2em 0;
}

.klangskizze-header {
    display: flex;
    align-items: center;
    gap: 0.8em;
    flex-wrap: wrap;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.klangskizze-title {
    font-weight: bold;
    white-space: nowrap;
}

.audio-player button {
    font-size: 1em;
    padding: 0.3em 0.6em;
    background: #eee;
    border: 1px solid #ccc;
    border-radius: 30%;
    cursor: pointer;
}
.audio-player button:hover {
    background: #00FFB5;
;
}

/* ===============================
   Die Empfehlungsliste
   =============================== */

.empfehlungen {
    margin: 2rem 0;
    padding: 0.3em 1.5em;
    background-color: #ecebe8;
    border: 1px solid #555;
    border-radius: 15px;
    overflow: hidden; /* oder: display: flow-root; */
}


.empfehlungen h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.empfehlungsliste {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    column-count: 3;
    column-gap: 2rem;
}

.empfehlungsliste li {
    break-inside: avoid;
    margin-bottom: 0.7rem;
}

.empfehlungsliste li a {
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
}

.empfehlungsliste li a:hover,
.empfehlungsliste li a:focus {
    text-decoration: underline;
}

/* ===============================
   Responsive Anpassung
   =============================== */

@media screen and (max-width: 768px) {
    .empfehlungsliste {
        column-count: 1;
    }
}


/*Fließtext für index */

.fliesstext {
  position: relative;       /* Damit das Hamburger-Icon relativ positioniert werden kann */
  z-index: 0;
  font-size: 0.9rem;          /* Nicht zu klein, gut lesbar */
  line-height: 1.2;           /* Großzügige Zeilenhöhe */
  color: #2c2c2c;             /* Weiches Dunkelgrau statt Schwarz */
  max-width: 65ch;            /* Optimale Zeilenlänge */
  margin: 1.5rem auto;        /* Zentrierung mit Abstand nach oben/unten */
  padding: 0 1rem;            /* Seitliche Polsterung für Luft */
  text-align: left;        /* Gleichmäßiger Blocksatz */
  hyphens: auto;              /* Automatische Silbentrennung */
}
.fliesstext {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
}

/* Hamburger-Icon */
.hamburger {
  display: flex;
  z-index: 1001; /* Ganz oben */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 80px;
}
.hamburger div {
  height: 4px;
  background: #333;         /* Farbe des Icons */
  border-radius: 2px;
}

/* Navigation */
.menu {
    z-index: 1000; /* Menü über allen Inhalten */
  display: none;
  flex-direction: column;
  background: #f5f5f5;
  position: absolute;
  top: 50px;
  right: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px;
}
.menu a {
  color: #333;
  text-decoration: none;
  padding: 10px;
}
.menu a:hover {
  background: #ddd;
}

/* Aktives Menü */
.menu.active {
  display: flex;
}


/* ===============================
   Einführungstext (.intro)
   =============================== */
.intro {
    margin-bottom: 2em;
    font-size: 1.1em;
    color: #333;
}

/* ===============================
   Liedtext / Lyrics (.songtext)
   =============================== */
.songtext {
    list-style: none;
    padding: 0;
    margin: 0;
}

.songtext li {
    margin-bottom: 1.2em;
    transition: opacity 0.2s ease;
}

.songtext li a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.songtext li a:hover {
    opacity: 0.7;
}

.songtext h3 {
    margin: 0;
    font-size: 1.1em;
    text-decoration: underline;
}

.songtext p {
    margin: 0.2em 0 0 0;
    font-size: 1em;
    line-height: 1.4;
    color: #444;
}
.songtext li {
    margin-bottom: 1.5em;
    break-inside: avoid;
    transition: opacity 0.2s ease;
}

.songtext li h3 {
    font-size: 1.1em;
    margin: 0;
    text-decoration: underline;
}

.songtext li p {
    font-size: 0.9em;
    margin: 0.2em 0 0;
    color: #444;
    line-height: 1.4;
}

.songtext li:hover {
    opacity: 0.6;
}



/* Spaltenlayout für größere Bildschirme */
@media screen and (min-width: 900px) {
    .songtext {
        max-width: 75em;   /* ca. 960px */
        margin: 0 auto;
    padding: 0 1em;
        column-count: 2;
        column-gap: 3em;
    }
}

/* ===============================
   Die wirklichen Lyrics(.kartoffelkoenig)
   =============================== */
.kartoffelkoenig {
    font-size: 1.1em;
    line-height: 1.4;
    max-width: 42em;       /* angenehme Zeilenlänge für Mobilgeräte */
    margin-left: auto;
    margin-right: auto;
    column-count: 1;
    column-gap: 2em;
    margin-bottom: 2em;
}

/* Erste Zeile in kartoffelkoenig nicht versetzt durch margin */
.kartoffelkoenig p:first-child {
    margin-top: 0;
}

/* Spaltenlayout für größere Bildschirme */
@media screen and (min-width: 900px) {
    .kartoffelkoenig {
        max-width: 75em;   /* ca. 960px */
        column-count: 2;
        column-gap: 3em;
    }
}

/* ===============================
   Streaming Links (.streaming-links)
   =============================== */
.streaming-links {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f7f7f7;
    border-radius: 1rem;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.streaming-links h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.streaming-links ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.streaming-links li {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: background 0.2s;
}

.streaming-links li:hover {
    background: #eee;
}

.streaming-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    display: inline-block;
}


/* ===============================
   Song-Metadaten (.song-metadata)
   =============================== */
.song-metadata h2 {
    margin-top: 1em;
}
.song-metadata ul {
    list-style: none;
    padding-left: 0;
}
.song-metadata li {
    margin-bottom: 0.5em;
}

/* ===============================
   Credits (.credits)
   =============================== */
.credits h2 {
    margin-top: 0;
}
.credits ul {
    list-style: none;
    padding-left: 0;
}
.credits li {
    margin-bottom: 0.5em;
}

/* ===============================
   YouTube-Video Platzhalter
   =============================== */
.youtube-wrapper {
    position: relative;
    cursor: pointer;
    max-width: 100%;
    display: block;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    background: #000;
    margin-bottom: 1em; /* Abstand unter jedem Video */
}

.youtube-wrapper img.youtube-thumb {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt Container, schneidet ggf. zu */
    cursor: pointer;
}

.youtube-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    text-shadow: 0 0 10px black;
    pointer-events: none;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}


.youtube-thumb {
    width: 100%;
    height: auto;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    text-shadow: 0 0 10px black;
    pointer-events: none;
}
.consent-hint {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin-top: 0.3em;
}

/* ===============================
   Jukebox
   =============================== */

   /* Die Share Buttons */

   .share-buttons {
  margin-top: 2em;
  padding: 1em;
  border-top: 1px solid #ccc;
  font-size: 1rem;
}

.share-buttons p {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.share-btn {
  display: inline-block;
  margin: 0.25em 0.5em 0.25em 0;
  padding: 0.4em 0.8em;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
}

.share-btn.copy     { background-color: #666; }
.share-btn.whatsapp { background-color: #25D366; }
.share-btn.facebook { background-color: #3b5998; }
.share-btn.twitter  { background-color: #1da1f2; }
.share-btn.email    { background-color: #555; }

.share-btn:hover {
  opacity: 0.85;
}
.share-hinweis {
  font-size: 0.85em;
  color: #666;
  margin-top: 0.5em;
  display: flex;
  align-items: start;
  gap: 0.4em;
}

.share-hinweis .info-icon {
  font-style: normal;
  font-size: 1em;
  line-height: 1;
}

