body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #e6f2fa;
  color: #002244;
}

header {
  background: linear-gradient(to right, #e6f2fa, #c2e0f7, #b3e8f0);
  color: #002244;
  padding: 1rem;
  position: relative;
}

header::after {
  position: absolute;
  content: "";
  background: linear-gradient(to top,  #1b325f 50%, #F96E51 65%);
  height: 1.6em;
  left: 0;
  right: 0;
  bottom: -1.6em;
}

h1, h2 {
  margin: 0;
  text-align: center;
  font-size: 2.3rem;
  color: #002244;
}

h2 {
  font-size: 2.5rem;
  color: #003366;
}

.drucker {
  color: #1b325f;
}

.zeug {
  color: #f36b4f;
}

#menu-toggle {
  background: none;#
  border: none;
  font-size: 1.8rem;
  color: #002244;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  display: none;
}

nav {
  background-color: transparent;
  margin: 0 1rem;
}

.menuliste {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menuliste li {
  border: 1.8px solid #c2e0f7;
  border-radius: 5px;
  background-color: #d0e7f5;
}

.menuliste a {
  display: block;
  padding: 0.5rem 1rem;
  color: #002244;
  text-decoration: none;
  font-weight: bold;
}

.menuliste a:hover {
  background-color: #c2e0f7;
}

.hidden {
  display: none;
}

main {
  padding: 2rem;
  margin: 0 1rem;
}

footer {
  background-color: #d0e7f5;
  text-align: center;
  padding: 2em;
  font-size: 0.9rem;
  max-width: 75em;
  margin: 0 auto;
}

.copy {
  text-align: center;
  font-size: 0.7rem;
  color: #002244;
  margin-top: 2rem;
}

.responsive-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 📱 Mobile Styles */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }

  .menuliste {
    flex-direction: column;
    align-items: stretch;
  }

  .menuliste li {
    width: 100%;
  }

  .menuliste a {
    text-align: center;
    font-size: 1.1rem;
  }
}

.shopliste {
  list-style-position: inside;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

/* 💻 Desktop Styles */
@media (min-width: 769px) {
  #main-nav {
    display: block !important;
  }

  #menu-toggle {
    display: none;
  }
}

.bannerbild {
  display: block;
  margin: 1rem auto;
  max-width: 100%;
  height: auto;
}

.shop-hinweis {
  text-align: center;
  margin: 2rem auto;
  padding: 1rem;
  max-width: 800px;
  background-color: #e6f2fa;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.shoplink {
  display: inline-block;
  background-color: #3399cc;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.shoplink:hover {
  background-color: #336699;
}

#agb {
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
}

/* Footer media query ohne Grid */
@media only screen and (min-width: 60em) {
  footer {
    /* Kein Grid nötig */
  }
}

.container {
  margin-left: 8em;
}

.kontakt-container {
  max-width: 600px;
  width: 100%;
  margin: 1rem auto;
  padding: 1rem 1.5rem;
  background-color: #e6f2fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.kontaktformular {
  display: flex;
  flex-direction: column;
}

.kontaktformular label {
  font-weight: bold;
  color: #002244;
  margin-bottom: 0.2rem;
}

.kontaktformular input[type="text"],
.kontaktformular input[type="email"],
.kontaktformular select,
.kontaktformular textarea {
  padding: 0.4rem 0.6rem;
  border: 1px solid #99ccee;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  background-color: #f5fbff;
  color: #002244;
}

.kontaktformular textarea {
  resize: vertical;
}

.kontaktformular input[type="submit"] {
  background-color: #3399cc;
  color: white;
  border: none;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kontaktformular input[type="submit"]:hover {
  background-color: #336699;
}

.error {
  color: #cc3333;
  font-size: 0.85rem;
  margin-top: -0.3rem;
}

.inhalt {
  max-width: 1024px;
  margin: 0 auto;
  padding-left: clamp(0.8rem, 4vw, 2rem);
  padding-right: clamp(0.8rem, 4vw, 2rem);
}

@media (min-width: 1200px) {
  .inhalt {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

/* herbstlaub */
.leaf-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.leaf {
  position: absolute;
  top: -50px;
  font-size: 2rem;
  animation: leafFall 5s linear forwards;
}

@keyframes leafFall {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translateX(30px) translateY(50vh) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-30px) translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.rechtslaufender-text {
  float: right;
  width: 60%;
  margin: 0.5em 0 0.5em 5%;
  font-family: 'Algerian', Courier, serif;
  clear: both;
  color: #002244;
}

.zurueck-nach-oben {
  display: block;
  text-align: center;
  margin: 2rem auto;
  padding: 0.5rem 1rem;
  background-color: #3399cc;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  width: fit-content;
  transition: background-color 0.3s ease;
}

.zurueck-nach-oben:hover {
  background-color: #336699;
}
.custom-heading {
  font-size: 1.6rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1em;
  font-family: Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
}

.person {
  display: flex;
  flex-direction: row-reverse; /* Bild rechts */
  align-items: flex-start;
  gap: 1em;
  margin-bottom: 2em;
}

.person img {
  width: 150px;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0;
}

.info {
  flex: 1;
  min-width: 200px;
}

/* Mobilansicht */
@media (max-width: 600px) {
  .person {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info {
    text-align: left;
  }
}
.button-link {
  display: inline-block;
  padding: 0.6em 1.2em;
  background-color: #085f8a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button-link:hover {
  background-color: #0a6fa0;
}
.preview-img {
  position: absolute;
  top: 2.5em;
  left: 0;
  width: 300px;
  display: none;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  z-index: 1000;
}

@media (max-width: 480px) {
  .preview-img {
    display: none !important; /* Vorschau auf Mobil deaktivieren */
  }
}
.map-section {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.map-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.map-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.map-container {
  max-width: 600px;
  margin: 0 auto;
}
