/* Farben

#b08f2f Gold
#9e0a2e Rot

*/


/* Allgemein */

html {
  height: 100%;
}

body {
	background: #000000;
	color: #ffffff;
  font-family: acumin-variable, sans-serif; 
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  line-height: 1.2;
  font-size: 1.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header */

.header {
  background: #ffffff;
  border-top: 14px solid #b08f2f;
}

.centered {
  text-align: center;
}

.logo {
  padding: 7rem 0 7rem 0;
}

.logo img {
  max-width: 380px;
}

/* Titel Trenner */

.title-separation {
   position: relative;
}

.title-separation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, 
    white 0%, 
    white 50%, 
    black 50%, 
    black 100%
  );
  z-index: -1;
}

.title-box {
  background: #b08f2f;
  display: inline-block;
  padding: 0.8rem 1rem 0.8rem 1rem;
  margin: 0 1rem 0 1rem;
}

.title-box p {
  font-family: benton-modern-display, serif; 
  color: #000000;
  font-weight: 400;
  line-height: 1;
  font-size: 2.8rem;
  margin: 0;
  padding: 0;
}

/* Content */

.content {
  margin-top: 8rem;
}

.content h1 {
  font-family: benton-modern-display, serif; 
  color: #ffffff;
  font-weight: 400;
  line-height: 1.2;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.content h2,
.content h3,
.content h4 {
  font-family: acumin-variable, sans-serif; 
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 700;
  color: #ffffff;
  line-height: 1.2;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.content a {
  color: #b08f2f;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.content a:hover,
.content a:focus {
  color: #ffffff;
}

/* Footer */

.footer {
  border-bottom: 14px solid #b08f2f;
  margin-top: auto;
}

.footer .menu {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  margin-top: 5rem;
}

.footer .menu a {
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  transition: color 0.25s ease-in-out;
}

.footer .menu a:hover,
.footer .menu a:focus,
.footer .menu a.active {
  color: #b08f2f;
  background: transparent;
}

.footer .menu li  {
  border-right: 1px solid #ffffff;
  padding: 0 0.4rem;
}

.footer .menu li:last-child  {
  border-right: unset;
}