/* Nice2Meet Custom Styles - Override Bootstrap defaults */

/* Typography - Tone down oversized headings */
h1 {
    font-size: 1.8rem !important;
    /* Instead of Bootstrap's 2.5rem */
    font-weight: 600;
}

h2 {
    font-size: 1.5rem !important;
    /* Instead of Bootstrap's 2rem */
    font-weight: 600;
}

h3 {
    font-size: 1.3rem !important;
    /* Instead of Bootstrap's 1.75rem */
    font-weight: 600;
}

h4 {
    font-size: 1.1rem !important;
    /* Instead of Bootstrap's 1.5rem */
    font-weight: 600;
}

h5 {
    font-size: 1rem !important;
    /* Instead of Bootstrap's 1.25rem */
    font-weight: 600;
}

/* Button sizing - Make them more reasonable */
.btn {
    font-size: 0.9rem !important;
    /* Smaller than Bootstrap's 1rem */
    padding: 0.5rem 1rem !important;
    /* Tighter padding */
    border-radius: 6px;
}

.btn-lg {
    font-size: 1rem !important;
    /* Instead of Bootstrap's 1.25rem */
    padding: 0.6rem 1.2rem !important;
}

.btn-sm {
    font-size: 0.75rem !important;
    /* Instead of Bootstrap's 0.875rem */
    padding: 0.4rem 0.8rem !important;
}

/* Primary button improvements */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

/* Form controls - slightly smaller */
.form-control {
    font-size: 0.9rem !important;
    padding: 0.5rem 0.75rem !important;
}

/* Better visual hierarchy */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 600 !important;
}

/* Page containers - better spacing */
.container {
    max-width: 1140px;
}

/* Cards - subtle improvements */
.card {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}