/* General Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6; /*Legt den Zeilenabstand fest (Abstand zwischen Textzeilen).*/
}





/* Footer Links */
footer {
    background: #f8f9fa;
}





/* Logo Style */
.logo {
    width: 200px;
    height: 100px;

    object-fit:contain;



}
header small{
  font-size: x-small;
}



/* Karten Titel & Text anpassen */
.card .card-title {
    color: #d00000;
    /* Rot (kannst du anpassen) */
    font-weight: bold;
}

.card .card-text {
    color: #000;
    /* Schwarz */
}

.card{
    background-color:rgb(255, 255, 255);
}

.carousel {
  max-width: 90%; /* innerhalb Container */
  margin: 0 auto; /* zentrieren */
}

.carousel img {
  width: 100%;
  aspect-ratio: 3 / 1; /* Breite:Höhe = 3:1 */
  object-fit: cover;
}

.hero-text {
  /* Text-Schatten für bessere Lesbarkeit auf hellen Bereichen */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);

  /* Semi-transparenter Hintergrund für optimalen Kontrast */
  /*background-color: rgba(0, 0, 0, 0.3);

  /* Abgerundete Ecken und Weichzeichnung für einen modernen Effekt */


}

.service-card {
  border: none;
  border-radius: 5px; /* Weichere Kanten */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtiler Schatten */
}

/* Hover-Effekt: Karte hebt sich leicht an */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.icon-container {
  font-size: 2rem; /* Größere Icons */
  color: #007bff; /* Markenfarbe  */
  margin-bottom: 1rem;
}

.service-card .card-title {
  font-weight: bold;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-left img {
  height: 100px;
}

.footer-center {
  text-align: center;
  flex: 1;
}

.footer-center p {
  margin: 0;
}

.footer-links {
  margin-top: 5px;
}

.footer-links a {
  text-decoration: none;
  color: #555;
  margin: 0 5px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-right a {
  color: #555;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #0077b5; /* LinkedIn Blau, Beispiel */
}

.footer-img {
  width: 150px;
  height: 50px;
  object-fit: contain;
}

.sap-img{
    width: 200px;

}