/* ====== Font ====== */
@font-face {
  font-family: "ABCSocialEdu";
  src: url("./fonts/ABCSocialEdu-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ====== Reset ====== */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
}

/* ====== Seite ====== */
body.page-band {
  background: #000;
  color: #fff;
  font-family: "ABCSocialEdu", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  cursor: none;
  overflow: hidden;
}

/* ====== Header (IDENTISCH ZU MERCH) ====== */
.header--top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  background: transparent;
  padding: 20px 0;
}

.menue-flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: clamp(8px, 2vw, 30px);
  padding: 0 12px;
  max-width: 100vw;
  overflow: hidden;
}

.menue-flex-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: clamp(0.72rem, 1.1vw, 1.2rem);
  line-height: 1;
  transition: color .25s ease, transform .25s ease;
}

.menue-flex-container a:hover,
.menue-flex-container a:focus-visible {
  color: #e1ff00;
  transform: scale(1.08);
}

.nav-active { color: #e1ff00; }

/* ===== Custom Cursor ===== */
.custom-cursor {
  width: 25px;
  height: 25px;
  background: #e1ff00;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Cursor nur Desktop */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor { display: none; }
  body { cursor: auto; }
}

/* ====== Content ====== */
.band-center {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 40px;
  position: relative;
  z-index: 2;
}

.band-content {
  max-width: 900px;
  text-align: center;
}

.band-text {
  letter-spacing: 0.08em;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* ===== Presse ===== */
.presse-links {
  margin-top: 10px;
  font-size: 0.85rem;
}

.presse-links h2 {
  margin: 0 0 8px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.presse-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.presse-links a {
  color: #fff;
  text-decoration: none;
}

.presse-links a:hover {
  color: #e1ff00;
}

/* ===== Medienberichte ===== */
.media-coverage {
  margin-top: 20px; /* weniger Abstand */
  font-size: 0.85rem;
  text-align: center;
}

.media-coverage h2 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.media-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  gap: 6px;
  max-width: 420px;
}

.media-item a {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.06em;
}

.media-item a:hover {
  color: #e1ff00;
}

.media-date { opacity: 0.9; }

/* ===== Diary ===== */
.diary-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.diary-photo {
  position: absolute;
  width: 90px;
  height: 90px;
  object-fit: cover;
  pointer-events: auto;
  cursor: grab;
  box-shadow: 0 0 12px rgba(0,0,0,.75);
  animation: diaryDrift 14s ease-in-out infinite alternate;
}

@keyframes diaryDrift {
  from { transform: translate(0,0); }
  to { transform: translate(6px,-8px); }
}

/* ===== Footer ===== */
.footer-link {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.08em;
  font-weight: 700;
  z-index: 20;
}

.footer-link:hover {
  color: #e1ff00;
  transform: translateX(-50%) scale(1.08);
}

/* ===== Credits ===== */
.photo-credits {
  position: fixed;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  opacity: 0.7;
  z-index: 20;
  text-align: center;
}

.photo-credits a {
  color: #fff;
  text-decoration: none;
}

.photo-credits a:hover {
  color: #e1ff00;
}

/* ===== Scroll Fade ===== */
.scroll-fade {
  position: fixed;
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 15;
}

.scroll-fade-top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,0));
}

.scroll-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.20), rgba(0,0,0,0));
}

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

  body.page-band {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .band-center {
    min-height: auto;
    display: block;
    padding: 120px 20px 110px;
  }

  .band-text {
    font-size: 1rem;
    line-height: 1.35;
  }

  /* Diary komplett AUS */
  .diary-layer {
    display: none;
  }

  .media-item a {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .photo-credits {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ===== Disable custom cursor on touch devices ===== */
@media (hover: none) and (pointer: coarse) {

  .custom-cursor {
    display: none !important;
  }

  body {
    cursor: auto !important;
  }
}