/**
 * Button Components
 * Reusable button styles
 */

/* Primary Button */
.btn-primary-custom {
    background: var(--theme-gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-round);
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    display: inline-block;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.4);
    color: white;
}

/* Outline Button */
.btn-outline-custom {
    border: 2px solid var(--theme-primary);
    color: var(--theme-primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-round);
    font-weight: var(--font-weight-semibold);
    background: transparent;
    transition: all var(--transition-base);
    display: inline-block;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--theme-primary);
    color: white;
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Button Block */
.btn-block {
    display: block;
    width: 100%;
}
