/* header.css - Header Styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, white 0%, #faf8f2ff 100%);
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.branding img {
  height: 50px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6B4F31;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: #6B4F31;
  font-weight: bold;
}
