.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 0.5px solid rgba(0,0,0,0.1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.navbar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  height: 50px;
  width: auto;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  font-family: var(--font-main);
  font-size: 1rem;
  color: #4a5568;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.navbar-menu li a:hover {
  color: #17568c;
}

.navbar-menu li.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  opacity: 0.6;
}

/* Dropdown – Desktop: Hover */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 0.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-width: 220px;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.dropdown li a {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #4a5568;
  display: block;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: #f7fafc;
  color: #17568c;
}

/* CTA Button */
.navbar-cta {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: #c9a55c;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar-cta:hover {
  background: #a68644;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #17568c;
}

/* ========== MOBILE ========== */
@media (max-width: 1024px) {
  .navbar-toggle {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    gap: 1rem;
    border-bottom: 0.5px solid rgba(0,0,0,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  }

  .navbar-menu.open {
    display: flex;
  }

  /* Mobile: Dropdown nur per Klick */
  .has-dropdown:hover .dropdown {
    display: none;
  }

  .has-dropdown .dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .has-dropdown .dropdown.open {
    display: block;
  }
}