/* Logo Styles - basierend auf test.html */

.header-logo-link {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand__mark {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(31, 90, 166, 0.18), rgba(46, 139, 87, 0.18));
    display: grid;
    place-items: center;
    border: 1px solid rgba(31, 90, 166, 0.18);
    flex-shrink: 0;
}

.brand__title {
    font-family: var(--font-family-primary);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
}

.brand__tag {
    font-family: var(--font-family-primary);
    font-size: 13px;
    line-height: var(--line-height-base);
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.header-logo-image {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Mobile-First: Responsive Design - Regel 022: 4 Breakpoints */
/* Basis-Styles gelten für mobile (max-width: 576px) - keine Media Query erforderlich */

/* Tablet/iPad (min-width: 600px) */
@media (min-width: 600px) {
    .header-logo-image {
        max-height: 45px;
    }
    
    .brand__mark {
        width: 48px;
        height: 48px;
    }
    
    .brand__title {
        font-size: 26px;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .header-logo-image {
        max-height: 50px;
    }
    
    .brand__mark {
        width: 50px;
        height: 50px;
    }
    
    .brand__title {
        font-size: 28px;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .header-logo-image {
        max-height: 50px;
    }
    
    .brand__mark {
        width: 52px;
        height: 52px;
    }
    
    .brand__title {
        font-size: 30px;
    }
}

