/* Header Styles */
header {
  background-color: transparent; /* Transparent background */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000; /* Ensure it's above other content */
  display: flex;
  align-items: center; /* Vertically center content */
}

header .container { /* Styles for the container specifically inside the header */
    width: 100%; /* Make this container span the full viewport width */
    max-width: none; /* Remove any max-width constraint from the general .container class */
    margin: 0; /* Remove auto horizontal margins to prevent centering of this container */
    padding: 0 20px; /* Keep the left/right padding for content alignment */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* This will now place the .logo at the far left (after padding) */
}

header .logo {
  font-size: 1.6em; /* Adjust as needed */
  font-weight: 600; /* Semi-bold */
  color: #c2c2c2; /* Medium Gray */
  text-decoration: none;
  transition: color 0.3s ease;
}

header .logo:hover {
  color: var(--text-dark-secondary); /* Darker Gray (#555555) */
}
