/* ──────────────────────────────────────────────────────────────
   Full-page mobile menu overlay for Elementor nav-menu
   ────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .elementor-nav-menu--dropdown {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    background: rgba(0, 0, 0, 0.92) !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    transform: translateY(-100%) !important;
    transition: transform 0.35s ease, opacity 0.35s ease !important;
    opacity: 0 !important;
    margin-top: 0 !important;
  }

  .elementor-nav-menu--toggle .elementor-menu-toggle.elementor-active + .elementor-nav-menu__container {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }

  .elementor-nav-menu--dropdown .elementor-nav-menu {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
  }

  .elementor-nav-menu--dropdown .elementor-nav-menu li {
    width: auto !important;
  }

  .elementor-nav-menu--dropdown a {
    color: #ffffff !important;
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    justify-content: center !important;
    background: transparent !important;
  }

  .elementor-nav-menu--dropdown a:hover,
  .elementor-nav-menu--dropdown a:focus,
  .elementor-nav-menu--dropdown a.current {
    color: #FFC100 !important;
    background: transparent !important;
  }

  /* Make the hamburger button more visible on the overlay */
  .elementor-menu-toggle {
    position: relative !important;
    z-index: 10000 !important;
  }
}
