* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif, Arial;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  /* text-align: justify; */
}

body {
  line-height: 1.6;
  color: #333;
  background: #f4f4f4;
}

a { text-decoration: none; color: inherit; }

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #111;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}

.email-btn {
  background: #B11D1E;
  padding: 8px 15px;
  border-radius: 25px;
  color: white;
  transition: 0.3s;
  font-size: 14px;
}

.email-btn:hover {
  background: #777;
}

/* NAVIGATION */
nav {
  background: #222;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}

nav a {
  padding: 12px 18px;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  background: #B11D1E;
  border-radius: 2px;
}

/* HERO SLIDER (FADE) */
.slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #111;
  background: rgba(255,255,255,0.6);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
}

/* CONTENT */
.container {
  padding: 40px 10px;
  max-width: 100%;
  margin: auto;
  text-align: center;
  font-size: 20px;
  color: #B11D1E;
}

h2 {
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 4px;
  margin-top: 40px;
  position:fixed;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.8);
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background: #ff5722;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #e64a19;
}

/* EIGENE */
.logobild {
  float: left;
  padding-right: 20px;
  padding-bottom: 5px;
}
	
.eingabe {
  margin-top: 5px;
  padding: 8px;
  border: 1px solid #7EA2E3;
  background-color: #B4CDF7;
  opacity:0.5;
  width: 100%;
}

.news-einzug {
  padding-left: 35px;
  padding-right: 20px;
}
	
.newsrand {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  background: rgba(255,255,255,0.9);
}
	
.startpunkt {
  color: #B11D1E;
  /* text-shadow: #000 1px 0 2px; */
}

.einzug {
  margin-left: 40px;
}

.blocksatz-no {
  text-align: left;
}

.btn {
  padding:10px 20px;
  border:none;
  background:#B11D1E;
  color:#FFF;
  font-size: 14px;
  cursor:pointer;
  border-radius:5px;
  transition:0.3s;
}

.btn:hover {background:#777;}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  nav a {
    padding: 10px;
  }

  .hero-text {
    width: 90%;
  }

}