/* assets/page-home-mobile-nav.css */
/* Homepage mobile-only nav simplification + centered quick menu */

@media (max-width: 760px) {
  .nav-top-home {
    min-height: 54px;
    padding: 6px 0 4px;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    position: relative;
  }

  .nav-top-home .nav-main-group {
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-left: 0;
    flex: 0 0 auto;
    width: auto;
  }

  .nav-top-home .nav-links {
    display: none;
  }

  .nav-top-home .nav-logo {
    font-size: 1.78rem;
    line-height: 1;
    text-align: center;
  }

  .nav-top-home .nav-top-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .nav-top-home .lang-toggle {
    padding: 5px 9px;
    border-radius: 12px;
  }

  .nav-top-home .lang-toggle span {
    font-size: 0.82rem;
  }

  .nav-top-home .lang-toggle svg {
    width: 16px;
    height: 16px;
  }

  .hero .hero-content > h1 {
    display: none;
  }

  .hero-cta-home-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-cta-home-menu .cta-btn {
    width: 100%;
    min-height: 54px;
    justify-content: center;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    gap: 6px;
  }

  .hero-cta-home-menu .cta-btn svg {
    width: 16px;
    height: 16px;
  }

  .hero-cta-home-menu .cta-secondary {
    background: var(--surface);
    border-color: var(--border2);
  }

  .hero-cta-home-menu .cta-secondary:hover {
    background: var(--surface2);
  }
}

@media (max-width: 420px) {
  .nav-top-home {
    min-height: 50px;
    padding: 5px 0 3px;
  }

  .nav-top-home .nav-logo {
    font-size: 1.62rem;
  }

  .nav-top-home .lang-toggle {
    padding: 4px 8px;
    border-radius: 11px;
  }

  .nav-top-home .lang-toggle span {
    font-size: 0.78rem;
  }

  .nav-top-home .lang-toggle svg {
    width: 15px;
    height: 15px;
  }

  .hero-cta-home-menu {
    grid-template-columns: 1fr;
  }

  .hero-cta-home-menu .cta-btn {
    min-height: 52px;
    font-size: 0.9rem;
  }
}
