/* FoxCave Logo Styles */
.foxcave-logo {
    display: inline-block;
    transition: all 0.3s ease;
}

.foxcave-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(30, 58, 138, 0.3));
}

/* Logo Varianten */
.foxcave-logo.large {
    height: 80px;
    width: auto;
}

.foxcave-logo.medium {
    height: 60px;
    width: auto;
}

.foxcave-logo.small {
    height: 40px;
    width: auto;
}

.foxcave-logo.tiny {
    height: 24px;
    width: auto;
}

/* Logo mit Animation */
.foxcave-logo.animated {
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Logo mit Glow-Effekt */
.foxcave-logo.glow {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.foxcave-logo.glow:hover {
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
}

/* Logo für dunkle Hintergründe */
.foxcave-logo.dark-bg {
    filter: brightness(0) invert(1);
}

/* Logo für helle Hintergründe */
.foxcave-logo.light-bg {
    filter: none;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-container .brand-text {
    font-weight: bold;
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
}

/* Responsive Logo */
@media (max-width: 768px) {
    .foxcave-logo.large {
        height: 60px;
    }
    
    .foxcave-logo.medium {
        height: 40px;
    }
    
    .foxcave-logo.small {
        height: 30px;
    }
    
    .logo-container .brand-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .foxcave-logo.large {
        height: 50px;
    }
    
    .foxcave-logo.medium {
        height: 35px;
    }
    
    .foxcave-logo.small {
        height: 25px;
    }
    
    .logo-container .brand-text {
        font-size: 1rem;
    }
}

/* Logo Loading Animation */
.foxcave-logo.loading {
    animation: logoSpin 2s linear infinite;
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Logo Success Animation */
.foxcave-logo.success {
    animation: logoSuccess 0.6s ease-in-out;
}

@keyframes logoSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Logo Error Animation */
.foxcave-logo.error {
    animation: logoError 0.6s ease-in-out;
}

@keyframes logoError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Logo mit Text */
.foxcave-logo-with-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.foxcave-logo-with-text:hover {
    text-decoration: none;
    color: inherit;
}

.foxcave-logo-with-text .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.foxcave-logo-with-text .logo-text .primary {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.foxcave-logo-with-text .logo-text .secondary {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.foxcave-logo-with-text .logo-text .subtitle {
    font-size: 0.7rem;
    color: #6b7280;
    margin-top: -2px;
}

/* Logo für Print */
@media print {
    .foxcave-logo {
        filter: none !important;
        animation: none !important;
    }
    
    .foxcave-logo-with-text .logo-text .primary,
    .foxcave-logo-with-text .logo-text .secondary {
        -webkit-text-fill-color: #000 !important;
        color: #000 !important;
    }
} 