@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700;800;900&display=swap");

/* Site-specific overrides and extensions to the design system */

/* Ensure footer stays at bottom */
html {
    height: 100%;
}

body {
    min-height: 100%;
}

/* Ensure body content padding doesn't conflict with design system */
.body-content {
    /* Removed margin-top and padding as design system handles this */
}

/* Add top padding to main content to prevent navbar overlap on small screens */
main {
    padding-top: 100px;
}

 

/* Allow description lists to wrap properly */
.dl-horizontal dt {
    white-space: normal;
}

/* Form inputs use design system sizing - remove max-width restriction */
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea {
    /* Design system handles sizing - removed max-width */
}

/* Additional site-specific utilities can be added here */

/* Form validation states */
.form-control.is-invalid {
    border-color: #DC2626 !important;
    background-image: none !important;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.15) !important;
}

.form-control.is-valid {
    border-color: #22C55E !important;
    background-image: none !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15) !important;
}

.form-control.is-invalid:focus {
    border-color: #DC2626 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.15) !important;
}

.form-control.is-valid:focus {
    border-color: #22C55E !important;
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.15) !important;
}

/* Shared text logo used in header, mobile menu, and footer */
.mm-brand-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 168px;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    white-space: nowrap;
    text-rendering: geometricPrecision;
}

.mm-brand-logo__row {
    width: 100%;
    display: flex;
}

.mm-brand-logo__row--top {
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4px;
}

.mm-brand-logo__model,
.mm-brand-logo__pos {
    text-transform: uppercase;
}

.mm-brand-logo__model {
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.mm-brand-logo__pos {
    font-size: 2.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0;
}

.mm-brand-logo__powered {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
}

.mm-brand-logo--dark .mm-brand-logo__model,
.mm-brand-logo--dark .mm-brand-logo__pos,
.mm-brand-logo--dark .mm-brand-logo__powered {
    color: #0f172a;
}

.mm-brand-logo--light .mm-brand-logo__model,
.mm-brand-logo--light .mm-brand-logo__pos,
.mm-brand-logo--light .mm-brand-logo__powered {
    color: #ffffff;
}
 


