
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px;
}


.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #2b2b2b;
  border: 2px solid #fff;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
}

.burger-line {
  width: 22px;
  height: 2px;
  background-color: white;
  display: block;
}


ul.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
}

ul.menu > li {
  display: inline-block;
}

ul.menu > li > a {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 12px;
  background: linear-gradient(to bottom, #4d4d4d, #2b2b2b);
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

ul.menu > li > a:hover,
ul.menu > li.current > a,
ul.menu > li.active > a {
  background: linear-gradient(to bottom, #00c3ff, #008fc2);
  color: #000;
}


@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .menu-wrapper {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #2b2b2b;
    margin-top: 60px;
    border-radius: 0 0 12px 12px;
    padding: 15px 0;
    align-items: center;
    z-index: 999;
  }

  .menu-wrapper.show {
    display: flex;
  }

  ul.menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
  }

  ul.menu > li {
    width: 100%;
    text-align: center;
  }

  ul.menu > li > a {
    width: 100%;
  }
}



html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#weso-main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.weso-sheet {
  flex: 1;
}



.lesungen-zentriert {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lesungen-zentriert img {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.lesungen-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.lesungen-gallery img {
  width: 100%;
  height: 220px; /* oder z.B. 250px */
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	background-color: #f2f2f2;
}


.lesungen-gallery img:hover {
  transform: scale(1.03);
}
.lesungen-gallery figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
}

.lesungen-gallery figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #00457C;
  font-weight: 600;
  text-align: center;
}

.lesungen-gallery figure {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lesungen-gallery figure:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}