@font-face {
  font-family: 'Funnel';
  src: url('/assets/font/funnel.woff2') format('woff2');
}

/* Reset & Basislayout */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Funnel', sans-serif;
  color: white;
}

/* Hintergrundbild mit Blur & Abdunkelung */
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/img/background.png') no-repeat center center fixed;
  background-size: cover;
  z-index: -2;
}

.background::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  backdrop-filter: blur(6px) brightness(0.6);
  -webkit-backdrop-filter: blur(6px) brightness(0.6);
  z-index: -1;
}

/* Struktur über dem Hintergrund */
.content-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Header mit Social Icons */
header {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 2rem;
}

header .logo {
  max-width: 700px;
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

.social-icons {
  margin-top: 0.5rem;
}

.social-icons a {
  margin: 0 1rem;
  color: white;
  font-size: 2.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #6f79cc; /* z. B. Spotify-Grün als Hover-Effekt */
}

.social-icons .tidal-icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
}

.social-icons .tidal-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.social-icons .tidal-hover {
  opacity: 0;
  z-index: 1;
}

.social-icons .tidal-icon:hover .tidal-hover {
  opacity: 1;
}

.social-icons .tidal-icon:hover .tidal-default {
  opacity: 0;
}


/* Navigation */
nav {
  text-align: center;
  margin-bottom: 2rem;
}

nav a {
  margin: 0 1rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

section.intro {
  padding: 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

/* Track-Liste auf Startseite */
.track-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.track {
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: white;
}

.track img {
  width: 250px;
  height: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* Inhaltsbereich */
#content {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
}

/* Streaming-Plattform-Links */
.platform-link {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: #ffffff;
  padding: 0.75rem 1rem;
  margin: 0.5rem auto;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  gap: 1rem;
  text-decoration: none;
  color: white;
}

.platform-link img {
  height: 36px;
  max-height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  max-width: 120px;
}

.platform-link span {
  margin-left: auto;
  align-self: center;
  font-size: 0.9rem;
  background: #222d7d;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Standard-Absätze */
p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 1rem 0;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Responsive Anpassungen für Mobilgeräte */
@media (max-width: 600px) {
  header {
    padding: 1.5rem 1rem 0rem;
  }

  .social-icons {
    margin-bottom: 0.5rem;
  }

  .social-icons a {
    font-size: 1.5rem;
    margin: 0 0.4rem;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem 0.5rem;
    font-size: 1.1rem;
  }

  section.intro {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .track-list {
    flex-direction: column;
    align-items: center;
  }

  .track img {
    width: 200px;
    height: 200px;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
  }
  p {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 2.2rem;
  }
}