/* === HEADER STYLES === */
header {
  background-color: #003344;
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* === FLEX CONTAINER === */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* === LOGO STYLING === */
.logo a {
  font-size: 2rem;
  font-weight: bold;
  color: #fcd116;
  text-decoration: none;
  font-family: 'Cairo', sans-serif;
}

/* === MENU STYLING === */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  flex: 1;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #fcd116;
}

/* === AUTH STYLING === */
.auth {
  display: flex;
  justify-content: end;
  gap: 0.5rem;
}

.auth a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.auth a:hover {
  color: #fcd116;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .menu {
    justify-content: center;
  }

  .auth {
    justify-content: center;
  }

  .logo a {
    font-size: 1.8rem;
  }
}
