/* =========================================================================
   Knittel Bau – Basistypografie
   1:1 aus der bisherigen Seite (Boston) übernommen, auf Bootstrap 5 aufgesetzt
   (kein html{font-size:62.5%}, kein BS3-Grid – das liefert BS5).
   ========================================================================= */

:root {
  --kb-accent: #e33411;
  --kb-accent-dark: #820000;
  --kb-text: #333333;
  --kb-grey-row: #f8f8f8;
  --kb-dark-row: #262626;
  --kb-navbar: #262626;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 1.428571429;
  color: var(--kb-text);
  background-color: #fff;
}

a {
  color: var(--kb-accent);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--kb-accent-dark);
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Titillium Web", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 5px;
  color: inherit;
}

h1,
.h1 {
  font-size: 72px;
}
h2,
.h2 {
  font-size: 60px;
}
h3,
.h3 {
  font-size: 48px;
}
h4,
.h4 {
  font-size: 36px;
}
h5,
.h5 {
  font-size: 24px;
}
h6,
.h6 {
  font-size: 18px;
}

p {
  line-height: 24px;
  margin-bottom: 20px;
}
strong {
  font-weight: 600;
}

/* Highlight-Textauszeichnungen (Boston [highlight]) */
.color-font {
  color: var(--kb-accent);
}
.light {
  font-weight: 300;
}
.curly {
  font-family: "Gloria Hallelujah", cursive;
}
.color-white {
  color: #fff;
}
.color-black {
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

/* Responsive Verkleinerung der sehr großen Überschriften (Boston-Media-Queries) */
@media (max-width: 1199.98px) {
  h1,
  .h1 {
    font-size: 56px;
  }
  h2,
  .h2 {
    font-size: 46px;
  }
  h3,
  .h3 {
    font-size: 38px;
  }
  h4,
  .h4 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 38px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
  h3,
  .h3 {
    font-size: 26px;
  }
  h4,
  .h4 {
    font-size: 22px;
  }
  h5,
  .h5 {
    font-size: 20px;
  }
}
