/* ========================================
   MAGAZIN.CSS – mit korrekt referenziertem Hintergrundbild
   ======================================== */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  color: #fff;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.kapitel-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1em;
  position: relative;
  z-index: 5;
}

footer {
  margin-top: auto;
  background: rgba(10, 10, 12, 0.8);
  color: #ccc;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  box-shadow: 0 -3px 12px #0008;
  z-index: 10;
}

.main-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  margin-top: auto;
}

.main-btn {
  background: #440000;
  border: none;
  color: #fff;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 8px #000a;
  transition: background 0.3s;
}

.main-btn:hover {
  background: #660000;
}

/* ============================================
   HAUS-HINTERGRUND (jetzt mit korrekt relativem Pfad!)
   ============================================ */
.haus-hintergrund {
  background-image: url('../bilder/House_of_horrer_BG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  opacity: 0.6;
  transition: transform 6s ease, opacity 4s ease;
}

.haus-reset {
  transform: scale(1);
}

.haus-zoom {
  transform: scale(1.08);
  opacity: 0.75;
}
