/* === Tage-Leiste: Immer horizontal erzwingen === */
#days-links,
#days-links.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap !important;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
#days-links .nav-item {
  flex: 0 0 auto !important;
  margin-right: 1rem;
}
#days-links .nav-link {
  display: inline-block !important;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  white-space: nowrap;
  color: #333;
}
#days-links .nav-link.active,
#days-links .nav-link:hover {
  color: #c21b15;
}

/* Offcanvas Links (falls verwendet) */
.offcanvas-body a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
}
.offcanvas-body a.active,
.offcanvas-body a:hover {
  color: #c21b15;
}

/* === Globale Styles === */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #fdfdfd;
  color: #333;
}
h2 {
  font-family: 'Nunito', sans-serif;
  color: #c21b15;
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
}
.container {
  max-width: 960px;
}

/* === DJ-Karten === */
.dj-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.dj-card .text-start {
  flex: 1;
}
.dj-card img {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* === Responsive-Anpassungen === */
@media (max-width: 576px) {
  /* Tage-Leiste: kleinere Abstände & Schrift */
  #days-links .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
  #days-links .nav-item {
    margin-right: 0.5rem;
  }

  /* DJ-Karten: Bild verkleinern, bleibt rechts */
  .dj-card img {
    width: 100px !important;
    height: 100px !important;
  }
}

/* Logo-Container: 3:2 Verhältnis, Bild bottom-aligned */
.logo-container {
  position: relative;
  width: 100%;
  /* 3:2 -> Höhe = 66.66% der Breite */
  padding-top: 66.66%;
  overflow: hidden;
}
.logo-container img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}
