/* Dark Mode Grundlayout */
body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}
body.dark-mode a {
  color: #81b3ff;
}
body.dark-mode #darkModeToggle {
  background-color: #444;
  color: #fff;
  border: 1px solid #666;
}

/* Logo mobil vereinheitlicht */
@media (max-width: 768px) {
  header img {
    max-width: 220px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto 1rem auto !important;
  }
}

/* Über uns Layout */
.about-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2em;
}
@media (max-width: 768px) {
  .about-row {
    flex-direction: column !important;
    align-items: center !important;
  }
  .about-row img {
    max-width: 90% !important;
    height: auto;
    margin-bottom: 1em;
  }
  .about-row div {
    font-size: 0.95em;
    text-align: left;
  }
}

/* Galerie Bilddarstellung allgemein */
.gallery img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}
.gallery img[src*="IMG-20250509-WA0044.jpg"],
.gallery img[src*="IMG-20250509-WA0047.jpg"] {
  object-position: top;
}

/* Shop-Raster Desktop und Mobil */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 1em;
  max-width: 1000px;
  margin: 0 auto;
}
.shop-item {
  flex: 0 1 calc(30% - 20px);
  box-sizing: border-box;
  padding: 1em;
  margin-bottom: 1em;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
  font-size: 0.95em;
}
.shop-item h3 {
  font-size: 1.1em;
  margin-bottom: 0.5em;
}
.shop-item p {
  font-size: 0.95em;
  margin-bottom: 0.5em;
}
.shop-item button {
  width: 100%;
  padding: 0.6em;
  font-size: 0.95em;
  margin-top: 0.5em;
}

/* Shop- und Footer-Stil mobil */
@media (max-width: 480px) {
  .shop-grid {
    flex-direction: column;
    align-items: center;
  }
  .shop-item {
    width: 100%;
    max-width: 280px;
    padding: 0.8em;
    font-size: 0.9em;
  }
  .shop-item h3 {
    font-size: 1em;
  }
  .shop-item button {
    font-size: 0.9em;
  }
  footer {
    text-align: center;
    padding: 1em;
    font-size: 0.9em;
  }
  #darkModeToggle {
    display: inline-block;
    margin: 1rem auto;
    font-size: 1em;
    padding: 0.5em 1em;
  }
}

/* Hamburgermenü */
@media (max-width: 768px) {
  .hamburger-toggle {
    display: block;
    font-size: 1.8em;
    padding: 10px 20px;
    text-align: right;
    cursor: pointer;
  }
  nav.mobile-hidden {
    display: none;
  }
  nav {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 769px) {
  .hamburger-toggle {
    display: none;
  }
}


/* Symbolleiste mobil einheitlich */
@media (max-width: 768px) {
  .top-icon-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6em 1em;
    gap: 1em;
  }

  .top-icon-bar .social-icons,
  .top-icon-bar .darkmode-icon {
    display: flex;
    align-items: center;
    gap: 0.8em;
  }

  .top-icon-bar .social-icons a,
  .top-icon-bar .darkmode-icon button {
    font-size: 1.6em;
  }

  #darkModeToggle {
    all: unset;
    cursor: pointer;
    font-size: 1.6em;
    margin-left: auto;
  }
}
