/* Button Components */

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 12px;
}

/* Button variants - styled by theme */
.btn-primary {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    border: 2px solid currentColor;
}

.btn-ghost:hover {
    transform: translateY(-2px);
}

/* Responsive button width */
@media (max-width: 768px) {
    .btn-responsive {
        width: 100%;
        max-width: 300px;
    }
}
