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

/* Optional: auch Buttons, Links, Überschriften */
button, a, h1, h2, h3, h4, h5, h6, p, div, span {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}
/* Grundlegende Stile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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;
  padding-right: 10px; /* Mehr Platz für Menü */
  z-index: 1000; /* Sicherstellen, dass die Navbar immer oben bleibt */
}

/* Links in der Navbar */
.navbar a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

/* Menü Button */
.menu-button {
  color: black;
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap; /* Verhindert Zeilenumbruch */
  padding: 10px; /* Mehr Platz um Button */
}

/* Menü (wird über den Bildern eingeblendet) */
.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; /* Menü wird über den Bildern angezeigt */
}

/* Menü ist aktiv (erweitert) */
.menu.active {
  height: 100vh;
}

/* Links im Menü */
.menu a {
  text-decoration: none;
  color: black;
  font-size: 24px;
  padding: 15px;
}

/* Galerie Container */
.image-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  margin-top: 100px; /* Abstand nach der Navigation */
}

/* Einzelner Bildcontainer */
.image-item {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

/* Bild */
.image-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Bildunterschrift Styling */
.caption {
  text-align: right;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  line-height: 1.4;
}
