/* ==========================================
   GLOBALES RESETS & BASICS
   ========================================== */
* {
  box-sizing: border-box;
}

:root {
  --text-muted: #64748b;
  --accent: #38bdf8;
  --bg-dark: #1e293b;
  --primary-btn: #0284c7;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: #f8fafc;
  color: #334155;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* Überschrift & Unterzeile */
h1 {
  margin: 0;
  font-size: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.name {
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 1px;
}

.sub {
  font-size: 1.3rem;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 2px;
}

.trenner {
  color: var(--accent);
  font-weight: 300;
}

/* Navigation */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* Gemeinsame Basis für BEIDE Logos */
.logo-links,
.mein-logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: auto;
}

.logo-links {
  left: 2rem;
}

.mein-logo {
  right: 1rem;
  width: 190px;
}

/* ==========================================
   HAUPTBEREICH & INDEX (STARTSEITE)
   ========================================== */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

#index h2,
#index p {
  text-align: center;
  line-height: 1.6;
}

h2 {
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.highlight-name {
  font-weight: bold;
  color: var(--bg-dark);
}

.hervorhebung {
  font-style: italic;
}

.intro-name,
.intro-text {
  text-align: center;
  line-height: 1.6;
}

.intro-name {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.intro-text {
  margin-bottom: 1.5rem;
}

.schluss-satz {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--primary-btn);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.schluss-satz:hover {
  background-color: #0369a1;
}

/* ==========================================
   GALERIE & LIGHTBOX
   ========================================== */
.Überschrift-galerie {
  text-align: center;
}

.galerie-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #475569;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.galerie-item {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.galerie-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.galerie-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bild-info {
  padding: 1rem;
  text-align: center;
}

.bild-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: var(--bg-dark);
}

.bild-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-close:hover {
  color: var(--accent);
}

/* ==========================================
   MUSIK STYLES
   ========================================== */
.musik-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #475569;
}

.musik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.musik-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ueberschrift-audio {
  text-align: center;
}

.musik-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.track-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.track-head h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--bg-dark);
}

.genre-badge {
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.track-beschreibung {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.musik-item audio {
  width: 100%;
  border-radius: 4px;
  outline: none;
}

.youtube-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.youtube-btn:hover {
  background-color: #cc003d;
  transform: translateY(-2px);
}

.bo-nobody {
  color: #424141;
  font-size: 2em;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow:
    0 0 8px rgba(255, 254, 254, 0.4),
    0 0 15px rgba(255, 251, 251, 0.3);
}

/* ==========================================
   SCHRIFTEN & TEXTE (TEXTE.HTML)
   ========================================== */
.Überschrift-texte {
  text-align: center;
}

.texte-intro {
  text-align: center;
  margin-bottom: 2rem;
  color: #475569;
}

.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  border-bottom: 2px solid #cbd5e1;
  padding-bottom: 0.5rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: var(--text-muted);
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  background-color: #f1f5f9;
  color: var(--bg-dark);
}

.tab-btn.active {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
  font-weight: bold;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.text-beitrag {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #94a3b8;
  transition: border-color 0.3s ease;
}

.text-beitrag:hover {
  border-left-color: var(--primary-btn);
}

.beitrag-header {
  margin-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 0.8rem;
}

.beitrag-kategorie {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.beitrag-header h3 {
  margin: 0.3rem 0;
  font-size: 1.35rem;
  color: var(--bg-dark);
}

.beitrag-inhalt {
  line-height: 1.8;
  color: #334155;
  font-size: 1.02rem;
}

.beitrag-inhalt h4 {
  color: var(--bg-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.beitrag-inhalt p {
  margin-bottom: 1rem;
}

.beitrag-inhalt ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.beitrag-inhalt li {
  margin-bottom: 0.4rem;
}

.beitrag-inhalt.ausklappbar {
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  position: relative;
}

.beitrag-inhalt.ausklappbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(transparent, #ffffff);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.beitrag-inhalt.ausklappbar.offen {
  max-height: 3000px !important;
}

.beitrag-inhalt.ausklappbar.offen::after {
  opacity: 0;
}

.read-more-btn {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

/* ==========================================
   ÜBER MICH (ABOUT.HTML) STYLES
   ========================================== */
#about {
  max-width: 800px;
  margin: 0 auto;
}

#about h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.intro-bereich {
  text-align: center;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.about-card {
  background-color: #ffffff;
  padding: 1.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-btn);
}

.about-card h3 {
  margin-top: 0;
  color: var(--bg-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.about-card p {
  color: #334155;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.about-card ul {
  padding-left: 1.2rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.about-card li {
  margin-bottom: 0.5rem;
}

.about-zitat {
  background-color: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.about-zitat blockquote {
  margin: 0;
  font-style: italic;
  color: #475569;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* ==========================================
   FOOTER (RECHTLICHES)
   ========================================== */
footer {
  width: 100%;
  max-width: 800px;
  margin: 40px auto 20px auto;
  padding-top: 20px;
  border-top: 1px solid #cbd5e1;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}

footer p {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-btn);
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILGERÄTE & TABLETS)
   ========================================== */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
  }

  .logo-links,
  .mein-logo {
    position: static;
    transform: none;
    width: 80px;
    height: auto;
    margin: 0.25rem auto;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  main {
    margin: 1rem auto;
    padding: 0 1rem;
  }
}
.counter {
  font-size: 0.9rem;
  color: #888888;
  text-align: center;
  margin-top: 20px;
}

address {
  font-style: normal; /* Verhindert die automatische Kursivschrift */
}
