/* magazin.css - komplette Datei mit schön gestylten Pfeilen und allen Komponenten */

/* Grundlegendes Body-Styles */
body {
  background: linear-gradient(112deg, #232342 70%, #4cacc7 100%);
  min-height: 100vh;
  margin: 0;
  color: #ffe48a;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2em 1.8em;
  background: #181820;
  color: #ffd700;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 3px 24px #0008;
}
.logo-mr {
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.3em;
  background: linear-gradient(90deg, #ffd700 16%, #b2eaff 99%);
  color: transparent;
  -webkit-background-clip: text;
  cursor: pointer;
  letter-spacing: 2px;
  text-shadow: 0 2px 16px #0009;
  user-select: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1em;
}
.musik-btn {
  background: #23252a;
  border: 2px solid #ffd700;
  color: #ffd700;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s, color 0.14s;
}
.musik-btn.active,
.musik-btn:hover {
  background: #ffd700;
  color: #23252a;
}

/* Hauptbereich */
.maincover-area {
  max-width: 820px;
  margin: 4em auto 2em;
  padding: 2em 3vw;
  background: #181820e6;
  border-radius: 19px;
  box-shadow: 0 7px 36px #000b;
  text-align: center;
}
.maincover-title {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 2.7em;
  color: #ffd700;
  letter-spacing: 0.09em;
  margin-bottom: 0.18em;
  font-weight: 900;
  text-shadow: 0 2px 18px #0007, 0 0 10px #fff4;
}
.maincover-sub {
  font-size: 1.25em;
  color: #fffbe2;
  margin-bottom: 1.6em;
  font-weight: 500;
  text-shadow: 0 1px 7px #0006;
}
.maincover-image {
  width: 510px;
  max-width: 94vw;
  border-radius: 15px;
  box-shadow: 0 7px 44px #000a;
  margin-bottom: 2.1em;
  border: 2px solid #ffd7002b;
  background: #222a;
}
.maincover-desc {
  font-size: 1.15em;
  color: #ffd700c8;
  margin: 1.1em 0 2em;
}
.deckblatt-btns {
  margin: 2em 0 1.1em;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}
.deckblatt-btn {
  background: linear-gradient(92deg, #181820 70%, #ffd700 100%);
  color: #ffd700;
  border: 2px solid #ffd70066;
  border-radius: 7px;
  font-size: 1.13em;
  padding: 0.72em 2.1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 2px 20px #0005;
  cursor: pointer;
  letter-spacing: 1.3px;
  transition: background 0.18s, color 0.18s;
}
.deckblatt-btn:hover {
  background: linear-gradient(91deg, #ffd700 89%, #181820 99%);
  color: #232342;
  border: 2px solid #fff5;
}

/* Ausgaben-Navigation mit schönen Pfeilen */
.magazin-display-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
}
.nav-arrow {
  width: 0;
  height: 0;
  cursor: pointer;
  transition: transform 0.2s;
}
.nav-arrow:hover { transform: scale(1.1); }
.nav-arrow.fancy-left {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 28px solid #ffd700;
}
.nav-arrow.fancy-right {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 28px solid #ffd700;
}
.ausgabe-cover-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ausgabe-preview-img {
  width: 40%;
  max-width: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 5px 20px #0007;
  cursor: pointer;
  transition: transform 0.13s;
}
.ausgabe-preview-img:hover { transform: scale(1.05); }
.ausgabe-preview-title {
  margin-top: 0.6em;
  color: #ffd700;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
}

footer {
  background: #181820;
  color: #ffd700;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 1.1em 0;
  font-size: 1.09em;
  border-radius: 13px 13px 0 0;
  margin-top: 2.6em;
  box-shadow: 0 -2px 20px #0007;
}
.footer-links {
  margin-top: 0.6em;
}
.footer-links a {
  color: #ffd700;
  text-decoration: none;
  margin: 0 1.1em;
  transition: color 0.16s;
}
.footer-links a:hover { color: #fff563; }

@media (max-width: 900px) {
  .maincover-area { max-width: 98vw; }
  .maincover-title { font-size: 1.25em; }
  .maincover-image { width: 99vw; }
  header { padding: 1em 1.1em; }
  .ausgabe-preview-img { width: 40vw; }
}