/**
 * View All Buttons Styling
 * Modern, animated buttons for section footers
 */

.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.6s ease-out forwards;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color, #4a89dc);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(74, 137, 220, 0.2);
    border: none;
    cursor: pointer;
    min-width: 180px;
}

.view-all-btn:hover, 
.view-all-btn:focus {
    background-color: var(--primary-color-dark, #3a79cc);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 137, 220, 0.3);
    color: #fff;
    text-decoration: none;
}

.view-all-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(74, 137, 220, 0.25);
}

.view-all-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 160px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
