#mobileNav {
  display: none !important;
}

/* ========================================== */
/* 📱 MOBILE STYLES                            */
/* ========================================== */
@media (max-width: 900px) {

  /* 🔹 Desktop-Header vollständig ausblenden */
  header {
    display: none !important;
  }

  /* 🔹 Mobile Navigation sichtbar */
  #mobileNav {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 4000;
  }

  /* ================================ */
  /* 📌 Mobile Kopfzeile (Header-Balken) */
  /* ================================ */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    color: white;
    background: #000;
    border-bottom: 1px solid #222;
  }

  /* 📍 Menü-Button (Hamburger) */
  #mobileMenuBtn {
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  #mobileMenuBtn:hover {
    color: #ff0050;
    transform: scale(1.1);
  }

  /* 📍 Logo-Schriftzug */
  .mobile-logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
  }

  /* 📍 Login-Icon (rechts) */
  .login-icon a {
    color: white;
    font-size: 22px;
    transition: color 0.3s ease;
  }

  .login-icon a:hover {
    color: #ff0050;
  }

  /* ================================ */
  /* 📱 MOBILE MENÜ (Dropdown-Stil)   */
  /* ================================ */
  .mobile-menu {
    background: #111;
    border-top: 1px solid #222;
    display: none; /* standardmäßig versteckt */
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    animation: dropdownFade 0.3s ease forwards;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  /* ✅ Sichtbar, wenn .active vorhanden */
  .mobile-menu.active {
    display: flex;
  }

  /* 📋 Menü-Links */
  .mobile-menu li {
    list-style: none;
    text-align: center;
    padding: 12px 0;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .mobile-menu a:hover {
    color: #ff0050;
    transform: scale(1.05);
  }

  /* ================================ */
  /* 🎞️ Einblend-Animation            */
  /* ================================ */
  @keyframes dropdownFade {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ================================ */
  /* 🌑 Kein Overlay nötig             */
  /* ================================ */
  .mobile-overlay {
    display: none;
  }

  /* ================================ */
  /* 🚫 Scroll-Verhalten bei offenem Menü */
  /* ================================ */
  body.menu-open {
    overflow: hidden;
  }
}
