

body {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Hero / wichtigste Überschrift */
h1 {
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.5em;
}

/* Abschnittsüberschriften */
h2 {
  font-weight: 600;                    /* etwas klarer */
  font-size: clamp(20px, 3vw, 30px);   /* leicht größer */
  line-height: 1.2;
  letter-spacing: -0.005em;            /* leichte Nähe zu H1 */
  margin-bottom: 0.6em;
  color: #111827;                      /* technisch dunkel */
}
/* Unterüberschriften */
/* Fix: vorher war clamp(24px, -1.5vw + 32px, 22px) -> min größer als max */
h3 {
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  font-size: clamp(20px, 2.2vw, 24px);
}

/* Fliesstext & Listen */
/* Hinweis: tr/td hier drin ist ok, aber Tabellen sind oft besser separat zu stylen */
p,
ul,
li,
ol,
tr,
td {
font-family: "Open Sans", sans-serif;
  color: #282828;
  font-size: clamp(1em, 1.8vw, 1.125em); /* wieder fluid */
  font-weight: 400;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  letter-spacing: -0.3px;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: break-word;
  padding: 0 0 2% 0;
  text-wrap: pretty;
  word-break: normal;
}

/* Bildunterschrift */
p.bildunterschrift {
  font-family: Helvetica, Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 400;
  font-size: 1rem;
  color: #555;
  line-height: 1.4;

  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  overflow-wrap: break-word;
  word-break: normal;

  margin-top: 10px;
  margin-bottom: 30px;
}

.gross {
  font-weight: 400;
  font-size: clamp(16px, 2.8vw, 22px);
  line-height: 1.35;
  color: #282828;
  margin: 0;
  padding: 0 0 2% 0;
  text-wrap: balance;
  letter-spacing: -0.3px;
}

/* Lists spacing */
ul,
ol {
  margin: 0.25rem 0 0.5rem;
  padding-left: 0.75rem;
}

a {
  text-decoration: none;
}

/* Bootstrap-like nav link */
a.nav-link {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  color: #343a40;
  padding: 0.4rem 0.6rem; /* klickfreundlich */
}

a.nav-link:hover,
a.nav-link:focus {
  color: #000;
  text-decoration: none;
}

a.navbar-brand {
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em !important;
  font-weight: 600 !important;
  margin-left: 2px;
  padding-top: 10px;
}

/* Navbar */
.navbar {
  padding: 0;
  background-color: rgb(245, 245, 245);
}

/* Navigation spacing */
li.nav-item.dropdown,
.nav-item {
  margin: 2px;
  padding-left: 0.4rem;
}


/* ==========================================================================
   5) LAYOUT HELPERS (Container, Textbreite, Grid)
   ========================================================================== */

.border-left{
border-left:2px solid black;
padding-left:1%;
}
  


/* ==========================================================================
   6) IMAGES
   ========================================================================== */

/* .img-custom: Mobile First */
.img-custom {
  width: 100%;
}

/* ≥ 576px */
@media (min-width: 576px) {
  .img-custom {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
}
	


/* Qualitätsboost auf sehr großen Screens */
@media (min-width: 1400px) {
  .hero-title {
    letter-spacing: -0.02em;
  }
}

.bi{
color:black;}

.bg-brand {
  background-color: var(--brand);
}

.white {
  color: var(--white);
}

.b {
  font-weight: 600;
}

.small {
  font-size: .8rem;
}

.no-border {
  border: none !important;
}

.border-bottom {
  border-bottom: 1px gray solid !important;
}

.border-left {
  border-left: 1px gray solid;
}

.important {
  border-top: 1px solid #000;
}



p.lead {
  font-size: clamp(1.25rem, 3.2vw, 1.75rem); /* ~20px → 28px */
  line-height: 1.3;
}



.link {
  color: #0d6efd;
}

/* Mark / highlight (keine gelbe Markierung) */
.mark {
  background-color: transparent;
  display: inline;
  font-weight: 600;
  hyphens: auto;
  margin: 0;
  padding: 0;
}

/* Flex column helper */
.col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
}

/* Dropdown menu font sizing */
.dropdown-menu {
  font-size: 14px;
  color: #343a40;
}

