body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
}

@media screen and (max-width: 700px) {
  .showOnDesktop {
    visibility: hidden;
    display: none
  }
}

@media screen and (min-width: 700px) {
  .showOnMobile {
    visibility: hidden;
    display: none
  }
}

.logobanner {
  background-color: #000000;
  color: #a95;
  text-align: center;
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-left: 20px;
}

.textbanner {
  flex: 1;
  font-size: 20px;
  font-weight: bold;
}

.imagesbanner {
  margin-right: 20px;
}

.imagesbanner img {
  height: 40px;
  margin-left: 10px;
}

.banner {
  position: relative;
  height: 200px;
  background-image: linear-gradient(#d1f66e, #fbffe8, #d1f66e);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  margin-top: 70px;
}

.kreise {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.kreise img {
  width: 200px;
  height: auto;
  margin-right: 10px;
  box-shadow: 5px 5px 20px 2px #353434;
  border-radius: 200px;
}

.banner-buttons img {
  width: 30px;
  height: auto;
  margin-left: 10px;
}

.navbar {
  background-color: #d1f66e;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 120px;
  box-shadow: 5px 5px 10px 1px #353434;
}

/*---------------------*/
.navbutton-hover {
  width: 150px;
  font-size: 16px;
  font-weight: 600;
  color: #303030;
  cursor: pointer;
  margin: 0 5px;
  padding: 5px;
  height: 40px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navbutton-hover:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.navbutton-hover:focus {
  outline: none;
}

.navbutton-hover {
  background-image: linear-gradient(to right, #fea, #a95, #fea, #a95);
  box-shadow: 0 4px 15px 0 rgba(255, 238, 170, 0.397);
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 110px;
  left: 18px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 2;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #a95;
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: -20px;
}
.menu__btn > span::after {
  content: "";
  top: 20px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 70px;
  left: -100%;
  width: 300px;
  height: 100%;
  margin: 0;
  padding: 100px 0;
  list-style: none;
  background-color: #eceff1;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  transition-duration: 0.25s;
  z-index: 1;
}
.menu__item {
  display: block;
  padding: 12px 24px;
  color: #a95;
  font-family: "Arial", sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  transition-duration: 0.25s;
}
.menu__item:hover {
  background-color: #cfd8dc;
}

.imagesBody {
  padding: 40px 5%;
}

ul {
  list-style: none;
}

.imageGallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.imageGallery > li {
  flex-basis: 500px;
  position: relative;
  cursor: pointer;
}

.imageGallery::after {
  content: "";
  flex-basis: 350px;
}

.imageGallery li img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 57, 57, 0.502);
  top: 0;
  left: 0;
  transform: scale(0);
  transition: all 0.2s 0.1s ease-in-out;
  color: #fff;
  border-radius: 5px;
  /* center overlay text */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.imageGallery li:hover .overlay {
  transform: scale(1);
}

.shopPage {
  width: 90%;
  margin: 0 auto; /* Zentriert den Container auf der Seite */
  padding: 20px;
}

.row {
  display: flex;
}

.half-width {
  width: 50%;
  padding: 10px;
  box-sizing: border-box; /* Stellt sicher, dass Padding nicht die Gesamtbreite ver�ndert */
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

/* Slideshow container */
.slideshow-container {
  max-width: 500px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active,
.dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.tab-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
}

.tab-button {
  width: 120px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  margin: 0 5px;
  padding: 5px;
  height: 30px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.tab-button:hover {
  background-position: 100% 0;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.tab-button {
  background-image: linear-gradient(to right, #fea, #a95, #fea, #a95);
  box-shadow: 0 4px 15px 0 rgba(255, 238, 170, 0.397);
}

.tab-content {
  display: none;
  min-height: 800px;
}

.technischeDaten {
  display: grid;
  grid-template-columns: auto auto; /* Zwei Spalten */
  grid-gap: 5px; /* Abstand zwischen den Zellen */
  padding: 20px;
}

.datenpunkt {
  padding: 5px;
  font-size: 18px;
}

.datenpunkt.links {
  text-align: left;
}

.datenpunkt.rechts {
  text-align: right;
}

.handmade {
  grid-column: span 2; /* Die Zeile erstreckt sich �ber beide Spalten */
  padding: 20px;
  text-align: center;
}

.form-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  width: 90%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #a95;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.shopPageHeader img {
  width: 25%;
  padding-top: 15px;
}

footer {
  background-color: #d4d3d3;
  padding: 20px;
  text-align: center;
}

.footer-buttons a {
  margin: 10px;
  color: #000000;
  text-decoration: none;
}
