/* Button Styles */

/* Base Button Class */
.btn {
    display: inline-block;
    padding: 0 19px;
    height: 37px;
    line-height: 37px; /* Match height for vertical centering */
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    border-radius: 0; /* No border radius as requested */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Default Button (fallback) */
.btn-default {
    background-color: black;
    color: #fff;
}

/* White Button (for hero section) */
.btn-white {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Secondary Button */
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

/* Success Button */
.btn-success {
    background-color: #28a745;
    color: #fff;
}

/* Custom Button Maker - via data attributes */
[data-button-bg][data-button-text] {
    background-color: var(--button-bg-color, black);
    color: var(--button-text-color, #fff);
}

/* Button sizes */
.btn-sm {
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 0 24px;
    height: 48px;
    line-height: 48px;
    font-size: 1.1rem;
}

/* Hover effects */
.btn:hover {
    background-color: #515666 !important;
    color: #fff !important;
    opacity: 1;
}

/* Focus styles for accessibility */
.btn:focus {
    outline: 2px solid rgba(0, 102, 204, 0.5);
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .btn {
        padding: 0 17px;
        height: 34px;
        line-height: 34px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .btn {
        padding: 0 15px;
        height: 32px;
        line-height: 32px;
        font-size: 0.7rem;
        min-width: 100px; /* Ensure a minimum width on smaller screens */
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 0 14px;
        height: 30px;
        line-height: 30px;
        font-size: 0.7rem;
        min-width: 90px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 0 12px;
        height: 28px;
        line-height: 28px;
        font-size: 0.7rem;
        min-width: 80px;
    }
} 