html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  background-image: url('hintergrundbild.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px 0;
}


.main-button {
  padding: 15px 40px;
  font-size: 20px;
  border: none;
  border-radius: 40px;
  background-color: rgba(255,255,255,0.85);
  cursor: pointer;
  text-decoration: none;
  color: black;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s;
}

.main-button:hover {
  background-color: rgba(255,255,255,0.85);
}

.content-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background-color: rgba(255,255,255,0.85);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
  justify-items: center;
}

.gallery a img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 10px;
  border: 3px solid black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.calendar-embed {
  margin: 30px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  margin-top: 10px;
  padding: 12px;
  font-size: 16px;
  border-radius: 30px;
  background-color: rgba(255,255,255,0.85);
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: rgba(255,255,255,0.85);
}
