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

body, html {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: #fff;
}


.landing-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Hintergrundbild mit Animation */
.background-image {
  background-image: url('../images/background.jpg');
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
  animation: zoom 30s infinite alternate;
  z-index: 1;
}

@keyframes zoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Overlay für Text */
.overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Familienname prominent */
.family-name {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Einführungstext */
.intro {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Login Button */
.login-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #f2a900;
  color: #222;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: transform 0.3s, background-color 0.3s;
}

.login-button:hover {
  background-color: #ffbf47;
  transform: translateY(-3px);
}

/* Kontaktbereich */
.contact {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* Bild für die Email */
.email-image {
  display: block;
  margin: 0.5rem auto 0 auto;
  height: 30px;
}
