@font-face {
  font-family: "SofiaSansRegular";
  src: url('../fonts/SofiaSans-Regular.woff2') format('woff2');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SofiaSansLight";
  src: url("../fonts/SofiaSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SofiaSansBold";
  src: url('../fonts/SofiaSans-Bold.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MontserratRegular";
  src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-style: normal;
  font-display: swap;
}
.full-hero {
  width: 100%;
  height: 405px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #f4f1ee;
}
.hero-container {
  width: 100%;
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-content {
  max-width: 546px;
  /* Verhindert, dass Text ins Bildmotiv läuft */
  background: rgba(255, 255, 255, 0.85);
  /* Dezenter Schutz für Lesbarkeit */
  padding: 40px;
  border-radius: 4px;
}
/* TYPOGRAFIE & BUTTON */
.hero-content h1 {
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}
.hero-content li {
  margin-bottom: 8px;
  font-weight: 500;
}
.btn-cta {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-cta:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
/* --- MOBILE OPTIMIERUNG (OFF-CANVAS LÖSUNG) --- */
@media (max-width: 768px) {
  .full-hero {
    background-color: #fff;
    background-image: none !important;
    height: auto;
    padding: 0px 0;
  }
  .hero-content {
    max-width: 100%;
    /* Etwas mehr Breite auf sehr schmalen Screens */
    padding: 0px;
    margin: 0 auto;
    background: white;
    /* Da das Bild weg ist, reicht oft ein solides Weiß */
    box-shadow: none;
  }
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  .hero-content h2 {
    font-size: 1.2rem;
  }
}
/* Bild-Wrapper und Bild-Styling */
.image-wrapper img {
  display: block;
  object-fit: cover;
  /* Verhindert Verzerrung, füllt die Spalte vollständig aus */
}
/* Ausreichend Padding für den Text-Bereich */
.content-padding {
  padding: 3rem;
  /* Entspricht p-5 in Bootstrap */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Text vertikal zentrieren, falls das Bild höher ist */
  height: 100%;
}
.flex-row-reverse .content-padding {
  padding-left: 0;
  padding-right: 3rem;
}
/* Responsive Anpassung für Mobile */
@media (max-width: 767.98px) {
  /* Auf Mobilgeräten Bild und Text untereinander stapeln */
  .image-wrapper img {
    height: auto;
    /* Auf Mobilgeräten natürliche Höhe zulassen */
  }
  .content-padding {
    padding: 2rem 1.5rem;
    /* Weniger Padding auf Mobile */
  }
}
