/**
 * BotWriter Welcome Banner Styles
 * 
 * Styles for the welcome/onboarding banner shown to new users
 * 
 * @package BotWriter
 */

.botwriter-welcome-banner {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 25px 30px;
    margin: 20px 20px 20px 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    overflow: hidden;
}

.botwriter-welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.botwriter-welcome-dismiss {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.botwriter-welcome-dismiss:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

.botwriter-welcome-dismiss .dashicons {
    color: white;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.botwriter-welcome-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.botwriter-welcome-icon {
    flex-shrink: 0;
}

.botwriter-welcome-icon img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: white;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.botwriter-welcome-text {
    flex: 1;
    color: white;
}

.botwriter-welcome-text h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.botwriter-welcome-subtitle {
    margin: 0 0 18px 0;
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.5;
}

.botwriter-welcome-steps {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.botwriter-welcome-step {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.botwriter-welcome-step .step-number {
    background: white;
    color: #667eea;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.botwriter-welcome-step .step-text {
    font-weight: 500;
}

.botwriter-welcome-tip {
    background: rgba(255,255,255,0.15);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    border-left: 3px solid rgba(255,255,255,0.5);
}

.botwriter-welcome-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.botwriter-welcome-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.botwriter-welcome-btn.primary {
    background: white;
    color: #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.botwriter-welcome-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.botwriter-welcome-btn.primary .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.botwriter-welcome-btn.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.botwriter-welcome-btn.secondary:hover {
    background: rgba(255,255,255,0.3);
}

@media (max-width: 782px) {
    .botwriter-welcome-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .botwriter-welcome-steps {
        justify-content: center;
    }
    
    .botwriter-welcome-actions {
        justify-content: center;
    }
}
