.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

#kontakt {
  scroll-behavior: smooth;
}

#kontakt a, #kontakt a:focus, #kontakt a:active {
  text-decoration: none !important;
  color: inherit !important;
  transition: color 0.3s ease;
}

#kontakt .align-items-center:hover a {
  color: rgb(40, 88, 157) !important;
  text-decoration: none !important;
}

/* --- Inputs wie am Anfang (Bootstrap-Standard) --- */

#kontakt .form-control {
  border: 1px solid #ced4da !important;
  border-radius: 0.375rem !important;
  background-color: #fff !important;
  box-shadow: none !important;
}

#kontakt .form-control:focus {
  border-color: #86b7fe !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25) !important;
}

/* --- Button flach & in Markenfarbe (optional) --- */

#kontakt .btn-primary {
  background: rgb(40, 88, 157);
  border: none !important;
  border-radius: 6px;
  box-shadow: none !important;
}

#kontakt .btn-primary:hover {
  background: rgb(30, 66, 120);
}

/* --- Kontaktblöcke: komplett flach --- */

#kontakt .d-flex.align-items-center.p-3 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* --- Icons: größer beim Hover über den ganzen Block --- */

#kontakt .bs-icon {
  transition: transform 0.3s ease;
}

#kontakt .d-flex.align-items-center.p-3:hover .bs-icon {
  transform: scale(1.2);
}

/* --- Links: ohne Unterstreichung + dezentes Blau beim Hover --- */

#kontakt a, #kontakt a:focus, #kontakt a:active {
  text-decoration: none !important;
  color: inherit !important;
  transition: color .25s ease;
}

#kontakt align-items-center:hover a {
  color: rgb(40, 88, 157) !important;
}

/* Footer-Links ohne Unterstreichung */

footer a, footer a:focus, footer a:active {
  text-decoration: none !important;
  color: inherit !important;
  transition: color .25s ease;
}

/* Hover-Effekt */

footer a:hover {
  color: rgb(40, 88, 157) !important;
  text-decoration: none !important;
}

/* Basis-Button-Design für die ganze Seite */

.btn {
  background: rgb(40, 88, 157) !important;
  border: none !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  color: #fff !important;
  padding: 10px 20px !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Hover-Zustand */

.btn:hover {
  background: rgb(30, 66, 120) !important;
  transform: translateY(-1px);
}

/* Klick-Effekt */

.btn:active {
  transform: translateY(0);
  background: rgb(25, 55, 100) !important;
}

.header-custom {
  background-image: url('../../assets/img/header.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #000;
}

/* optional: halbtransparenter Overlay für bessere Lesbarkeit */

.header-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}

.header-custom .container {
  position: relative;
  z-index: 1;
}

