/* default.css */

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* Hero-Bereich */
.header {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url('img/kanzlei22_homescreen.jpg') center/cover no-repeat;
  margin-bottom: 2rem;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.header h1, .header h2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.header h1 {
  top: 15%;
  font-size: 6rem;
  line-height: 6rem;
}

.header h2 {
  bottom: 10%;
  font-size: 3rem;
  font-weight: normal;
}

/* Allgemeine Sections */
section {
  padding: 2em 1em;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

/* Intro-Bereich */
.intro {
  background: #ffffff;
  text-align: center;
}
.intro p {
  text-align: justify;
}

/* Info-Block */
.info {
  background: #ffffff;
  text-align: center;
}
.info p {
  margin-bottom: 2em;
  text-align: justify;
}

/* Call-to-Action Button */
.btn-primary {
  display: inline-block;
  padding: 0.8em 2em;
  background-color: #005a9c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #004377;
}

/* Footer */
footer {
  text-align: center;
  padding: 2em 1em;
  background-color: #eaeaea;
  font-size: 0.9em;
  color: #555;
}

footer a {
  color: #555;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
    top: 30%;
  }

  .header h2 {
    font-size: 1.2rem;
    top: 45%;
  }

  .btn-primary {
    width: 100%;
    padding: 1em;
  }
}


/* Impressum */
.imp p, .imp h2, .imp ul{
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
    font-size: 1.1em;
}

ul{
	list-style-type: disc;
}
li{
	margin-left: 15px;
}

