/* NAVBAR BASE */
.navbar {
  width: 100%;
  background: white;
  border-bottom: 1px solid #f5c9d9;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c05778;
  text-decoration: none;
}

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  display: none;
  cursor: pointer;
  color: #c05778;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: #c05778;
  font-weight: 500;
}

/* ----- MOBILE ----- */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: white;
    border-top: 1px solid #f3b4c9;
    padding: 15px 20px;
  }

  .nav-menu.active {
    display: flex;
  }
}

/* Color tokens to keep palette consistent */
    :root{
      --pink-50: #fff5f7;
      --pink-100:#ffe4ec;
      --pink-500:#ec4899;
      --pink-600:#db2777;
      --pink-700:#be185d;
      --text-gray:#374151;
    }

    body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:var(--text-gray); background: #ffffff; }

    /* Hero overlay fade */
    .fade-in { transition: opacity .9s ease, transform .9s ease; }
