body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background: #f4f4f4;
}

header {
  background-image: url('../images/lz01.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

nav {
  background: rgba(0, 0, 0, 0.4);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  display: block;
  color: white;
  padding: 1rem;
  text-decoration: none;
}

nav ul li a:hover {
  background: #0b6623;
}

#menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.visible {
  display: flex !important;
  flex-direction: column;
}

@media (min-width: 600px) {
  #menu-toggle {
    display: none;
  }

  nav ul,
  .hidden,
  .visible {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
  }
}

main {
  padding: 2rem;
}

footer {
  background: #ccc;
  text-align: center;
  padding: 1rem;
}

#ueber-uns {
  background-color: #fff8e1;
  border-left: 5px solid #f9a825;
  padding: 2rem;
  margin: 1rem;
  border-radius: 8px;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background-color: #0b6623;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

#back-to-top:hover {
  background-color: #065e1c;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2rem;
}

.galerie-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.kontakt-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.kontakt-form button {
  background-color: #0b6623;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.kontakt-form button:hover {
  background-color: #065e1c;
}

.responsive-img {
  max-width: 100%;
  height: auto;
}

.social-link {
  font-size: 26px;
  text-decoration: none;
}

.social-link.facebook {
  color: #1877f2;
}

.social-link:hover {
  color: #0f5ec7;
}

.social-link.instagram {
  color: #E4405F;
}

.social-link.instagram:hover {
  color: #C13584;
}

[hidden] {
  display: none !important;
}

.responsiveCal {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
}

.responsiveCal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.termine-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.termine-liste {
  flex: 2;
}

.termine-bild {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-right: 4rem;
}

.bild-rechts {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .termine-container {
    flex-direction: column;
  }
}

.padlet-container {
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
}

.padlet-frame {
  display: block;
  width: 100%;
  height: 800px;
  min-height: 500px;
  border: none;
  border-radius: 8px;
}

.padlet-button {
  background-color: #2c7a4b;
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.padlet-button:hover {
  background-color: #1f5a37;
}

@media (max-width: 768px) {
  .padlet-frame {
    height: 70vh;
  }
}