
:root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
}


p {
  font-size: 16px;
  margin: 0 0 1em;
}

.site-header,
 .site-header .nav a {
  font-size: 14px;
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;
}




  .header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* --- Content --- */
.content {
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
}

.content h1 {
   font-size: clamp(43px, 5vw, 58px);
  font-weight: 400;
  margin-top: 12px;
}

.content h2 {
  font-size: 28px;
   font-weight: 400;
}

.content p {
  margin: 0 0 12px;
}

.content img {
  max-width: 650px;
  max-height: 206px;
  width: 100%;
  height: auto;
   display: block;
  margin: 24px auto;
}


.nav {
  margin: 0 auto; 
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.nav a {
  display: inline-block;
  padding: 8px 10px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  opacity: 0.9;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  outline: none;
}








.nav a {
  border-bottom: 2px solid transparent;
}




.nav a.active,
.nav a[aria-current="page"] {
  color: #000;
  font-weight: 700;
  text-decoration: none;
  opacity: 1;
}

/* --- Burger toggle --- */
/* Desktop: versteckt */
.nav-toggle {
  display: none;
}
/* Mobile: ab 900px */
@media (max-width: 900px) {

  .header-inner {
    justify-content: flex-end;
    
    position: relative;
    z-index: 1001;
  }

  /* Burger Button */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    font: inherit;
    padding: 0.5rem 0.75rem;
    background: none;
    

    border: none;
    cursor: pointer;


    font-size: 20px;
    z-index: 1002;
  }

  /* FULLSCREEN OVERLAY  für Mobile */
  .nav {
    position: fixed;
    inset: 0;       
    
    

    display: none;
    background: #fff;             
    z-index: 1000;
  }

  .nav[data-open="true"] {
    display: flex;

    align-items: center;
    justify-content: center;
  }


  .nav ul 
  { 
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
    padding: 0; 
    margin: 0;
  }

  .nav a {
    font-size: 28px;
    font-weight: 400; 
    text-decoration: none;
    opacity: 0.9;
  }

  .nav a.active,
  .nav a[aria-current="page"] {
    font-weight: 700;
     opacity: 1; 
  }
}

/* --- Footer fußiger fuß --- */
.site-footer {
    border-top: 1px solid #ddd; 
  margin-top: 32px;
  padding: 12px 0;
}
