body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: white;
  padding: 10px 15px;
}

.logo {
  font-size: 18px;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
}

nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 50px;
  right: 10px;
  background: #333;
}

nav a {
  color: white;
  padding: 10px;
  text-decoration: none;
}

nav.show {
  display: flex;
}

/* DESKTOP */
@media (min-width: 768px) {
  nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
  }

  .menu-toggle {
    display: none;
  }

  nav a {
    padding: 10px 15px;
  }
}

/* HERO */
.hero {
  padding: 40px;
  text-align: center;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #666;
}

/* HERO IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  bottom: -120px;
  left: 40px;
  color: #333;
}

.hero-text h1 {
  font-size: 42px;
  margin: 0;
 /* Konturbreite und -farbe
 -webkit-text-stroke: 1px white;
  text-stroke: 1px white;*/ 
}

.hero-text p {
  font-size: 18px;
}

/* INTRO */
.intro {
  max-width: 700px;
  margin: 60px auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* GALERIE FEINER */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 20px;
}

.lauftext p {
  font-size: 18px;
  margin-left: 30px;
  margin-right: 30px;
}

.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #fff;
}