/* === HEADER / NAVBAR === */
.header {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--pink-primary);
  box-shadow: 0 2px 12px rgba(255, 45, 120, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 45, 120, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(255, 45, 120, 0.35);
}

.header__logo {
  height: 58px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .header__logo {
    height: 48px;
  }
}

.header__menu-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  color: #fff;
}

.header__menu-btn svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.header__menu-btn:hover span {
  opacity: 0.8;
}
