/* Base Button Styles */
.btn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Open Sans', arial;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 16px;
}

/* Button Types */
.btn-primary {
    background-color: white;
    color: #eb4600;
    padding: 12px 25px;
    border: 1px solid #eb4600;
    border-radius: 50px;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: #eb4600;
    color: white;
}

.btn-secondary {
    background-color: white;
    color: #120047;
    padding: 12px 25px;
    border: 1px solid #120047;
    border-radius: 50px;
}

.btn-secondary:hover {
    background-color: #120047;
    color: white;
}

.btn-filled {
    background-color: #eb4600;
    color: white;
    padding: 12px 25px;
    border: 1px solid #eb4600;
    border-radius: 50px;
}

.btn-filled:hover {
    background-color: #d94100;
}

/* Button Sizes */
.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-medium {
    padding: 12px 25px;
    font-size: 15px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

/* Button States */
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Full Width Button */
.btn-full {
    width: 100%;
    display: block;
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 10px;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .btn {
        padding: 10px 20px;
    }
    
    .btn-large {
        padding: 12px 25px;
    }
}