html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

:root {
    /* Primary Branding Color (Steel Blue) */
    --bs-primary: #3E6991;
    --bs-primary-rgb: 62, 105, 145;
    /* Secondary Branding Color (Muted Gold) */
    --bs-secondary: #C5B783;
    --bs-secondary-rgb: 197, 183, 131;
    /* Interactive UI Overrides */
    --bs-link-color: #3E6991;
    --bs-link-hover-color: #2b4b68;
}

/* Fix for standard component buttons matching your primary brand */
.btn-primary {
    --bs-btn-bg: #3E6991;
    --bs-btn-border-color: #3E6991;
    --bs-btn-hover-bg: #2b4b68;
    --bs-btn-hover-border-color: #2b4b68;
    --bs-btn-active-bg: #243e57;
    --bs-btn-active-border-color: #243e57;
}

/* Fix for components using your secondary brand */
.btn-secondary {
    --bs-btn-bg: #C5B783;
    --bs-btn-border-color: #C5B783;
    --bs-btn-hover-bg: #b3a36b;
    --bs-btn-hover-border-color: #b3a36b;
    --bs-btn-text-color: #000; /* Dark text for better contrast on gold */
}
/* Custom Navbar states to blend your two colors */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
    color: var(--bs-secondary) !important; /* Highlights active items in Gold on the Blue bar */
    font-weight: 600;
}

.navbar-dark .navbar-brand:hover {
    color: var(--bs-secondary) !important;
}