/* ============================
   Mobile Menu Overlay
============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #1a1a1a;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 999;
}

.mobile-menu.hidden {
  display: none;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-list li {
  margin: 20px 0;
}

.mobile-nav-list a {
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav-list a:hover {
  color: #00c6ff;
}

/* ============================
   Mobile Icons
============================= */
.mobile-icons {
  display: none;
  gap: 16px;
}

.mobile-icons button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-icons button:hover {
  color: #00c6ff;
}

/* ============================
   Responsive Layout
============================= */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-icons {
    display: flex;
  }

  .logo-text {
    text-align: left;
  }

  .header-container {
    justify-content: space-between;
  }
}
