/* =========================
   FOTOBOX HIGHLIGHT (Startseite)
========================= */
.fotobox-highlight {
  background: white;
  max-width: 1000px;
  margin: 80px auto; /* Gibt der Sektion oben und unten gut Luft */
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: stretch; /* Zieht Bild und Text auf die gleiche Höhe */
  overflow: hidden; /* Wichtig: Schneidet das Bild an den runden Ecken sauber ab */
  border: 2px solid chocolate; /* Schicker Rahmen passend zu deinem Stil */
}

.fotobox-highlight:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(210, 105, 30, 0.15); /* Leichter chocolate-farbener Schatten */
}

.fotobox-highlight-content {
  flex: 1;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.fotobox-highlight .cta-button:hover {
  background: chocolate;
  color: white;
}

.badge-neu {
  display: inline-block;
  background: #ff3333;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: "ArchivoBlack-Regular", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  animation: pulseDeal 2s infinite; 
}

.highlight-titel {
  font-family: 'ArchivoBlack-Regular', sans-serif;
  font-size: 2.2rem;
  color: #111;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2;
}

.highlight-text {
  font-family: "DroidSans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 32px;
}

.fotobox-highlight-visual {
  flex: 1;
  min-height: 100%;
}

.highlight-bild {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Sorgt dafür, dass das Bild die Box perfekt ausfüllt ohne sich zu verzerren */
  display: block;
}

.cta-button{border: 1px solid chocolate;}

/* =========================
   MOBILE ANSICHT FÜR HIGHLIGHT
========================= */
@media (max-width: 768px) {
  .fotobox-highlight {
    flex-direction: column-reverse; /* Packt auf dem Handy das Bild nach oben und Text nach unten */
    margin: 40px 24px;
  }
  
  .fotobox-highlight-content {
    padding: 32px 24px;
    align-items: center; /* Zentriert alles auf dem Handy */
    text-align: center;
  }
  
  .fotobox-highlight-visual {
    width: 100%;
    height: 250px;
    min-height: 250px;
  }
}