/* ============================================================
   HIROSHIMABONUS – Basis / Hero / Header / Footer
   ============================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  /* Skaliert mit der Fensterbreite, aber gedeckelt – und nie höher als 80%
     der Viewport-Höhe, damit auf dem Desktop schon die Angebote durchschimmern
     (besser für Conversion, wie auf der alten Seite). */
  height: clamp(560px, 56vw, 980px);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px 80px;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  background-image: url('images/hero-bg.webp');
  background-size: cover;
  /* Oberen Bildrand verankern (wie Tilda): Kronleuchter/Headroom bleiben
     sichtbar, abgeschnitten wird nur unten – dort ist eh der Schatten. */
  background-position: center top;
  background-repeat: no-repeat;
}

/* Abdunkelung für lesbaren Text */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Sanfte Abdunkelung oben, kräftiger schwarzer Verlauf zum unteren Rand
     (deutlich mehr Schatten wie auf der alten Seite). */
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.38) 28%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
}

.hero-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-logo img {
  width: clamp(170px, 18.5vw, 300px);
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 76vw;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(26px, 5vw, 96px);
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  /* Bessere Lesbarkeit über dem bunten Bild (v.a. mobil) */
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  margin-top: clamp(16px, 2vw, 40px);
  color: #ffffff;
  font-size: clamp(15px, 1.5vw, 28px);
  line-height: 1.55;
  opacity: 0.9;
  max-width: clamp(300px, 30vw, 520px);
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.hero-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 15px;
  opacity: 0.6;
  animation: hero-bounce 1.6s ease-in-out infinite;
}

@keyframes hero-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 14px); }
}

/* ============================================================
   Header "Bonusvergleich"
   ============================================================ */
.bonus-section {
  padding: 60px 0 0;
}

.bonus-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.bonus-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
}

.bonus-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00000099;
  font-size: 16px;
}

.bonus-info img {
  width: 20px;
  height: 20px;
}

/* Abstand zwischen den Casino-Karten */
.bonus_box {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: 80px;
  padding: 90px 20px 120px;
  background-color: #111111;
}

.footer-box {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 24px;
}

.footer-text {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-text a {
  color: #ffffff;
  text-decoration: underline;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640px) {
  .hero {
    padding: 80px 20px 70px;
    /* Querformat-Bild im Hochkant-Frame: Ausschnitt leicht nach links holen,
       damit H.V.J weitgehend sichtbar ist (das H darf am Rand sitzen). */
    background-position: 40% top;
  }

  .hero-content {
    max-width: 88vw;
  }

  .bonus-section {
    padding-top: 40px;
  }

  .bonus-header h2 {
    font-size: 26px;
  }

  .bonus-info {
    font-size: 14px;
  }
}
