/* Header styles */
.header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border-light);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 10px;
}

.logo img {
  max-height: 61px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  color: var(--text-color);
}

.slogan {
  font-size: var(--font-size-md);
  color: var(--text-light);
}

.header-nav {
  margin-top: var(--space-1);
}

.menu {
  display: flex;
  gap: var(--space-2);
}

.menu-item {
  color: var(--text-color);
  font-weight: 500;
  padding: var(--space-1);
  border-radius: var(--radius-sm);
  transition: all var(--transition-medium);
}

.menu-item:hover {
  color: var(--primary-color);
  background-color: var(--secondary-light);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .header-nav {
    width: 100%;
    margin-top: var(--space-2);
  }
  
  .menu {
    justify-content: center;
    width: 100%;
  }
}