:root {
  --bg: #0f1011;
  --fg: #f0f0f0;
  --muted: #aaa;
  --brand: #EE1B00;
  --brand-2: #457b9d;
  --radius: 0.25rem;
  --radius-btn: 0.5rem;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --font: system-ui, sans-serif;
}

*, ::after, ::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--fg);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand);
}

.container {
  width: min(100% - 2rem, 1200px);
  margin-inline: auto;
}

.container p {
  font-size: 1rem;
}

.section {
  scroll-margin-top: 3rem;
  padding: clamp(1rem, 2vw, 3rem) 0;
}

.section__header {
  text-align: left;
  margin-bottom: 2rem;
  position: relative;
}

.section__header h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 1.2rem + 2vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section__header h2::after {
  content: "";
  position: absolute;
  bottom: .15em;
  right: -1.8em;
  width: 2.2em;
  height: 2.2em;
  background: url(images/kobold.webp) no-repeat center/contain;
  pointer-events: none;
  transform: rotate(15deg);
  transform-origin: center;
}

.section__header p {
  color: var(--muted);
  max-width: 50ch;
  margin: 0;
  text-align: left;
}

.nav {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}


.nav__social {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: right;
}

.nav__social a {
  color: var(--fg);
  font-size: 1.4rem;
  transition: color .3s ease;
}

.nav__social a:hover {
  color: var(--brand);
}


#video {
  background: url(images/galerie-bg.webp) center/cover no-repeat;
  position: relative;
  z-index: 1;
}

.newsletter {
  max-width: 90vw;
  margin: 0 auto;
  text-align: center;
}

.newsletter p {
  font-size: smaller;
  line-height: normal;
  margin: .25rem 0;
}

#about {
  background: url(images/about-bg.webp) center/cover no-repeat;
  position: relative;
  z-index: 1;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: -1;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.text p {
  text-align: justify;
  hyphens: auto;
}

.container-header {
  margin: 0;
  padding: 0 1rem;
  height: 3rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 1rem;
  padding: .5rem 1rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
}

.logo img {
  height: 3rem;
  width: auto;
  display: block;
}

.logo img:hover {
  transform: scale(1.2);
}

.logo span {
  color: var(--brand);
}

.footer {
  text-align: center;
  padding: .5rem;
  font-size: .9rem;
  color: var(--muted);
  background: #1a1b1e;
}

.footer__inner {
  max-width: 90vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    justify-content: space-evenly;
  }
}

.impressum p {
  margin-bottom: 1rem;
  line-height: 1.2;
}

#impressum-bg {
  background: url(images/impressum-bg.webp) center/cover no-repeat;
  position: relative;
  z-index: 1;
}

#impressum-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: -1;
}

.impressum-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: .9rem;
  color: var(--muted);
  background: #000;
}

.impressum-header {
  background: #1a1b1e;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
}

label {
  font-size: .9em;
  margin-bottom: 3px;
}
