/* Bootstrap Primary global auf Schwarz setzen */
:root {
  --bs-primary: #000;
  --bs-primary-rgb: 0, 0, 0;

  /* Landing-Theme */
  --bg:#0b0b0b;
  --fg:#ffffff;
  --accent:#ffffff;
  --maxw:1200px;
  --pad:clamp(1rem, 4vw, 3rem);
  --radius:16px;
  --shadow:0 10px 30px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color: black;
  line-height: 1.5;
  padding-top: 60px;
}

/* Brand Buttons */
.btn-ryt-black {
  background-color: #000;
  color: #fff !important; ;
  border-radius: 6px;
  padding: 0.8rem 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-ryt-black:hover {
  background-color: #fff;
  color: #000 !important; ;
  border: 2px solid #000;
}

.btn-ryt-white {
  background-color: #fff;
  color: #000 !important; ;
  border: 2px solid #000;
  border-radius: 6px ;
  padding: 0.8rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-ryt-white:hover {
  background-color: #000;
  color: #fff !important; ;
}
.btn-group .btn-ryt-black,
.btn-group .btn-ryt-white {
  flex: 1 1 auto;
  border-radius: 0;          /* verhindert Lücken zwischen Buttons */
  padding: 0.6rem 1rem;      /* etwas kompakter */
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Layout */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--pad);
}
.feature {
  display: flex;
  align-items: stretch;
  min-height: 400px;
  max-width: 2000px;
  margin-inline: auto;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #121212;
  color: white;
  margin-block: clamp(1rem, 4vw, 2rem);
  position: relative;
  isolation: isolate;
}
.feature .content {
  flex: 1;
  padding: clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;

  position: relative;
  z-index: 2; /* Text über dem Bild */
}
.feature h2 { margin: 0; font-size: clamp(1.4rem, 3.2vw, 2rem); letter-spacing: .3px; }
.feature p  { margin: 0; opacity: .9; }

/* Bildspalte – jetzt mit <img>, kein inline background-image mehr */
.media {
  flex: 1;
  min-height: 320px;
  position: relative;
  z-index: 1;
  background: #222;
  overflow: hidden;
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Schräge Kanten via clip-path */
.media.angle-right { /* Bild rechts – Schräge links */
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}
.media.angle-left {  /* Bild links – Schräge rechts */
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

/* Responsive */
@media (max-width: 900px) {
  .feature { flex-direction: column; }
  .media   { clip-path: none; min-height: 220px; }
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
  z-index: 10; /* falls nötig, damit er über Inhalt liegt */
}

.site-footer a {
  text-decoration: underline;
  color: inherit;
}
.page-end-space {
  height: 60px; /* oder exakt wie dein Footer */
}