/* =========================
   CLEANED & TOUCH-FIRST CSS
   DefendIT Kft.
========================= */

/* --- REMOVE UNUSED DROPDOWNS --- */
.nav-dropdown,
.dropdown-menu,
.mobile-dropdown,
.mobile-submenu {
  display: none !important;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 25, 0.97);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 2rem;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 4rem;
}

.mobile-menu a {
  display: block;
  padding: 1.2rem 0;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
}

/* --- HAMBURGER BUTTON --- */
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  touch-action: manipulation;
}

/* --- TOUCH IMPROVEMENTS --- */
a, button {
  touch-action: manipulation;
}
