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

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

header {
  background: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: bold;
  font-size: 1.2em;
}

nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 1em;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
}

.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
  margin-left: 1em;
}

.hero {
  background-image: url('bilder/Tu1.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2em;
  border-radius: 8px;
}

.hero h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

.btn-primary {
  background: #28a745;
  color: white;
  padding: 0.7em 1.5em;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}


section {
  padding: 4em 2em;
  max-width: 1000px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

input, textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: black;
  color: white;
  padding: 0.8em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  background: #f5f5f5;
  padding: 2em;
  text-align: center;
}

/* Mobilansicht */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
    border-top: 1px solid #ddd;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
  margin-top: 2em;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.map {
  margin-top: 3em;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 400px;
}

input, select, button {
  padding: 0.6em;
  font-size: 1em;
}

button {
  background: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background: #218838;
}