/* Navigation Fix - Logo prominent */

.nav {
  height: 90px;
}

/* Nav-Inner: gleiche Breite wie der Rest der Seite */
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 2rem;
}

/* Logo groß und prominent */
.nav-logo {
  flex-shrink: 0;
  margin-right: 2rem;
}

.nav-logo img {
  height: 64px !important;
  width: auto !important;
  display: block;
}

.nav-logo-text {
  font-size: 26px !important;
}

/* Nav Menu gleichmäßig */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  font-size: 12.5px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* CTA Button */
.nav-cta {
  flex-shrink: 0;
  padding: 11px 20px !important;
  font-size: 13px !important;
  white-space: nowrap;
}

/* Alle Bereiche gleich breit */
.container,
.hero-inner,
.trust-bar-inner,
.footer-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

/* Burger ab 1150px */
@media(max-width:1150px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #E4E1DA;
    padding: 1rem 2rem;
    gap: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 199;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    padding: 0.85rem 0;
    border-bottom: 1px solid #E4E1DA;
    font-size: 15px;
    letter-spacing: 0;
  }
  .nav-menu a:last-child { border-bottom: none; }
  .burger { display: flex !important; }
}

@media(min-width:1151px) {
  .burger { display: none !important; }
}
