/* 
 * Header-Komponente für Toolerie
 */

.header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: white; /* Überschreibt die Standardfarbe für h1 */
  text-align: left; /* Überschreibt die zentrierte Ausrichtung für h1 */
}

.logo-icon {
  margin-right: 10px;
  font-size: 28px;
}

.header-controls {
  display: flex;
  gap: 15px;
}

.theme-toggle {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.theme-toggle:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.theme-toggle i {
  font-size: 16px;
}

.language-switch {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s;
}

.language-switch:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design für den Header */
@media (max-width: 768px) {
  .header-controls {
    flex-direction: column;
    gap: 10px;
  }
}
