@charset "UTF-8";
/* CSS Document */
:root {
  --ui-bg: #f3f3f3;
}
 * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: system-ui, sans-serif; }
body {
  background-color: #e0e0e0;
}
.nav-header a,
.nav-footer a {
  font-family: 'Saira', system-ui, sans-serif;
  font-size: 1rem;     /* 👈 kleiner, elegant */
  font-weight: 400;
  color: #00335E;
  letter-spacing: 0.02em; /* leicht editorial */
}
header {
  border-bottom: none !important;
background-color: #bbbbbb;
}

footer {
  border-top: none !important;
	  background-color: #bbbbbb;
  z-index: 1000;
}
body {
  font-family: 'Saira', system-ui, sans-serif;
  color: #00335E;
}
    /* HEADER */
.header-inner {
  padding-top: 0px;      /* 20px − 15px */
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

    .header-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

.header-inner {
  height: 50px;
  display: flex;
  align-items: center;   /* 👈 DAS ist der Schlüssel */
}
header ul {
  margin-top: 0;
  margin-bottom: 0;
}


.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;        /* 🔑 entfernt Baseline-Versatz */
}


    .nav-header {
      display: flex;
      gap: 20px;
		z-index: 10000;
    }




    .header-burger {
      display: none;
      background: none;
      border: 0;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .header-burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: #00335E;
      margin: 5px 0;
    }
.nav-header ul,
.nav-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-header ul {
  display: flex;
  flex-direction: row;
  gap: 20px;

  list-style: none;
  margin: 0;
  padding: 0;
}
    /* FOOTER */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  padding-bottom: 10px;  
  padding-left: 10px;
  padding-right: 10px;
}
.nav-footer a {
  font-size: 1rem;
  line-height: 1;         
  display: inline-block;
}

.footer-logo img {
  display: block;
  height: 34px;   
  width: auto;
}
.footer-logo {
  position: relative;
  top: 6px;
}

    .footer-burger {
      display: none;
      background: none;
      border: 0;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .footer-burger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: #00335E;
      margin: 5px 0;
    }

.nav-footer {
  display: flex;
  justify-content: flex-end;
	padding-right: 10px;
}

.nav-footer ul {
  display: flex;           
  flex-direction: row;     
  gap: 20px;

  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-header a,
.nav-footer a {
  color: inherit;          /* gleiche Farbe wie Text */
  text-decoration: none;   /* keine Unterstreichung */
  cursor: default;         /* fühlt sich wie Text an */
}
   																								 /* MOBILE ONLY */
    @media (max-width: 600px) {

       .header-burger,
  .footer-burger {
    display: block;
  }

  /* HEADER */
  .nav-header {
    display: none;
    position: absolute;
    right: 20px;
    top: 100%;
    margin-top: 10px;

    flex-direction: column;
    align-items: flex-end;
    background: #fff;
	  padding: 14px 18px;
  border-radius: 10px;

  box-shadow:
    0 14px 35px rgba(0,0,0,0.16),
    0 3px 8px rgba(0,0,0,0.08);
  }

  .nav-header.open {
    display: flex;
   position: fixed;

  top: 50px;

  left: 0;

  width: 100%;

  background: #fafafa;

  z-index: 9999;

}
.nav-header ul {
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
  /* FOOTER */
   .nav-footer {
    display: none;
    position: absolute;
    right: 20px;
    bottom: 100%;
    margin-bottom: 10px;

    background: #fff;
  }

  .nav-footer.open {
    display: block;
  }
    }
@media (min-width: 601px) {

  .nav-header {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 20px;
  }

  .header-burger {
    display: none;
  }

  .footer-burger {
    display: none !important;
  
}

  .nav-footer ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end;
    gap: 20px;

    list-style: none;
    margin: 0;
    padding: 0;
  }

}
@media (hover: hover) and (pointer: fine) {

  .nav-header a:hover,
  .nav-footer a:hover {
    color: #00335E; /* deine Akzentfarbe */
  }

}
.nav-header a,
.nav-footer a {
  color: #00335E;
}
@media (prefers-color-scheme: dark) {

  .nav-header a,
  .nav-footer a {
    color: #00335E !important;
  }

}