.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 120px;
}

/* DESKTOP MENU */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.cta {
  background: #A64AC9;
  color: white !important;
  padding: 8px 16px;
  border-radius: 8px;
}

/* HAMBURGER BUTTON */
.menu-btn {
  display: none;
  font-size: 32px;
  cursor: pointer;
  user-select: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* Show hamburger */
  .menu-btn {
    display: block;
    position: relative;
    z-index: 2000;
  }

  /* Hide desktop nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background: white;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 20px 0;
    gap: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 1500;
  }

  /* When menu opens */
  .nav-links.active {
    display: flex;
  }
}
