/* menu.css - Navigation styles specific to HeartSignals header */

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  background: linear-gradient(90deg, #1c1a2e, #251c3b);
  border-bottom: 1px solid #2a213c;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: bold;
  color: #ff5a9e;
  letter-spacing: 1px;
  text-decoration: none;
}

.header-nav {
  display: flex;
  gap: 30px;
}

.header-nav a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #e0d6f5;
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #ff5a9e;
  transition: width 0.3s ease;
}

.header-nav a:hover {
  color: #ffffff;
}

.header-nav a:hover::after {
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .header-nav {
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-top: 10px;
  }

  .header-nav a {
    font-size: 15px;
    padding: 5px 0;
  }
}
