

/* ================= NAVBAR ================= */
/* navbar/navbar.css */
.navbar {
  height: 62px;         /* feste Höhe */
  min-height: 62px;     /* falls Browser Flexbox anders behandelt */
  padding: 0 24px;      /* optional horizontal */
  display: flex;
  align-items: center;  /* zentriert alles vertikal */
	font-family:comfortaa;
}
root{
font-family:comfortaa;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(250,250,250,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo {
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 20px;
	font:comfortaa;
}

.nav-links a {
  color: #1b1b1b;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
	font-family:comfortaa;
}

.nav-links a:hover {
  background: #fff;
}

.nav-spacer {
  flex: 1;
}

.nav-cta {
  background: #FE7A01;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
font-family: comfortaa;
}

/* ========== BURGER ========== */

#hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* ========== MOBILE MENU ========== */

#mobileMenu {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  border-top: 1px solid #eee;
}

#mobileMenu a {
  padding: 16px 20px;
  font-weight: 600;
  color: #1b1b1b;
  text-decoration: none;
  border-bottom: 1px solid #eee;
	font-family:comfortaa;
}

/* OPEN STATE */
#mobileMenu.open {
  display: flex;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  #hamburger {
    display: block;
	  color:#FE7A01;
  }
}
