/* === Grundlayout === */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  --fa-primary-color: #ff0080;
  --fa-secondary-color: #00e0ff;
}
/* === testfahrt is new === */
.slide-item {
  position: relative;
  display: inline-block;
}

.badge-new {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #0d0d0f;
  background: linear-gradient(135deg, #00ffd5, #00aaff);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,255,213,.6);
  z-index: 5;
  pointer-events: none;
}


/* === Header === */
header {
  width: 100%;
  background: #1a1a1a;
  padding: 15px 30px;
  display: flex;
  justify-content: center;
  gap: 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

header nav {
  display: flex;
  gap: 40px;
}

header nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

header nav a:hover {
  color: #fff;
}

/* === Hauptbereich === */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 35px;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-10px);
  animation: fadeIn 1s ease forwards;
}

/* === Suchfeld mit Glow === */
.search-wrapper {
  position: relative;
  z-index: 200;
  display: inline-block;
  border-radius: 45px;
  padding: 4px;
  background: linear-gradient(270deg, #ff0080, #7928ca, #00e0ff, #00ff80);
  background-size: 600% 600%;
  animation: gradientAnim 8s ease infinite;
  box-shadow: 
    0 0 20px rgba(255,0,128,0.6),
    0 0 40px rgba(121,40,202,0.5),
    0 0 60px rgba(0,224,255,0.4);
}

.search-box {
  display: flex;
  align-items: center;
  width: 600px;
  height: 60px;
  background: #222;
  border-radius: 40px;
  padding: 0 20px;
}

.search-results {
  position: absolute;
  width: 600px;
  max-height: 350px;
  display: none;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 1.3rem;
  padding: 0 10px 0 5px;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-box button {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #aaa;
  font-size: 1.5rem;
  margin-right: 5px;
  transition: background 0.3s, color 0.3s;
}

.search-box button:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* === Sub-Text unter Suche === */
.sub-text {
  margin-top: 25px;
  font-size: 1.2rem;
  color: #ccc;
  opacity: 0;
  transition: opacity 1s ease;

  /* Neu */
  min-height: 60px;   /* Platz reservieren */
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-text.fade-in {
  opacity: 1;
}

/* === Live Search Dropdown === */
.search-results {
  position: absolute;
  width: 600px;
  max-height: 350px;
  overflow-y: auto;
  background: #1a1a1a;
  border-radius: 12px;
  margin-top: 10px;
  padding: 10px 0;
  display: none;
  z-index: 50;
  box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.search-results .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background .2s;
}

.search-results .item:hover {
  background: rgba(255,255,255,0.07);
}

.search-results img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.search-results .title {
  font-size: 1rem;
  font-weight: 600;
}

.search-results .artist {
  color: #aaa;
  font-size: 0.85rem;
}

/* === Info-Boxen === */
.info-boxes {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-box {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: #fff;
}

.info-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff0080;
  --fa-primary-color: #ff0080;
  --fa-secondary-color: #00e0ff;
}

.info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,0,128,0.6);
}

/* === Banner === */
.banners {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.banners img {
  width: 468px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.6);
  transition: transform 0.3s, box-shadow 0.3s;
}

.banners img:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,0,128,0.6);
}

/* === Footer === */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #1a1a1a;
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.6);
  z-index: 100;
}

/* === Animationen === */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientAnim {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === Auto Slider === */
.slider {
  width: 1600px;
  margin: 40px auto 0 auto;
  overflow: hidden;
  padding: 10px 0;
  margin-top: 5px;
}

.slider-track {
  display: flex;
  gap: 20px;
  animation: scroll 50s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,0,0,0.6);
  transition: transform .4s;
}

.slider img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255,0,128,0.6);
}

/* Animation von rechts nach links */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Responsive Mobile Fixes === */
@media (max-width: 768px) {

  /* Überschriften */
  h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  /* Suche */
  .search-box {
    width: 90%;
    height: 55px;
  }

  .search-wrapper {
    width: 100%;
  }

  /* Sub-Text */
  .sub-text {
    font-size: 1rem;
    min-height: 50px;
  }

  /* 🎚 Slider */
  .slider {
    width: 100%;
    margin-top: 25px;
    padding: 10px 0;
  }

  .slider img {
    width: 160px;
    height: 160px;
  }

  .slider-track {
    gap: 15px;
  }

  /*  Info-Boxen */
  .info-boxes {
    flex-direction: column;
    width: 90%;
    margin-top: 60px;
  }

  .info-box {
    width: 100%;
  }

  /* Banner */
  .banners img {
    width: 90%;
    height: auto;
  }

  /* MOBILE NAVIGATION – WISCHBAR */
  header {
    justify-content: flex-start;
  }

  header nav {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 15px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  header nav::-webkit-scrollbar {
    display: none;
  }

  /* Footer */
  .footer {
    font-size: 0.8rem;
    padding: 10px;
  }
}

header nav a.active {
  color: #fff;
  border-bottom: 2px solid #ff0080;
  padding-bottom: 4px;
}


/* sampler */

.release-table {
  margin-top: 100px;
  width: 100%;
  max-width: none;
  margin-left: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
}

th, td {
  padding: 12px 15px;
  text-align: left;
}

th {
  background: #111;
}

.cover {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 6px;
}

.status-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-block;
}

.release-view {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
}

.cover-big {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.release-view a:hover {
    color:#ff0080;
    text-decoration: underline;
}

/* Das könnte dir auch gefallen */
.recommend-grid {
  margin: 20px auto 110px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  width: 100%;
}

.recommend-card {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 15px;
  text-decoration: none;
  color: #fff;

  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.recommend-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,224,255,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}

.recommend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255,0,128,0.6);
}

.recommend-card img {
  width: 97%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.recommend-info span {
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .recommend-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recommend-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.tracklist {
  text-align: left;

}
.tracklist {
  overflow-x: auto;
  box-shadow:
  inset 0 0 0 1px #222,
  0 0 25px rgba(255, 0, 128, 0.15);
  background: #0b0b0b; 
  color: #eaeaea;
  padding: 18px 20px;
  border-radius: 14px;
  margin-top: 10px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;        
}
@media (max-width: 768px) {
  .tracklist {
    font-size: 0.9rem;
    padding: 15px;
  }
}
.tracklist .year {
  color: #de0462; /* Tracklistfarbe.  */
  font-weight: 600;
  margin-right: 6px;
  text-shadow:
    0 0 4px rgba(255, 0, 128, 0.6),
    0 0 10px rgba(255, 0, 128, 0.3);
}
/* === Blog / Formulare === */
.add-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.add-form label {
  font-weight: 600;
  color: #ddd;
  margin-top: 10px;
}

.add-form input[type="text"],
.add-form input[type="datetime-local"],
.add-form textarea {
  width: 100%;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 12px 14px;
  color: #eee;
  font-size: 0.95rem;
}

.add-form textarea {
  resize: vertical;
  min-height: 160px;
}

.add-form button {
  margin-top: 15px;
  align-self: flex-start;
}
/* Hover */
.add-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 12px 35px rgba(0,224,255,0.45);
}

/* === Primary Action Button (Blog / Admin) === */
.add-form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #ff0080, #00e0ff);
  color: #fff;

  border: none;
  border-radius: 14px;
  padding: 12px 22px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  cursor: pointer;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 8px 25px rgba(255,0,128,0.35);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.add-form button i {
  font-size: 1.05rem;
}

/* Hover */
.add-form button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 12px 35px rgba(0,224,255,0.45);
}

/* Active (Click) */
.add-form button:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 6px 18px rgba(0,0,0,0.6);
}
