@font-face {
  font-display: swap; 
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/outfit-v15-latin-300.woff2') format('woff2');}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  min-height: 100%;
  font-family: "outfit", sans-serif;
  font-weight: 300;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  background: url("../img/bg.webp") center center / cover no-repeat;
  color: #f2f2f2;
}
.container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: clamp(20px, 5vw, 80px);
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.3)
  );
}
.content {
  grid-column: 2;
  text-align: left;
}
h1 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: clamp(15px, 2vw, 25px);
}
.subline {
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: clamp(30px, 4vw, 50px);
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4500;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.25s ease;
}
.btn:hover {
  background: #464646;
  transform: translateY(-2px);
}
/* button
------------------------------------------------------------------------------------------------- */
button.btn {
  font-family: "outfit", sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}

.subcta {
  font-size: clamp(.8rem, 1vw, .10rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-top: clamp(6px, 2vw, 12px);
}
footer {
  width: 100%;
  border-top: 1px solid #ff4500;
  text-align: center;
  padding: 7px;
  background: #464646;
  letter-spacing: 0.02em;
  color: #b3b3b3;
  line-height: 2;
}
footer a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 1rem;
}
footer a:hover {
  color: #ff4500;
}
footer a:not(:last-child)::after {
  content: "|";
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.5);
}
header {
  position: sticky;
  width: 100%;
  background-color: rgb(68, 68, 68);
  );
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr 5fr 1fr;
}
.header-content {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 clamp(20px, 5vw, 80px);
}
.header-logo img {
  width: auto;
  height: 25px;
  display: block;
}
.home-link {
  color: #fff;
  display: flex;
  align-items: center;
}
.home-link svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
	body h1 {
    font-size: clamp(2rem, 2rem, 2.3rem);
  }
  .container,
  header {
    grid-template-columns: 1fr;
  }
  .content,
  .header-content {
    grid-column: 1;
  }
  .container {
    padding: 30px 20px;
  }

  h1 {
    margin-bottom: 15px;
  }
  .subline {
    margin-bottom: 30px;
  }
  .badge-zeile {
    gap: 10px;
    justify-content: flex-start;
    }
  }
 /* rainbowbar
------------------------------------------------------------------------------------------------- */ 
 #rainbowbar {
  position: sticky;
  top: 0;
  background-color: #000;
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0) 100%,
   );
}  
.nowrap {
  white-space: nowrap;
}
.underlinelink {
  text-decoration: underline;
  text-decoration-color: #1a1a1a;
  color: #1a1a1a;
}
.underlinelink:hover {
  background-color: #1a1a1a;
  color: #f2f2f2;
}
hr {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin-top: 2rem;
  width: 100%;
  display: block;
}
.subline a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.subline a:hover {
  color: #ddd;
}

@media (max-width: 768px) {
	.btn-full {
		display: block;
		width: 100%;
		text-align: center;
		margin-top: 15px;
	}
}