/* header.css - Shared layout */
header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 24px;
  }
  
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 28px;
  }
  
  /* PUBLIC HEADER MENU */
.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.03em;
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions .button {
  text-transform: uppercase;
  font-size: 0.75rem; /* match .subtitle-text scale */
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.right-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

