/* ================================
   Navbar
   ================================ */

.navbar {
  width: 100%;
  background: #000;
  color: #fff;
}

.navbar-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 107px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
}

.logo img {
  width: auto;
  height: clamp(38px, 4vw, 51px);
  max-width: 171px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  color: #e5e5e5;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* CTA Button */
.btn-outline {
  padding: 0.55rem 1.1rem;
  border: 1.5px solid #fff;
  border-radius: 35px;
  transition: all 0.2s ease;
    font-size: 13px;
  line-height: 25px;
  font-weight: 400;
      width: 147px;
      height: 45px;
    text-align: center;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: #fff;
  background: none;
  border: none;
}

.nav-cta {
  gap: 80px;
}

/* ================================
   Responsive
   ================================ */

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}