/* Eigene Button-Farben – harmonisch zu Orange */
:root {
  --shg-orange: #e95d0f;
  --shg-petrol: #1f4f4b;
}

.btn-primary {
  background-color: #2f6f6a;
  border-color: #2f6f6a;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #255a56;
  border-color: #255a56;
}

.btn-outline-primary {
  color: #2f6f6a;
  border-color: #2f6f6a;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #2f6f6a;
  color: #ffffff;
  border-color: #2f6f6a;
}
/* =========================
   Navbar
========================= */

.navbar {
  background-color: #1f4f4b !important;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: #ffffff;
}

.navbar-brand:hover {
  color: #e95d0f;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #e95d0f;
}

.navbar-nav .nav-link.active {
  color: #e95d0f;
  font-weight: 600;
}

/* Burger-Icon sichtbar auf dunklem Hintergrund */
.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =========================
   Footer
========================= */

.site-footer {
  background-color: #1f4f4b;
  color: #ffffff;
  padding: 1.5rem 0;
  margin-top: 4rem;
}

.site-footer small {
  opacity: 0.9;
}
.page-header {
  background-color: #f8f9fa;
  padding: 3rem 0;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: #1f4f4b;
  font-weight: 700;
}
/* Titel in Orange */
.shg-title {
  color: #e95d0f;  /* euer Orange */
  font-size: 42px;  /* kann optional angepasst werden */
  font-weight: bold;
}
/* Karten-Titel in Orange */
.card-title {
  color: #e95d0f;
  font-weight: bold;
}
/* =========================
   Einheitliche Pressebilder
========================= */

.presse-image-wrapper {
  width: 100%;
  max-width: 180px;        /* einheitliche Bildbreite */
  height: 120px;           /* einheitliche Bildhöhe */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.presse-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* <<< AUTOMATISCHES ZUSCHNEIDEN */
  display: block;
}
.hero {
      background: #f8f9fa;
      padding: 4rem 1rem;
    }

    .hero h1 span {
      color: #e95d0f;
    }


    .section-title {
      color: #e95d0f;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
/* =========================
   Farbvariablen für SHG
========================= */

.team-card img {
  width: 150px;
  height: 200px;
  object-fit: cover; /* Automatisches Zuschneiden */
  border-radius: 6px;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

