/* Grundlegendes CSS für die gesamte Seite */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  overflow: hidden; /* Verhindert Scrollen */
}

/* Layout für das Coverbild */
.cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 2vw;
}

.cover-text {
  position: fixed;
  top: 10%;
  left: 10%;	
  color: white;
  text-align: left;
  z-index: 1;
}

.cover-text h1 {
  font-size: 3rem;
}

/* Styling für den fixierten Footer */

/* Styling für den fixierten Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #484848;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content {
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 320px;
  height: 80px;
  margin-right: 60px;
}

.address-block p {
  margin: 5px 0;
}

.address-block p strong {
	font-size: 1.2rem;
}

/* Responsive Anpassungen für mobile Geräte */
@media (max-width: 768px) {
  .cover-text h1 {
    font-size: 1.2rem; /* Kleinere Schriftgröße für das Cover-Text */
  }
  
    .cover img {
    width: 100%;
    height: auto; /* Passt die Höhe an das Bildverhältnis an */
  }

  .address-block {
	  margin: 0 auto;
  }

  footer {
	top: 45vh;
    text-align: center;
    display: block;
  }
  
 .footer-logo {
	 margin: 30px auto;
}

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

}
