/* ================= NAVBAR BASE ================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 40px;
  font-size: 13px;
  letter-spacing: 2px;
}

.nav-links a {
  color: #ffffff;
  opacity: 0.75;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
  color: #e14b4b;
}

/* CTA button */
.cta.desktop-cta {
  padding: 14px 28px;
  background: #ffffff;
  text-decoration: none;
  color: #000;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta.desktop-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}



.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9000;
}


.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #0b0b0b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.4s ease;
  z-index: 9999;
}

/* Active states */
.mobile-menu.active {
  right: 0;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Close button */
.menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile links */
.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: #e14b4b;
}

/* Mobile CTA */
.mobile-cta {
  margin-top: 20px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #e14b4b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .logo img{
    height: 50px;
  }

  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar {
    padding: 20px 24px;
  }
}
