/* Grundlayout */
html, body {
  height: 100%;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  background-color: #000000;   /* tiefschwarz */
  margin: 0;
}

/* Hintergrundbild */
.background {
  position: fixed;
  inset: 0;
  background: url('../assets/images/bg.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(8,3,3,0.85);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(222,212,122,0.2);
}
.header-inner {
  max-width: 94rem;
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-link {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}
.brand-link:hover { color: #DED47A; }
.nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 0.5rem;
}
.nav a:hover { color: #DED47A; }

/* Sprachumschalter */
.lang-switch button {
  background: transparent;
  border: 1px solid #CC2525;
  color: #FFFFFF;
  font-size: 0.9rem;
  padding: 0.25rem 0.6rem;
  margin-left: 0.5rem;
  cursor: pointer;
}
.lang-switch button:hover { background: rgba(255,255,255,0.08); }

/* Inhalt */
.site-main .inner {
  max-width: 94rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}
.section-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Kacheln */
.card {
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Begrüßungsbox */
#greeting.card {
  max-width: 50%;
  margin: 4rem auto;
  text-align: center;
}
#greeting .section-title { text-align: center; }
#greeting p { margin: 0.5rem 0; }

/* Blog-Sektor */
#blog.card {
  width: 33.333vw;
  max-width: 33.333vw;
  margin: 2rem auto;
  text-align: left;
  padding: 1rem;
}











/* Formulare in Blog und Kontakt: volle Breite */
#blog.card input,
#blog.card textarea,
#blog.card select,
#blog.card .btn,
#contact.card input,
#contact.card textarea,
#contact.card select,
#contact.card .btn {
  width: 100%;          /* füllt die Box komplett */
  box-sizing: border-box;
  display: block;
}


/* Kontakt-Sektor */
#contact.card {
  width: 33.333vw;
  max-width: 33.333vw;
  margin: 2rem auto;
  text-align: left;
  padding: 1rem;
}




/* Abstand zwischen Formularfeldern */
#blog.card .field,
#contact.card .field {
  margin-bottom: 1rem;   /* Abstand nach unten */
}

#blog.card label,
#contact.card label {
  display: block;
  margin-bottom: 0.4rem; /* kleiner Abstand zwischen Label und Feld */
}





/* Posts */
.posts .post {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.posts .meta { font-size: 0.8rem; color: #CCCCCC; margin-bottom: 0.25rem; }
.posts .body { font-size: 0.9rem; color: #FFFFFF; }

/* Farbige Status-Zeilen */
tr.status-visible { background-color: rgba(0,128,0,0.25); }
tr.status-hidden  { background-color: rgba(255,0,0,0.25); }
tr.status-deleted { background-color: rgba(0,0,255,0.25); }

/* Dashboard */
.dashboard {
  display: flex;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
}
.column {
  flex: 1.9;
  background: rgba(30,30,30,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  overflow-y: auto;
  max-height: 80vh;
}

/* Musik-Plattformen */
.music-platforms {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
  position: relative;
  bottom: 50px;
}

/* Footer */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8,3,3,0.85);
  border-top: 1px solid rgba(222,212,122,0.2);
  padding: 0.5rem 0;
  z-index: 1000;
}
.site-footer small {
  font-size: 0.7rem;
  color: #FFFFFF;
}

/* Audio Player Styling */
.site-footer audio {
  background-color: #000000;
  border: 1px solid #DED47A;
  border-radius: 6px;
  width: 150px;
  height: 25px;
  padding: 2px;
}
.site-footer audio::-webkit-media-controls-panel {
  background-color: #000000;
  color: #DED47A;
}
.site-footer audio::-webkit-media-controls-play-button,
.site-footer audio::-webkit-media-controls-mute-button,
.site-footer audio::-webkit-media-controls-volume-slider {
  filter: hue-rotate(45deg) brightness(1.2);
}




.site-footer audio {
  background-color: #000000;   /* schwarzer Hintergrund */
  border: 1px solid #DED47A;   /* goldene Umrandung */
  border-radius: 6px;
  width: 150px;
  height: 25px;
  padding: 2px;
}

/* Panel einfärben */
.site-footer audio::-webkit-media-controls-panel {
  background-color: #000000;
}

.site-footer audio::-webkit-media-controls-play-button,
.site-footer audio::-webkit-media-controls-mute-button,
.site-footer audio::-webkit-media-controls-volume-slider {
  filter: invert(80%) sepia(100%) saturate(300%) hue-rotate(10deg); /* goldener Effekt */
}




.country-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.country-table th, .country-table td {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 0.6rem;
  text-align: left;
  color: #FFF;
}
.country-table th {
  background: rgba(222,212,122,0.15);
  color: #DED47A;
}
.country-table tr:nth-child(even) {
  background: rgba(255,255,255,0.05);
}





.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(8,3,3,0.85);
  border-top: 1px solid rgba(222,212,122,0.2);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.footer-inner {
  display: flex;
  justify-content: space-between; /* links + rechts */
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-left small {
  font-size: 0.7rem;
  color: #FFFFFF;
}

.footer-left audio {
  background-color: #000000;
  border: 1px solid #DED47A;
  border-radius: 6px;
  width: 150px;
  height: 25px;
  padding: 2px;
}

.footer-right a img {
  height: 30px; /* kompakte Logos */
  margin-left: 1rem;
  filter: brightness(1.2);
  transition: transform 0.2s ease;
}

.footer-right a img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px #DED47A);
}




/* Admin Texteingabe */
.admin-texts {
  max-width: 50vw;          /* mittlere Breite */
  margin: 2rem auto;        /* mittig auf der Seite */
  padding: 2rem;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.text-form .field {
  margin-bottom: 1rem;
}

.text-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 500;
  color: #DED47A; /* goldene Labels */
}

.text-form input,
.text-form textarea,
.text-form select {
  width: 100%;
  box-sizing: border-box;
  background-color: #F8F8F8; /* gebrochenes Weiß */
  color: #000;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  padding: 0.6rem;
}

.text-form .btn {
  display: block;
  margin: 1rem auto 0;
  padding: 0.6rem 1.2rem;
  background: #DED47A;
  color: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s ease;
}

.text-form .btn:hover {
  background: #FFF176; /* helleres Gold beim Hover */
}


.lang-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}

.lang-columns div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  padding: 0.8rem;
  color: #FFF;
}

.single-box, .release-box {
  margin: 2rem auto;
  padding: 1.5rem;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
}

.song-box {
  margin-top: 1rem;
}


