/* ===============================
   MODERN CLEAN FULL NAVBAR
   =============================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;

  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.05);

  transition: all 0.3s ease;
  z-index: 1000;
}

/* Scroll Zustand */
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}


/* Container */
.nav-inner {
  max-width: 1350px;
  margin: 0 auto;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 3rem;
}

/* ===============================
   LOGO
   =============================== */

.logo img {
  height: 60px;   /* größer */
  width: auto;
  display: block;
}

/* ===============================
   NAV LINKS
   =============================== */

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.75;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  opacity: 1;
}

/* ===============================
   CTA BUTTON
   =============================== */

.nav-cta {
  background: #ff6a00;
  color: #111;
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* ===============================
   BURGER
   =============================== */

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: white;
  transition: 0.3s;
}

/* ===============================
   MOBILE
   =============================== */

@media (max-width: 992px) {

  .nav-inner {
    padding: 0 2rem;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;

    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);

    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
  }

  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .burger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .logo {
    margin-left: -0.75rem; 
  }


}

.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

@media (max-width: 768px) {

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 0;
  }

  /* Kontakt im Burger wie normale Links */
  .mobile-contact {
    background: none;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    font-weight: 500;
    display: inline-block;
  }

}