:root {
  /* Hintergrundfarben */
  --bg: #0f172a;       /* dunkler Hintergrund */
  --card: #1e293b;     /* etwas hellere Card für Kontrast */
  --primary: #3b82f6;  /* Akzentfarbe */

  /* Textfarben */
  --text: #dadde2;     

  /* Border / Linien */
  --border: #374151;   /* dezente Linienfarbe */
  
  /* Abstände */
  --spacing: 0.5rem;
  --spacing-l: 1rem;
  --spacing-xl: 1.5rem
}

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

html {
  font-size: 100%;
}

body {
	 font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  
}

header {
  background: var(--bg);
  padding: var(--spacing-xl) var(--spacing-l);  
  font-weight: 600;
}

header h1 {
text-align: center;
}

main {
  flex: 1;
  padding: var(--spacing-xl);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* letzte Zeile zentriert */
  gap: var(--spacing-xl);
  margin-bottom: 3rem;
}

.card {
  flex: 1 1 250px; 
  background: var(--card);
  padding: var(--spacing-l);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.card img {width: 60px; height: 60px}

/* FAQ Styles */
.faq {
  max-width: 700px;
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.3s, border-color 0.3s;
padding: var(--spacing-l);
}

summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem
}

/* Standard-Pfeil entfernen */
summary::-webkit-details-marker {
  display: none;
}

/* Custom Arrow */
summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-left: 1rem;
}

/* Pfeil drehen wenn offen */
details[open] summary::after {
  transform: rotate(225deg);
}

/* Inhalt einfaches Padding, keine Animation */
details > *:not(summary) {
 /* padding: 0 1.25rem 1.2rem 1.25rem;*/
    max-height: 0;       /* zu Beginn geschlossen */
  opacity: 0;          /* unsichtbar */
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  margin:  var(--spacing-l) 0 0 0
}

/* Wenn Details geöffnet sind */
details[open] > *:not(summary) {
  max-height: 500px;   /* groß genug für Inhalt */
  opacity: 1;
}

footer, .f-bottom {
  color: var(--text);
  text-align: center;
  padding: 1rem;
}

footer p {
margin-top: var(--spacing)
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

h1, h2, h3 {
  margin-bottom: var(--spacing-l);
}

h2 {font-size: 1.2rem}

a {color: orange; text-decoration: none }

p {margin-bottom: var(--spacing)}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*Menu*/

@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-250px, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-250px, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-250px, 0, 0);
    visibility: hidden;
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-250px, 0, 0);
    visibility: hidden;
  }
}
* {
  box-sizing: border-box;
}

.overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

body.open .overlay {
  opacity: 1;
  pointer-events: auto;
}


.mainmenu {
  position: absolute;
  z-index: 11;
}
.mainmenu:not(.open) {
  visibility: hidden;
}
.mainmenu li {
  color: orange;
  list-style-type: none;
  padding: 10px;
  text-align: left;
  transform: translateX(-250px);
}
.mainmenu li:not(.open) {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slideOutLeft;
          animation-name: slideOutLeft;
}
.mainmenu li:first-child {
  padding-top: 120px;
}
.mainmenu.open {
  visibility: visible;
}
.mainmenu.open li {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

.mainmenu a {
  background: transparent;
  border-left: rgba(68, 68, 68, 0) solid 2px;
  color: orange;

  font-size: 24px;
  font-weight: 300;
  margin-left: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.mainmenu a:hover, .mainmenu a--active {
  border-left: orange solid 2px;
  padding-left: 30px;
}

.b-menu {
  background: var(--bg);
  border: var(--bg) solid 2px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 60px;
  padding-left: 15.5px;
  padding-top: 17.5px;
  position: relative;
  transition: all 0.4s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 60px;
  z-index: 12;
}
.b-menu:hover {
  border: orange solid 2px;
}

.b-slice {
  background: var(--text);
  position: relative;
  transition: all 0.4s ease;
}
.b-slice--top {
  height: 2px;
  top: 0;
  width: 25px;
}
.b-slice--mid {
  height: 2px;
  top: 8px;
  width: 25px;
}
.b-slice--bottom {
  height: 2px;
  top: 16px;
  width: 25px;
}

.b-brand {
  color: transparent;
  font-size: 24px;
  font-weight: 300;
  margin-left: 30px;
  position: relative;
  text-decoration: none;
  top: -21.4285714286px;
  transition: all 0.4s ease;
  z-index: 13;
}

.b-container {
  height: 60px;

}
.b-container:hover:not(.open) .bun-top,
.b-container:hover:not(.open) .bun-mid,
.b-container:hover:not(.open) .bun-bottom {
  background: white;
}
.b-container.open .b-main {
  border: orange solid 2px;
}
.b-container.open .b-slice--top {
  background: orange;
  top: 9px;
  transform: rotate(45deg);
}
.b-container.open .b-slice--mid {
  opacity: 0;
}
.b-container.open .b-slice--bottom {
  background: orange;
  top: 5px;
  transform: rotate(-45deg);
}
.b-container.open .b-brand {
  color: orange;
}


/*mozilo*/

.leftcontentimage {float: left; margin-right: var(--spacing-l)}
.rightcontentimage {float: right; margin-left: var(--spacing-l)}

.listitem {
  list-style-position: inside
}

.alignright {
  text-align: right
}

.alignleft {
  text-align: left
}

.aligncenter {
  text-align: center
}

table.contenttable {
  width: 100%;
  text-align: center;
  padding: var(--spacing) 0
}

th.contenttable {
  background: var(--card);
  color: var(--text);
  border-right: 1px solid;
  padding: 7px
}

th.contenttable:last-child {
  border-right: none
}

td {
  padding: 7px;
  border-bottom: 1px solid var(--card)
}
@media only screen and (min-width: 48rem) {
	
	header {
display: initial;	
	}
.card {
 max-width: 320px;
}

.b-container {
  left: 30px;
  position: absolute;
  top: 30px;
}
}