/* Grundlegendes Styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header-Stil */
header {
  background-color: #004080; /* Dunkler Hintergrund */
  color: white;
  padding: 0;
  text-align: center;
}

/* Logo im Header */
.logo {
  width: 400px;
  display: block;
  margin: 0 auto;
}

/* Navigation */
nav {
  background-color: #003060;
  text-align: center;
  padding: 10px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero-Bereich */
.hero-container {
  position: relative;
  background-image: url('bilder/hintergrund_trprt.jpg');
  background-size: cover;
  background-position: center center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Hier auf flex-start ändern, um nach oben zu rücken */
  align-items: center;
  padding-top: 50px;
}

.hero-container .logo {
  max-width: 300px;
  margin-bottom: 20px;
}

.hero-container h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: rgb(37, 26, 26);
  text-align: center;
  word-wrap: break-word;
  line-height: 1.2; /* Zeilenabstand verkleinern */
}

.hero-container p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgb(32, 18, 18);
  text-align: center;
  word-wrap: break-word;
}

/* Call-to-Action Button */
.cta-button {
  padding: 12px 24px;
  background-color: #00b300;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #008000;
}

/* Sektion unter dem Header */
.about {
  background-image: url('bilder/dein-hintergrundbild-2.jpg');
  background-size: cover;
  background-position: center center;
  padding: 60px 20px;
  color: black;
  text-align: center;
}

/* Fußzeile */
footer {
  text-align: center;
  padding: 20px;
  background-color: #ddd;
}

/* Profilbild Styling */
.profilbild {
  width: 180px;
  height: auto;
  border-radius: 50%;
  display: block;
  margin: 20px auto;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.highlight {
  color: #0f396e;
  font-weight: bold;
}

.ueber-mich-inhalt {
  max-width: 1000px;     /* maximale Breite */
  margin: 0 auto;        /* zentriert horizontal */
  padding: 0 20px;       /* Innenabstand für kleinere Displays */
  text-align: center;      /* optional: linksbündiger Text statt zentriert */
}

/* Responsive Anpassungen für kleinere Bildschirme */
@media (max-width: 600px) {
  header h1 {
    font-size: 22px;
  }

  header p {
    font-size: 16px;
  }

  .profilbild {
    width: 120px;
  }

  section {
    padding: 10px;
  }

  .cta-button {
    width: 100%;
    font-size: 16px;
  }

  .hero-container {
    padding: 50px 20px;
    height: auto;
  }
}

/* Allgemeine Section-Formatierung */
section {
  text-align: center;
  margin-bottom: 20px;
  padding: 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.2rem;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.2em;
  text-align: left;  /* Wichtig für saubere Ausrichtung */
}

/* Logo-Leiste (bisherige Kunden) */
.kunden-section {
  text-align: center;
  margin: 50px 0;
}

.kunden-überschrift {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #333;
}

.logo-leiste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 50px;
  align-items: center;
  padding: 20px 20px 10px 20px; /* angepasst: weniger Platz unten */
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
}

.logo-leiste img {
  height: 60px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.logo-leiste img:hover {
  transform: scale(1.05);
}

/* Optional: kleinere Logos bei sehr kleinen Geräten */
@media (max-width: 500px) {
  .logo-leiste img {
    height: 70px;
    max-width: 100px;
  }
}


.member-leiste {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px 20px;
  align-items: center;
  padding: 0px 20px 50px 20px; /* angepasst: weniger Platz unten */
   
}

.member-leiste img {
  height: 30px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.member-leiste img:hover {
  transform: scale(1.05);
}

















/* Formatierung für Impressum und Datenschutzerklärung */
.text-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  background-color: #f4f4f4;
  color: #333;
}

.text-page h1 {
  font-size: 2rem;
  color: #004080;
  text-align: center;
  margin-bottom: 20px;
}

.text-page h2 {
  font-size: 1.6rem;
  color: #004080;
  margin-top: 20px;
  margin-bottom: 10px;
}

.text-page p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.text-page footer {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 40px;
  color: #777;
}

/* Sprache-Umschalter */
.language-switcher {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 9999;
}

.language-switcher img {
  width: 40px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.language-switcher img:hover {
  transform: scale(1.1);
}

/* Liste bei Leistungen */
#leistungen ul {
  list-style-type: disc;
  font-size: 1.2em;
  padding-left: 20px;
}
address {
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.6;
  margin: 20px 0;
  color: #333;
}

.testimonial-wrapper {
  margin-top: 30px;
  padding: 0 20px;
}

.testimonial-wrapper blockquote {
  font-style: italic;
  background-color: #fff;
  border-left: 4px solid #0077cc;
  padding: 20px;
  max-width: 700px;
  margin: 0 auto;
  color: #333;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
}

.testimonial-wrapper blockquote footer {
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
  color: #555;
}

.splide__slide {
  display: flex;
  justify-content: center;
}
