/* Fritz */
:root {
  /* --orange: #ED7D4D; */
  --orange: #DE662E;
  --grau: #65767A;
  --dunkelgrau: #495456;
  --hellgrau: #d2dbdd;

  --obenabstand: 140px;
  --contentabstand: 150px;
}

* {
  margin: 0px;
  padding: 0px;
}

html {
  scroll-behavior: smooth;
}


h1,
h2,
h3,
h4 {
  color: var(--grau);
  line-height: 1.2em;
  margin-bottom: 20px;
  margin-top: 15px;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
}

h2 {
  font-size: 32px;
  text-align: center;
}

.anchor-target {
  scroll-margin-top: 170px;
}

.flexcenter {

  display: none !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 48px;
}

.flexcenter h2 {
  font-size: 21px !important;
}

h3 {
  font-size: 28px;
  margin: 5px auto;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* General */

body {
  font-family: 'Mukta', sans-serif;
  /* font-family:  sans-serif; */
  font-size: 18px;
  font-weight: 400;
  color: #464646;
  color: #000;
  background-color: var(--dunkelgrau);

  line-height: 1.3em;
}

header {
  background: white;
  padding: 0px;
  padding-right: 20px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding-left: 58px;
}

p {
  hyphens: auto;
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  font-size: 20px;
  padding-right: 40px;
  height: 86px;
  left: 20px;
  right: 20px;
  width: 100%;
}



.logo {
  font-weight: bold;
  background: white;
  padding-top: 2px;
  position: relative;
  right: 46px;
  animation: 1500ms ease-out 0s 1 slideInFromLeft;

}


.logo img {}

.navbar .logo:hover {
  background-color: var(--hellgrau);
}

/* normales menü, nicht mobil */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1px;
  margin-top: 10px;
  z-index: 9999;

}

.nav-links a {
  color: var(--orange);
  /* color: white; */
  text-decoration: none;
}

.nav-links li {
  margin-bottom: 5px;
  margin-left: 0px;
  width: 145px;
  z-index: 9999;

  /* border: 1px solid red;   */
}


.nav-links a:hover {
  /* border-bottom: 2px solid white; */
  text-decoration: none;
  color: var(--grau);
}

.menubold {
  /* border-bottom: 2px solid var(--orange); */
  /* damit die Menübreite sich nicht ändert */
  /* transform: scale(1.1); */
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}


.u1logo {
  height: 1em;
}

.hidefooter {
  display: inline-block;
}

/* Links allgemein */
a,
a:visited {
  color: var(--orange);
}

a:hover {
  text-decoration: underline;
}


/* innere Navi  nur mobil */
.flex-item-breit {
  flex: 1 1 100%;
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0px 6px 5px #ccc;
  position: fixed;
  top: 86px;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 1;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.3);

}


.innernav-links {
  align-items: center;
  justify-content: center;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  line-height: 1.0em;
}

.innernav-links a {
  color: var(--dunkelgrau);
  text-decoration: none;
  font-size: 16px;
  margin: 3px 8px;
  z-index: 1;

}

.innernav-links a:hover {
  text-decoration: underline;
  color: var(--orange);
}



em {
  color: var(--orange);
  font-weight: normal;
}

/* Burger-Button */
.burger {
  display: none;
  background: none;
  color: var(--orange);
  font-size: 2.5rem;
  border: none;
  cursor: pointer;
  z-index: 9999;
}




.content li {
  /* margin: 0; */
  padding: 0px 10px 6px 0px;
  /* list-style: none;
  background-image: url("../bilder/Paare-Logo-Spiegel-Kreis.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 19px; */
}

.content ul {
  padding-inline-start: 21px;
}

/* Inhalt */
.content {
  padding: 0px;
  background: #ddd;
  background: white;
  margin-bottom: 110px;
  /* margin-top: 130px; */
  padding-top: var(--contentabstand);

}

/* Flexbox-Abschnitt */
.flex-section {
  /* display: flex; */
  display: block;
  /* gap: 2rem; */
  flex-wrap: nowrap;
  margin: 0px 0px;
  flex-flow: column;
}

/* Einzelelemente */
.flex-item {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px 5px;
  /* margin: 0px 0px 20px 0px; */
  margin: 10px auto;
  flex-direction: column;
  max-width: 900px;
  /* text-align: center; */
  /* align-self: center; */
  align-self: flex-start;
  padding: 10px 40px;

}

/* .flex-section .flex-item:nth-child(odd) {
  padding-right: 20px;
}

.flex-section .flex-item:nth-child(even) {
  padding-left: 11px;
} */


/* Optional: Standard-Zweispaltig */
.flex-item:not(.einspaltig) {
  /* flex-direction: row; */
}

.flex-item.einspaltig {
  /* flex-direction: column;
  max-width: 1000px;
   text-align: center; 
   align-self: center; 
  align-self: flex-start;
  padding: 10px 40px; */


}

.image-container {
  flex: 1 1 300px;
  text-align: center;
  align-self: center;
  /* das selbe wie flex-item */
  padding: 20px 20px;
  margin: 20px 20px;

}

.image-container img {
  /* max-width: 100%; */
  max-width: 400px;
  height: auto;
  border: 2px solid #aaa;
  border-radius: 8px;
  box-shadow: 6px 6px 5px #aaa;
}

/* Footer */
footer {
  /* background: #222; */
  color: white;
  text-align: center;
  padding: 0em;
  margin-top: 0.8em;
  /* position: fixed; */
  bottom: 0px;
  width: 100%;
}

footer p {
  text-align: center;
}

.image-text-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}



.text-container {
  flex: 1 1 300px;
}

.noshadow {
  border: none !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.spiegellogo {
  position: relative;
  bottom: -66px;
  left: 0px;
}

.spiegellogo img {
  height: 120px;
}




/* Responsive Navigation */
@media (max-width: 987px) {

  .navbar {
    left: 0px;
    right: 0px;
    padding-right: 0px;
    margin-right: -10px;
    width: 100%;
  }

  .flexcenter {
    display: flex !important;
  }

  .image-container img {
    /* max-width: 100%; */
    max-width: 300px;
    height: auto;
    border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 6px 6px 5px #aaa;
  }

  .hidefooter {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    /* width: 100%; */
    display: none;
    margin-top: 1rem;
    background-color: var(--hellgrau);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0px;
    z-index: 9999;

  }

  .nav-links li {
    margin-top: 7px;
    margin-bottom: 7px;
    z-index: 9999;

  }

  .nav-links.active {
    display: flex;
    position: fixed;
    top: var(--obenabstand);
    right: 0px;
    z-index: 9999;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.5);
    /* leicht transparent */
  }

  .flex-item {
    padding: 5px 10px;
    margin: 0px 0px;
    /* border: 2px solid #aaa;
    border-radius: 8px;
    box-shadow: 0px 0px 0px #aaa; */
  }


  .flex-item-breit {
    display: block;
  }

  /* .spiegellogo {
    bottom: -66px;
  } */





}

@media (max-width: 693px) {
  .anchor-target {
    scroll-margin-top: 210px;
  }

  .content {
    /* padding-top: 170px; */
    /* 130 normal */
}

}