body {
  font-family: Arial, sans-serif;
  background-color: #1a1c1d;
  min-height: 78.6vh;
  color: white;
}

.content {
  min-height: 78.6vh;
}

.seperator {
  background-color: #ccc;
  height: 1px;
  width: 90%;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.line {
  display: flex;
  gap: 0.5em;
  line-height: 2;
}

.bg-img {
  background-image: url("/assets/img/bg.png");
  background-size: cover; /* Füllt den Container */
  background-position: center; /* Zentriert das Bild */
  background-repeat: no-repeat; /* Kein Wiederholen */

  z-index: -1; /* Falls andere Inhalte darüber liegen sollen */
}

h1 {
  white-space: pre-line;
  color: #ffd700; /* Satteres Gold */
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0px 0px 5px rgba(255, 215, 0, 0.8),
    /* Weicher Schimmer */ 0px 0px 15px rgba(255, 223, 0, 0.6),
    /* Leichter Glow */ 2px 2px 5px rgba(50, 50, 50, 0.6); /* Dezente Tiefenwirkung */
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.2vh;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.4vh;
  }

  h2 {
    font-size: 20;
    margin: 0%;
    font-weight: bold;
  }
  h3 {
    font-size: 18;
    margin: 0%;
    font-weight: bold;
  }
  h4 {
    font-size: 17;
    margin: 0%;
    font-weight: bold;
  }
  h5 {
    font-size: 16;
    margin: 0%;
    font-weight: bold;
  }
  h6 {
    font-size: 15;
    margin: 0%;
    font-weight: bold;
  }
}

.impression {
  font-size: 0.8em;
  font-weight: bold;
  transition: all 0.3s ease; /* Smooth transition, falls benötigt */
  color: #fff;
}

.contact {
  width: 50vw;
}

.page-header {
  background-color: #444444;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 10px 20px;
  position: sticky;
  top: 0px;
  left: 0px;
  z-index: 9999;
  text-align: center;
  margin-bottom: 15px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.logo-container {
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.logo {
  height: 7vh;
  width: auto;
}

.logo:hover {
  animation: logoBounce 0.5s ease-out forwards;
}

@keyframes logoBounce {
  0% {
    height: 7vh;
  }
  50% {
    height: 8vh;
  } /* Klar größer */
  70% {
    height: 7.5vh;
  } /* Leicht kleiner */
  100% {
    height: 8vh;
  } /* Bleibt groß */
}

text {
  color: rgb(226, 226, 226);
}

.block {
  border-color: rgb(251, 251, 251);
  border-width: 3px;
  border-style: solid;
  /* <-- das fehlt dir */

  background-color: #222;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 15px;

  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
}

blockquote {
  color: rgb(226, 226, 226);
}

ul {
  /* list-style-position: inside;  */
  padding-left: 15px;
  margin-bottom: 0.1em;
}

/* Listen mit angepassten Icons */
ul.custom_iconed_list {
  list-style: none;
  position: relative;
}

ul.custom_iconed_list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.1em;
}

ul.custom_iconed_list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  top: 0.2em; /* vertikale Ausrichtung anpassen */
  line-height: 1;
  user-select: none;
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  align-items: stretch; /* Alle Karten gleich hoch machen */
}
.card_footer {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Stellt sicher, dass der Footer die volle Breite des Containers nutzt */
  text-align: center; /* Falls Text drin ist, zentriert ihn das */
  margin-top: 15px; /* Optional, falls du Abstand möchtest */
}

.card_footer a {
  display: inline-block;
  text-align: center;
}

.footer {
  position: sticky;
  width: 100%;
  background-color: #333;
  margin-top: 5px;
  text-align: center;
  color: rgb(121, 121, 121);
  bottom: 0px;
  left: 0px;
  z-index: 999; /* Falls nötig, um über anderen Elementen zu bleiben */
  display: block;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 50px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    height: 40px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}

.wrapper {
  min-height: 100%;
  padding-bottom: 25px;
  display: block;
  width: 98%;
}

.grid-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(169, 168, 168, 0.2);
  padding: 15px;
  text-align: left;
  width: 400px; /* Maximale Breite der Karten */
}

.grid-item h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: rgb(226, 226, 226);
}

.grid-item p,
.grid-item ul {
  color: rgb(226, 226, 226);
}

.grid-item a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.grid-item a:hover {
  background: #0056b3;
}

.grid-item .header {
  font-weight: bold;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.header {
  background-color: #444444;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center; /* Falls der Text innerhalb der Überschrift zentriert werden soll */
  margin-bottom: 15px; /* Optional, je nachdem, wie viel Abstand du möchtest */
}

/* Titel Styling */
.header-title {
  color: #ffd700;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 0px 0px 5px rgba(255, 215, 0, 0.8),
    0px 0px 15px rgba(255, 223, 0, 0.6), 2px 2px 5px rgba(50, 50, 50, 0.6);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center; /* Standard: Logo + Titel in der Mitte */
  gap: 15px; /* Abstand zwischen Logo und Titel */
}

.card_body {
  max-height: 30vh;
  overflow-y: auto;
  border-color: rgb(26, 27, 28);
  border-width: 2px;
}

.product-detail {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: #fff;
  text-align: left;
}

.product-detail img {
  float: right;
  max-width: 120px;
  border-radius: 10px;
  border: 3px solid #ccc;
  margin-left: 15px;
}

.product-detail h1 {
  font-size: 24px;
}

.product-detail p,
.product-detail ul {
  font-size: 14px;
}

.product-detail a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.product-detail a:hover {
  background: #0056b3;
}

.contact-frame {
  width: 80vw;
  background-color: #636363;
}

.contact-frame .header {
  background-color: #444444;
  color: #dad4d4;
}

.contact-frame .card_body {
  padding-top: 20;
  background-color: #7d7d7d;
  color: #dad4d4;
}

.input-group {
  margin-bottom: 15px;
}
.input-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}
.input-group input,
.input-group textarea {
  width: 98%;
  padding: 10px;
  border: 1px solid #4b4b4b;
  border-radius: 5px;
}
.captcha-box {
  margin-top: 15px;
  font-weight: bold;
}

