/* Grundlegende Stile */
html, body {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

button, a, h1, h2, h3, h4, h5, h6, p, div, span {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}

body {
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 1000;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.menu-button {
  color: black;
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  padding: 10px;
}

/* Menü */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: white;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  z-index: 999;
}

.menu.active {
  height: 100vh;
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 24px;
  padding: 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Slideshow */
.slideshow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Slide Container */
.slideshow a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.slideshow a img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* Impressum Link */
.impressum-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 2000;
}

.impressum-link:hover {
  text-decoration: underline;
}

.impressum-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0.15em;
}
