/* Logo Styles - CSS-Logo "LinkedIn Helper Gender Tool" */

.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;
    position: relative;
}

/* CSS-Logo Text */
.header-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.header-logo-link:hover .header-logo-text {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent-neon-1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

/* Shimmer-Effekt für Logo */
.header-logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.header-logo-link:hover .header-logo-text::before {
    left: 100%;
}

/* Mobile-First: Basis-Styles gelten für mobile Geräte */
.header-logo-image {
    display: none; /* CSS-Logo wird verwendet, kein Bild */
}

/* 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-text {
        font-size: 1.375rem;
    }
}

/* Kleiner Desktop/13-Zoll (min-width: 1024px) */
@media (min-width: 1024px) {
    .header-logo-text {
        font-size: 1.5rem;
    }
}

/* Großer Desktop/Widescreen (min-width: 1440px) */
@media (min-width: 1440px) {
    .header-logo-text {
        font-size: 1.625rem;
    }
}