.btn {
  text-decoration: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  align-self: center;
  transition: background-color 0.3s, filter 0.3s; /* Weiche Farb- und Helligkeitsänderung */
}

.btn:hover {
  background-color: #0056b3;
  filter: brightness(1.2); /* Heller */
  animation: buttonBounce 0.5s ease-out forwards;
}

@keyframes buttonBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  } /* Erst größer */
  70% {
    transform: scale(1.05);
  } /* Dann leicht kleiner */
  100% {
    transform: scale(1.07);
  } /* Bleibt leicht größer */
}

.btnFooter {
  color: (rgb(121, 121, 121));
  font-size: 12px;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.3s, filter 0.3s; /* Weiche Farb- und Helligkeitsänderung */
}
@media screen and (min-width: 768px) {
  .btnFooter {
    padding: 2px 15px;
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .btnFooter {
    padding: 0px, 2px;
    padding-bottom: 5px;
  }
}

.btnFooter:hover {
  color: (rgb(101, 101, 101));
  filter: brightness(1.2); /* Heller */
  animation: footerButtonBounce 0.5s ease-out forwards;
}

@keyframes footerButtonBounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  } /* Erst größer */
  70% {
    transform: scale(1.05);
  } /* Dann leicht kleiner */
  100% {
    transform: scale(1.07);
  } /* Bleibt leicht größer */
}

.contact-data {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.contact-data-ust {
  list-style-type: none;
}
a {
  color: #ddd;
}
a:hover {
  color: #787878;
}
.hidden_link {
  text-decoration: none;
}
.hidden_link:hover {
  text-decoration: none;
  color: #ddd;
}

.center {
  text-align: center;
}
.horizontal_center {
  display: flex;
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}

.area-leveled {
  padding: 30px;
  display: flex;
  background-color: #464646;
  border-radius: 15px;
  min-height: 40px;
  justify-content: center;
  align-items: center;
  font-size: 16px; /* Standardgröße */
}

.area-leveled:hover {
  background-color: #565656;
}

.area-leveled p {
  font-size: 16px; /* Standardgröße */
  transition: font-size 0.5s ease-in-out;
}

.area-leveled:hover p {
  animation: textBounce 0.5s ease-out forwards;
}

/* Keyframe für den Bounce-Effekt */
@keyframes textBounce {
  0% {
    font-size: 16px;
  }
  50% {
    font-size: 20px;
  } /* Erst größer */
  70% {
    font-size: 18px;
  } /* Dann leicht kleiner */
  100% {
    font-size: 20px;
  } /* Bleibt groß */
}

/* ✅ PC/Laptop: Logo links, Titel mittig */
@media screen and (min-width: 768px) {
  .header {
    justify-content: center; /* Titel bleibt mittig */
  }

  .header-content {
    position: absolute;
    left: 15px; /* Logo links */
    justify-content: flex-start; /* Titel nicht mehr mittig, sondern neben Logo */
  }

  .header-title {
    margin-left: 15px;
  }
}

/* ✅ Smartphone/Tablet: Logo und Titel nebeneinander & zusammen mittig */
@media screen and (max-width: 767px) {
  .header {
    justify-content: center;
  }

  .header-content {
    flex-direction: row; /* Logo und Titel bleiben nebeneinander */
    justify-content: center; /* Beide zusammen mittig */
  }
}

.content-wrapper {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 20px;
}

.section {
  height: auto;
  padding: 40px 0;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.content-block {
  flex: 1 1 45%;
  max-width: 45%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .content-wrapper {
    width: 98%;
    max-width: 1500px;
    margin: auto;
    padding: 0px;
  }

  .content-container {
    flex-direction: column;
  }

  .content-block {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section {
    padding: 10px 0;

    .content-container {
      gap: 10px;
    }
  }
  .page-header {
    width: auto;
    height: 60px;
  }
}

.outer-block-body {
  margin: 20px;
  padding: 20px;
  background-color: rgba(
    66,
    63,
    63,
    0.7
  ); /* leichter transparenter Hintergrund */
  border: 3px solid #333; /* schöner Rahmen */
  border-radius: 10px; /* abgerundete Ecken */
  box-shadow: 0px 4px 8px rgba(168, 168, 168, 0.2); /* sanfter Schatten */
  backdrop-filter: blur(5px); /* Unschärfe-Effekt für Hintergrund */
  position: relative;
  z-index: 1;
}

.inner-block-body {
  font-family: "Arial", sans-serif;
  font-size: 22px;
  line-height: 1.6;
}

/* Optional: Stil für den Textinhalt */
.inner-block-body {
  margin: 10px 0;
}

.input-group input,
.input-group textarea {
  background-color: rgb(25, 27, 28);
  border-color: rgb(65, 71, 74);
  color: #fef9d7;
}

@media screen and (min-width: 768px) {
  div {
    scroll-margin-top: 20vh;
  }
}

@media screen and (max-width: 767px) {
  div {
    scroll-margin-top: 22vh;
  }
}
