:root {
  --primary-color: #3b82f6;
  --secondary-color: #fbbf24;
  --accent-color: #2fff00;
  --background-overlay: rgba(0, 0, 0, 0.5);
  --text-color: #000000;
  --text-secondary: #312a2a;
  --box-color: rgba(174, 172, 172, 0.815);
  --info-color: #60a5fa;
  --akquise-color: #ff0000;
}
* {
  margin: 0;
  padding: 0;
}
body {
  background-image: url(img/header-img.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000;
}
.header-menu {
  margin-top: 2.5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 3vw;
  margin: 0 20px;
  text-shadow: #c0392b 1px 1px 2px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
  font-weight: bold;
}
.header-menu a:hover {
  text-decoration: underline;
}
.header-menu a:active {
  color: var(--secondary-color);
}
.itm {
  max-width: 15%;
  width: auto;
  height: auto;
  margin: 0 10px;
}
header h1 {
  padding: 1%;
  font-size: 4vw;
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  background-color: var(--box-color);
  border-radius: 20px;
}
.header-mitte {
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1%;
}
.kontakt {
  margin: 0;
  padding: 0;
  display: grid;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
  background-color: var(--box-color);
}

.kontakt h2 {
  color: var(--text-color);
  font-size: 5vw;
  text-align: center;
  margin-bottom: 5%;
}
.kontakt h3 {
  color: var(--text-color);
  font-size: 2.5vw;
  text-align: center;
  margin-bottom: 5%;
}
.kontakt h4 {
  color: var(--text-color);
  font-size: 2vw;
  text-align: center;
  margin-bottom: 5%;
}
.kontakt p {
  color: var(--text-color);
  font-size: 1.5vw;
  text-align: center;
  margin-bottom: 5%;
}
.kontakt a {
  color: var(--text-color);
  font-size: 1.5vw;
  text-align: center;
  margin-bottom: 5%;
  text-decoration: none;
}
.kontakt a:hover {
  text-decoration: underline;
}
.kontakt a:active {
  color: var(--secondary-color);
}
.kontakt img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
footer {
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: var(--box-color);
  padding: 2%;
  margin-top: 5%;
  border-radius: 25px;
  position: relative;
}

footer a {
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9vw;
  margin: 1% 2%;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}
footer a:hover {
  text-decoration: underline;
}
footer a:active {
  color: var(--secondary-color);
}

.footer-text {
  text-align: center; /* Zentriert den gesamten Text im Footer */
}

.footer-text p {
  margin: 0; /* Entfernt unnötige Abstände */
  padding: 0; /* Entfernt unnötige Innenabstände */
  color: var(--akquise-color);
}
