/* === BASIS-TYPOGRAFIE === */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/*
body {
  font-family: Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Barlow+Semi+Condensed:wght@600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
}

*/


img.nur-desktop {
  display: block !important;
}

img.nicht-desktop {
  display: none !important;
}

@media (max-width: 768px) {
  img.nur-desktop {
    display: none !important;
  }
  img.nicht-desktop {
    display: block !important;
  }
}

img.center {
  margin-left: auto;
  margin-right: auto;
}


/* === LOGO === */
.kampfkunzen-navbar-logo-text,
.logo-text,
.navbar-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* === NAVIGATION === */
.navbar-text,
.nav-link {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


/* === HEADLINES UND TEXTE === */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.2;
}

p, li, dl, dt, dd {
  font-weight: 400;
}


/* === CTA BUTTONS === */
.cta-button {
  font-weight: 600;
  text-transform: uppercase;
}

.awrk-todo {

  display: none;

  font-size: smaller;
  color: crimson;
}

.nowrap {
  white-space: nowrap;
}

.indent {
  margin-left: 3rem;
  margin-right: 3rem;
}
@media (max-width: 768px) {
  .indent {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}
@media (max-width: 576px) {
  .indent {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.bild-mit-overlay,
.bild-mit-overlay-hover {
  position: relative;
  display: block;
  text-align: center;
  max-width: 1000px;
}


.bild-mit-overlay img,
.bild-mit-overlay-hover img {
  display: block;
  width: 100%;
  height: auto;
}

.bild-overlay-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.bild-mit-overlay-hover .bild-overlay-text {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Sichtbar beim Hover */
.bild-mit-overlay-hover:hover .bild-overlay-text {
  opacity: 1;
}

.link-hover-underline:hover {
  text-decoration: underline!important;
}