*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, sans-serif;
  background:#f4f4f4;
  color:#333;
}

/* HERO */

.hero{
  position:relative;
  height:500px;
  overflow:hidden;
}

.hero img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.35);

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  color:white;
  text-align:center;
}

.overlay h1{
  font-size:4rem;
  margin-bottom:10px;
}

.overlay p{
  font-size:1.2rem;
}

/* NAV */

nav{
  background:white;
  padding:20px;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid #ddd;
}

.nav-container{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.nav-container a{
  color:#333;
  text-decoration:none;
  font-weight:bold;
  transition:.3s;
}

.nav-container a:hover{
  color:#990000;
}

/* SECTIONS */

section{
  max-width:1200px;
  margin:60px auto;
  background:white;
  padding:60px;
  border-radius:10px;
}

h2{
  margin-bottom:30px;
  color:#990000;
  font-size:2.5rem;
}

/* CARDS */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:#fafafa;
  padding:30px;
  border-radius:10px;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* FOOTER */

footer{
  background:#222;
  color:white;
  text-align:center;
  padding:30px;
  margin-top:60px;
}

/* MOBILE */

@media(max-width:768px){

  .overlay h1{
    font-size:2.2rem;
  }

  section{
    padding:30px;
  }

}

.impressum{
  max-width:800px;
  margin:100px auto;
  padding:0 40px;
  text-align:left;
}

.impressum h3{
  margin-top:40px;
  margin-bottom:10px;
  font-size:18px;
}

.impressum p{
  line-height:1.8;
  font-size:16px;
}

.impressum a{
  color:#000;
  text-decoration:underline;
}

.about-text{
  max-width:550px;
  line-height:1.8;
}

.about-text p{
  margin-bottom:35px;
}

.kontakt-img{
    width: 250px;
    max-width: 100%;
    position: absolute;
    top: 1cm;
    right: 120px;
}

.ueberunsbild{
    width: 450px;
    max-width: 100%;
    position: absolute;
    top: 6cm;
    right: 30px;
}