/* Logo Container */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  z-index: 5;
}

.logo-image {
  height: 102px;
  width: auto;
  object-fit: contain;
}

/* Logo Text */
.logo-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-left: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Brand Name - versteckt aber für Tests verfügbar */
.logo-brand-name {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Logo Link */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  text-decoration: none;
  color: inherit;
}

/* Responsive Logo */
@media (max-width: 768px) {
  .logo-image {
    height: 80px;
  }
  
  .logo-text {
    font-size: var(--font-size-xl);
    margin-left: 0.75rem;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 60px;
  }
  
  .logo-text {
    font-size: var(--font-size-lg);
    margin-left: 0.5rem;
  }
}
