/* Base Styles - Mobile First */

.navba {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 6px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.lo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  background-color: transparent;
  font-weight: bold;
  font-family: 'Great Vibes', cursive;
}

.lo img {
  height: 50px;
  width: auto;
  border-radius: 0%;
  object-fit: cover;
}

.na-links {
  display: none; /* Hidden by default on small screens */
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.95);
  position: absolute;
  top: 60px;
  right: 10px;
  padding: 10px;
  border-radius: 0px;
   border: none;
}

.na-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  padding: 6px 8px;
  display: block;
}

.na-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: black;
}

.na-links a.active {
  background-color: rgba(255, 255, 255, 0.3);
  color: #e2b007; /* Highlight active link */
}

.call-butto {
  background-color: rgba(0, 0, 0, 0.8);
  color: black;
  font-weight: bold;
  font-size: 0.9rem;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.call-butto:hover {
  background-color: black;
  color: #e2b007;
}

/* Hamburger Icon (for mobile) */
.menu-toggle {
  display: block;
  background: none;
  border: none; /* Remove any border around the button */
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  outline: none; /* Remove the outline (size line) */
  transition: transform 0.3s ease; /* Smooth transition */
}

/* Desktop Styles */
@media (min-width: 768px) {
  .na-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 16px; /* Add spacing between links */
  }

  .menu-toggle {
    display: none;
  }
}

/* Mobile Menu Toggle: Active State */
.menu-toggle.active {
  transform: rotate(90deg); /* Rotate hamburger when active */
}

.na-links.show {
  display: flex !important;
}
